Search results

  1. Sleepybear

    Need help setting up a NukkitX server? Here is a tutorial video!

    Downloading someone else's setup and code onto your server to run as root? Terrible idea from a security perspective.
  2. Sleepybear

    Chat Bug

    That sounds like a client side bug. Have you checked the minecraft bug tracker?
  3. Sleepybear

    Adding .mcpack Resources and Behaviours to the server

    Behavior packs are not supported, as behaviors should be modified using plugins. Resource packs are supported, and properly formatted packs can be placed in the resource_packs folder with .zip or .mcpack.
  4. Sleepybear

    Server does not appear to be listening

    This bug was fixed in my last PR
  5. Sleepybear

    Server does not appear to be listening

    Check your IPTables to make sure you opened UDP Port 19132
  6. Sleepybear

    Break block but block goes back!

    Check your permissions and plugins. Also if you have spawn-protection set in your server.properties file it will stop block breaking/placement for that radius from the spawn point.
  7. Sleepybear

    WHAT

    This is also not the support for PowerNukkit.
  8. Sleepybear

    Menu

    Use the CustomForm class in the API from your plugin.
  9. Sleepybear

    How can I compile my first plugin?

    Anvil was disabled due to many bugs/exploits available. You can compile your plugin using your IDEs compiler or using Maven.
  10. Sleepybear

    What ip address for nukkit server

    You can forward both, but UDP is what is required. Doesn't matter how many people are joining, you just need to port forward the port your server is running on.
  11. Sleepybear

    auto restart upon crash?

    Probably want to figure out why it's crashing in the first place, but you can create a startup script that basically goes: echo Starting Nukkit Server while true java -jar nukkit-1.0-SNAPSHOT.jar end Depending on the server OS, the script can be bash, sh, or windows batch. You can also create...
  12. Sleepybear

    What ip address for nukkit server

    Leave it as 0.0.0.0 unless there is a specific reason you can't (which there shouldn't be unless you're running a hosting service for multiple clients), and the default port is 19132, but you can set that in server.properties as well. For your port forward, you would want to forward to your...
  13. Sleepybear

    What exactly is NukkitX?

    with the current version of Nukkit (1.0) all blocks after the Aquatic update are not supported due to a level format limitation. The generator is not all that great either. Mob Spawning/AI is also not included, but you can use MobPlugin to restore that functionality. Lastly, Redstone is not...
  14. Sleepybear

    Nukkit api 1.0.10

    The 1.0.10 API is the Redstone branch.
  15. Sleepybear

    How to put resource_packs on Nukkit server

    You will want to get MobPlugin to enable Mob AIs
  16. Sleepybear

    World spawn

    It is probable that LobbyNK or EssentialsNK or Wormhole is overriding the spawn behavior.
  17. Sleepybear

    Nukkit server Bugs

    Replace the server .jar file
  18. Sleepybear

    Nukkit /time Causes Crash And Unable To Join

    I am unable to reproduce this. I am able to run /time 5000 and then /time stop and server continues just fine. I am able to quit and rejoin.
  19. Sleepybear

    Nukkit /time Causes Crash And Unable To Join

    Are you getting any console errors at the time of crash?
Top