Scalable
ModServer side mod that prevents the game going below 20 TPS, damned be the consequences
Type
Mod
Modrinth Downloads
654
Modrinth ID
w42ctCcE
Last Updated
Jun 19, 2026
Description

A lightweight server-side optimization mod for Fabric that keeps your server running smoothly under load by intelligently budgeting work.
Scalable naturally "scales" the server performance. It works great for large servers or a low budget.
The result is a server that stays responsive even when it's struggling.
Unlike similar mods, vanilla mechanics stay intact and the mod wont be noticed by even the most observant players under normal conditions.
Installation
Requires the latest version of Fabric Loader and Fabric API. Drop the .jar into your mods folder. No client installation required.
Please let me know if you have issues on github by making an issue: https://github.com/raderth/Scalable/issues
What does Scalable actually do?
At the start of every server tick, Scalable starts a timer. Chunk ticking and entity ticking proceed normally. But if the budget runs out mid tick, remaining work is deferred to the next tick rather than causing the entire tick to overrun.
Scalable sets a time limit and stops when it's hit. The unprocessed remainder is picked back up next tick. Under normal load, everything is ticked every tick as usual. Under heavy load, less important things (far away chunks, distant entities) are delayed, but the things closest to players stay responsive.
Chunk ticking
Chunks are sorted and processed in this order each tick:
- Deferred chunks from the previous tick (carried over work gets priority)
- Priority chunks those loaded by portals, ender pearls.
- Player-assigned chunks remaining chunks are distributed across players using a round-robin scheduler, with each player's queue sorted by proximity to their projected future position (based on their current velocity).
- Unclaimed chunks any ticking chunks not assigned to a specific player
If the budget runs out before all chunks are processed, the leftovers are deferred.
Entity ticking
Entities are also budget-aware and player-assigned:
- Players are always ticked first (priority queue)
- Other entities are assigned to their nearest player and ticked in round-robin order
- If the budget runs out, remaining entities are simply skipped for that tick
This means that even under heavy load, players and their immediate surroundings are always prioritized. You can still open inventories, interact with the world, and move around smoothly. Similar to how mods like TT20 keep the server interactive even when it's overloaded. The advantage here is that the game is actually still running in a broader sense.
Configuration
Config file is at config/scalable.json and is created automatically on first run.
{ "budget_ms": 40, "max_deferred": 2048 } Field Default Description budget_ms 40 Milliseconds per tick available for chunk and entity ticking. Set to -1 for automatic mode (also 40ms). max_deferred 2048 Maximum number of chunks that can be held in the deferred queue at once. Excess entries are dropped (oldest first).In-game commands
All commands require operator.
Command Description /scalable budget auto Switch to automatic budget mode (40ms) /scalable budget <ms> Set a fixed budget in milliseconds (1–50) /scalable budget query Show current budget mode, MSPT, and TPS /scalable deferred <max> Set the max deferred chunk queue size (0–65536)Changes made via commands are saved to scalable.json immediately.
Limitations
Note: Scalable smooths out lag spikes and buys your server breathing room. It won't eliminate lag caused by something consistently eating your entire tick budget (e.g. extreme entity counts), but it will make things significantly more bearable while you address the root cause.
- Entities are not deferred between ticks if the budget runs out mid-entity-loop, those entities simply don't tick that frame. Deferred entity carry-over is not yet implemented.
- Consistent heavy lag from entities or other non-chunk sources may still cause TPS drops until those sources are addressed.
Compatibility
Mod Loaders
Game Versions
Screenshots
Similar Mods
Warp-O-Mania
Adds more warp events for TC6!
Trotting wagons x Recruits Compat
Makes horsemen from villager recruits able to drive wagons from trotting wagons.
Accessory API
Provides an Accessory API for b1.7.3 in the Babric toolchain
Drizzleproof
Allows certain blocks to drop items in more predictable trajectories. Say goodbye to scattered scaffolding!
Mod Menu (BTA Port)
Mod Menu port for Better than Adventure! mod for Beta 1.7.3. Adds a mod menu to view the list of mods you have installed...
Raw Gold Beacon Base [PurpurPack]
Allows raw gold blocks to be used as a beacon base. Also allows raw gold to be used as a beacon payment item