Description
ServerWarashi
ServerWarashi is a server-side utility mod for managing chunk loader scheduling.
It allows server ops to control how many chunk loaders are processed per cycle, how often the scheduler runs,
pause or resume all chunk loaders, and dump chunk loader working information.
Commands Overview
/warashi ticket dump
Dump all current tickets and their loaded chunk counts.
| Usage | Description |
|---|---|
/warashi ticket dump |
Dump all chunk loaders |
/warashi ticket dump currentWorking |
Dump currently active chunk loaders |
Example output:

/warashi enabled
Enable or disable the mod’s chunk loader scheduling logic. This logic is default off
| Usage | Description | Example |
|---|---|---|
/warashi enabled |
Show current status | → enabled = true |
/warashi enabled <bool> |
Set enabled state | /warashi enabled false |
/warashi ticket pauseAll
Pause or resume all chunk loaders.
| Usage | Description | Example |
|---|---|---|
/warashi ticket pauseAll |
Show current state | → pauseAll = false |
/warashi ticket pauseAll <bool> |
Set pause state | /warashi ticket pauseAll true |
/warashi ticket groupSize
Set how many chunk loaders (tickets) are processed each scheduling cycle.
Larger values mean more chunks loaded per cycle, which can increase MSPT load.
| Usage | Description | Range | Example |
|---|---|---|---|
/warashi ticket groupSize |
Show current size | — | /warashi ticket groupSize |
/warashi ticket groupSize <int> |
Set new group size | 16–2048 |
/warashi ticket groupSize 256 |
/warashi ticket runEvery
Set how often ticket groups rotate (in ticks).
20 ticks = 1 second, e.g. 200 = every 10 seconds.
| Usage | Description | Range | Example |
|---|---|---|---|
/warashi ticket runEvery |
Show current value | — | /warashi ticket runEvery |
/warashi ticket runEvery <int> |
Set new interval | 1–1200 |
/warashi ticket runEvery 200 |
Behavior Summary
- Only one ticket group is active at a time, cycling periodically.
- All groups get equal chances to load chunks.
- Increasing
groupSizeincreases how many chunks load per cycle (impacting MSPT). runEverycontrols how frequently groups switch.- No extra overhead when disabled
Example Usage
/warashi ticket dump
/warashi enabled true
/warashi ticket pauseAll true
/warashi ticket groupSize 128
/warashi ticket runEvery 100

