/
A Minecraft Spigot plugin that creates fake lag effects on players for trolling purposes. Uses packet manipulation to create various disruptive effects without actually affecting server performance.
plugins folder/lags <type> <player> - Apply/remove lag effects on a playerALL_CANCEL - Cancels packets from the client (with configurable chance percentage)ENTITIES_NO_MOVE - Freezes all entities for the clientSPAM_SOUNDS - Spams random sounds to the playerFANTOM_BLOCKS - Spawns barrier blocks next to the playerRANDOM_TIME - Randomizes the world timeSWAP_ITEMS - Swaps items in the player's handenable.lag - Allows using the lags command (configurable in config.yml)The plugin creates a config.yml file with the following options:
messages:
enable_lag: "У игрока %player% были включены лаги %type%."
disable_lag: "У игрока %player% были выключены лаги %type%."
not_found_type: "Переданный тип лагов не найден."
not_found_player: "Игрок не найден."
no_permissions: "Недостаточно прав."
packets_cancel_chance: 65 # Chance percentage for "ALL_CANCEL" type lags
permissions_to_enable_lag: enable.lag
To apply a lag effect:
/lags ALL_CANCEL PlayerName
To remove a lag effect (same command):
/lags ALL_CANCEL PlayerName
The command acts as a toggle - run it once to enable the effect, run it again to disable it.
This project is licensed under the MIT License.

Minecraft Spigot plugin that creates fake lag effects on players for trolling purposes. Uses packet manipulation to create various disruptive effects without actually affecting server performance.