Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 574 Bytes

minecraft.md

File metadata and controls

21 lines (17 loc) · 574 Bytes

Minecraft

Enable the HTTP API in ComputerCraft:

Note: The server will overwrite this setting when it stops, so make sure to stop the server, then change the setting, then start it again, otherwise your setting will be overwritten.

world/serverconfig/computercraft-server.toml

[http]
    enabled = true

To make it the default in all worlds, set it in defaultconfig/computercraft-server.toml.

Increase chunkload max

world/serverconfig/ftbchunks-world.snbt

max_claimed_chunks: 5000
max_force_loaded_chunks: 1000

Or whatever values you want.