Advertisement
Jabber666

Clearlag considerate wipe list. (MC 1.16.5)

Jun 19th, 2021
1,682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 34.52 KB | None | 0 0
  1. #--------------------------------------------------------------------#
  2. #                   ClearLag Configuration File                      #
  3. #--------------------------------------------------------------------#
  4. # Configure to your liking, reload the config by tying: /lagg reload #
  5. #                                -                                   #
  6. #  Here is a helpful tutorial on this configuration setup! (Updated) #
  7. # http://dev.bukkit.org/bukkit-plugins/clearlagg/pages/config-setup/ #
  8. #--------------------------------------------------------------------#
  9. #          All possible mob names: https://goo.gl/cch8YK             #
  10. #--------------------------------------------------------------------#
  11. config-version: 20
  12.  
  13. # -- 'use-internal-tps' Should clearlag just use the calculated internal TPS? (Improves accuracy)
  14. # -- 'language' Clearlag supports multiple languages (https://github.com/bob7l/Clearlag-Languages) translated by the community
  15. # -- 'use-internal-tps' Should Clearlag use Spigot's /tps? (Updated by minutes, much slower, but more accurate!)
  16. settings:
  17.   language: English
  18.   auto-update: false
  19.   enable-api: true
  20.   use-internal-tps: true
  21.  
  22. #Controls ALL of Clearlag's broadcasting. Disabling this will disable ALL broadcasting on Clearlag
  23. # -- 'enabled' Should clearlag broadcast messages at all? (Example: Auto-removal, warnings, ect)
  24. # -- 'async' Should messages be broadcasted on another thread
  25. # -- 'use-permission-for-broadcasts' Should clearlag use permissions?
  26. # -- 'permission' What is the permission? (By default, it's bukkit's default)
  27. global-broadcasts:
  28.   enabled: true
  29.   async: false
  30.   use-permission-for-broadcasts: false
  31.   permission: bukkit.broadcast
  32.  
  33. #Monitors your server's main thread for locking/freezing. Helps figure out what's causing lag-spikes
  34. # NOTE: This will outprint mostly just stacktraces. It's up to YOU to interpret the stacktrace
  35. # NOTE: (!Important!) Clearlag will print EVERYTHING to your Spigot/Bukkit server logs!
  36. # NOTE: A large 'Garbage collection time' generally means the spike was caused by the Garbage collector (Memory issue basically..)
  37. # -- 'enabled' Should this be enabled (Prints data to your logs, not ingame chat)
  38. # -- 'min-elapsed-time' How long (IN MILLISECONDS) of a server-tick constitutes a freeze/lock? I don't recommend going under ~80
  39. # -- 'check-interval' How often (IN MILLISECONDS) should the server be checked? Lower the number, more accurate the timings
  40. # -- 'follow-stack' Should Clearlag keep printing the stacktrace every time it changes (Can be very spammy)?
  41. # Help-> https://dev.bukkit.org/projects/clearlagg/pages/finding-the-cause-of-lag-spikes
  42. lag-spike-helper:
  43.   enabled: false
  44.   min-elapsed-time: 500
  45.   check-interval: 100
  46.   follow-stack: true
  47.  
  48. #Limits the amount of item transfers for all the hoppers in a single chunk
  49. # -- 'transfer-limit' How many transfers per check interval until the hopper should be disabled
  50. # -- 'check-interval' In seconds, on what interval should the transfer limit be reset
  51. hopper-limiter:
  52.   enabled: false
  53.   transfer-limit: 5
  54.   check-interval: 1
  55.  
  56. #Meters your ram usage. If it goes above 'limit', run 'commands:'
  57. # NOTE: It's perfectly normal for your server to be using a lot of memory. The JVM's garbage collector will automatically free memory.
  58. # NOTE: Only use this if you have very little memory that can't support the server
  59. # -- 'ram-limit' is in MB, do not set it exactly to your max allocated ram amount
  60. # -- 'interval' is how often clearlag will check your ram usage
  61. # -- 'commands' lists the commands that will be ran upon hitting your ram-limit
  62. ram-meter:
  63.   enabled: false
  64.   interval: 20
  65.   ram-limit: 5000
  66.   commands:
  67.    - 'lagg killmobs'
  68.     - 'lagg clear'
  69.  
  70. #Configure what the '/lagg halt' command does
  71. # -- 'remove-entities' remove entities such as items, primed-tnt, and mobs
  72. # -- 'disable-natural-entity-spawning' disables the server's natural world spawning
  73. # -- 'halted' this section defines which actions should be halted during '/lagg halt'
  74. halt-command:
  75.   remove-entities: true
  76.   disable-natural-entity-spawning: true
  77.   halted:
  78.     fire: true
  79.     fire-burn: true
  80.     explosion: true
  81.     decay: true
  82.     block-fade: true
  83.     block-form: true
  84.     block-spread: true
  85.     block-natural-change: true
  86.  
  87. #This limits how fast a user can move by walking or flying in a single tick (20 ticks a second)
  88. #I HIGHLY recommend you use this on servers with increased player-speed/fly to prevent chunk overload
  89. #You may also use Spigot's internal speed limiters to achieve the same goal if present on your version (better performance)
  90. # -- 'move-max-speed' Max speed on foot
  91. # -- 'fly-max-speed'  Max speed while flying
  92. player-speed-limiter:
  93.   enabled: false
  94.   move-max-speed: 3.0
  95.   fly-max-speed: 3.0
  96.  
  97. #Set the age of specific items when they're first spawned so they naturally despawn faster, or slower then others
  98. #Recommended for servers with a lot of item-entities consisting mostly of useless items (Such as stone)
  99. #Material list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  100. # -- 'items' Lists the material names of the entities with their spawn-age (In seconds)
  101. item-spawn-age-setter:
  102.   enabled: false
  103.   items:
  104.     stone: 240
  105.     grass: 240
  106.     cobblestone: 240
  107.     log: 240
  108.     stone_axe: 240
  109.     stone_pickaxe: 240
  110.     stone_sword: 240
  111.     wooden_axe: 240
  112.     wooden_pickaxe: 240
  113.     wooden_sword: 240
  114.     rotten_flesh: 240
  115.     gravel: 240
  116.     dirt: 240
  117.     leather: 200
  118.     sand: 240
  119.     bone: 240
  120.     beef: 240
  121.     chicken: 160
  122.     rabbit: 240
  123.     salmon: 240
  124.     cactus: 210
  125.     wool: 180
  126.     arrow: 160
  127.     PORKCHOP: 240
  128.     potato: 240
  129.     RED_TULIP: 240
  130.     OAK_SAPLING: 10
  131.     BIRCH_SAPLING: 10
  132.     SPRUCE_SAPLING: 10
  133.     DARK_OAK_SAPLING: 10
  134.     JUNGLE_SAPLING: 10
  135.     ACACIA_SAPLING: 10
  136.     STICK: 10
  137.  
  138. #Should mobs be nerfed to prevent over-breeding to reduce CPU usage (And possibly raise TPS)
  139. #When mobs are stuck too close, collisions are extremely intensive putting a pretty mean load on the server
  140. # -- 'max-mobs' means how many bably/adult animals are allowed within the 'check-radius'
  141. # -- 'check-radius' is the radius of what clearlag will check for 'max-mobs'
  142. mob-breeding-limiter:
  143.   enabled: false
  144.   max-mobs: 6
  145.   check-radius: 15
  146.  
  147. #Should clearlag purge logs under /logs when the server starts?
  148. # -- 'days-old' means how many days old can the log be to be deleted
  149. log-purger:
  150.   enabled: false
  151.   days-old: 3
  152.  
  153. #What type of entities SHOULD NOT be removed while doing /lagg area?
  154. area-filter:
  155.  - Itemframe
  156.   - Minecart
  157.   - Bat
  158.   - Bee
  159.   - Cat
  160.   - Chicken
  161.   - Cod
  162.   - Cow
  163.   - Dolphin
  164.   - Donkey
  165.   - Fox
  166.   - Horse
  167.   - Llama
  168.   - Mule
  169.   - Mushroom_Cow
  170.   - Ocelot
  171.   - Panda
  172.   - Parrot
  173.   - Pig
  174.   - Polar_Bear
  175.   - Pufferfish
  176.   - Rabbit
  177.   - Salmon
  178.   - Sheep
  179.   - Skeleton_Horse
  180.   - Snowman
  181.   - Squid
  182.   - Trader_Llama
  183.   - Tropical_Fish
  184.   - Turtle
  185.   - Villager
  186.   - Wandering_Trader
  187.   - Wolf
  188.   - Zombie_Horse
  189.   - ARMOR_STAND
  190.   - chest_minecart
  191.  
  192. #Should clearlag reset the config, or attempt to update your config on updates
  193. # -- 'force-update' is whether or not clearlag will reset your config with a newer version
  194. # -- settings this to false will make clearlag update your config rather then resetting
  195. config-updater:
  196.   force-update: false
  197.  
  198. #This limits the mob egg spawners so players cannot "overload" the server with them
  199. # -- 'check-radius' is the radius clearlag will check for nearby entities
  200. # -- 'max-mobs' is how many entities may be in the radius before the spawning is blocked
  201. mobegg-limiter:
  202.   enabled: false
  203.   check-radius: 8
  204.   max-mobs: 5
  205.  
  206. #Disable new chunk generation, or just put a cap on how many can load at once.
  207. #May cause many bugs with Spigot 1.8+, not recommended!
  208. # -- 'create-new-chunks' disables or enables chunk creation. false would disallow new chunks
  209. # -- !UNSTABLE ON SPIGOT BUILDS!
  210. chunk-limiter:
  211.   enabled: false
  212.   limit: 6000
  213.   create-new-chunks: true
  214.  
  215. #This modifies the view range of entities
  216. # -- Lower it is, the better your entity tick will be and the more CPU cycles you'll save
  217. # -- If it's too high, expect bugs / lots of lag
  218. mob-range:
  219.   enabled: false
  220.   zombie: 30
  221.   skeleton: 30
  222.   creeper: 20
  223.  
  224. #How long should items/Mobs be left on the ground
  225. # -- live-time's go by ticks (20 ticks a second)
  226. live-time:
  227.   enabled: false
  228.   interval: 10
  229.   mobtimer: false
  230.   itemtimer: true
  231.   arrowtimer: true
  232.   arrowkilltime: 200
  233.   moblivetime: 600
  234.   itemlivetime: 1
  235.  
  236. #This option disallows the placement of too many tnt-minecarts
  237. # -- 'radius' is the radius clearlag will check for TNT-Minecarts
  238. tnt-minecart:
  239.   enabled: false
  240.   max: 2
  241.   radius: 6
  242.  
  243. #This option reduces global dispenser fire rate
  244. # -- 'time' is in milliseconds
  245. dispenser-reducer:
  246.   enabled: false
  247.   time: 100
  248.  
  249. #This option reduces the explosions of mass amounts of tnt, and reduces tnt lag
  250. # -- 'check-radius' is the radius clearlag will check for primed TNT
  251. # -- 'max-primed' is the max primed TNT within the radius allowed before clearlag begins to remove
  252. tnt-reducer:
  253.   enabled: false
  254.   check-radius: 5
  255.   max-primed: 3
  256.  
  257. #This option reduces fire spread rate
  258. # -- 'time' is in milliseconds
  259. firespread-reducer:
  260.   enabled: false
  261.   time: 2000
  262.  
  263. #How many entities should one chunk be allowed to hold?
  264. # -- 'entities' lists all the entities that will be counted
  265. #     and possibly removed.
  266. chunk-entity-limiter:
  267.   enabled: false
  268.   limit: 25
  269.   entities:
  270.    - Bat
  271.     - Bee
  272.     - Cat
  273.     - Chicken
  274.     - Cod
  275.     - Cow
  276.     - Dolphin
  277.     - Donkey
  278.     - Fox
  279.     - Horse
  280.     - Llama
  281.     - Mule
  282.     - Mushroom_Cow
  283.     - Ocelot
  284.     - Panda
  285.     - Parrot
  286.     - Pig
  287.     - Polar_Bear
  288.     - Pufferfish
  289.     - Rabbit
  290.     - Salmon
  291.     - Sheep
  292.     - Skeleton_Horse
  293.     - Snowman
  294.     - Squid
  295.     - Trader_Llama
  296.     - Tropical_Fish
  297.     - Turtle
  298.     - Villager
  299.     - Wandering_Trader
  300.     - Wolf
  301.     - Zombie_Horse
  302.     - Blaze
  303.     - Cave_Spider
  304.     - Creeper
  305.     - Dolphin
  306.     - Drowned
  307.     - Elder_Guardian
  308.     - Enderman
  309.     - Endermite
  310.     - Evoker
  311.     - Ghast
  312.     - Giant
  313.     - Guardian
  314.     - Husk
  315.     - Illusioner
  316.     - Magma_Cube
  317.     - Phantom
  318.     - Pig_Zombie
  319.     - Pillager
  320.     - Ravager
  321.     - Silverfish
  322.     - Skeleton
  323.     - Slime
  324.     - Snowman
  325.     - Spider
  326.     - Stray
  327.     - Vex
  328.     - Vindicator
  329.     - Witch
  330.     - Wither_Skeleton
  331.     - Zombie
  332.     - Zombie_Villager
  333.   # - Pig liveTime=100 <- This mob will be REMOVED if it's been alive for 100 ticks (5 seconds)
  334.  
  335. #A per-entity chunk limiter. Very useful to limiting useless mobs like squid, but not zombies
  336. # -- 'entity-limits' lists all the entities, their filters, and 'limit' to specify their limit
  337. #    to be removed/culled
  338. # -- 'passive-purger' Enables random checking of chunks to see whether they're exceeding limits.
  339. # -- Useful for when you want to prevent lag exploiting
  340. # -- 'passive-cleaning-enabled' Enables the passive-purger
  341. # -- 'check-interval' How often (in ticks, 50MS) should chunks be checked
  342. # -- 'chunk-batch-size' How many chunks at once should be checked
  343. per-entity-chunk-entity-limiter:
  344.   enabled: false
  345.   entity-limits:
  346.    - Squid limit:1
  347.     - Zombie limit:2
  348.     - Skeleton limit:2
  349.     - Creeper limit:2
  350.     - Chicken limit:3
  351.     - Pig limit:5
  352.     - Sheep limit:5
  353.     - Cow limit:5
  354.     - Horse limit:3 !hasName
  355.     - Villager limit:4
  356.     - Arrow limit:4 inGround
  357.     - Rabbit limit:2
  358.     - PufferFish limit:2
  359.     - Silverfish limit:2
  360.     - TROPICAL_FISH limit:2
  361.     - COD limit:2
  362.     - DOLPHIN limit:2
  363.     - Bat limit:1
  364.     - Armorstand limit:10
  365.   passive-cleaner:
  366.     passive-cleaning-enabled: false
  367.     check-interval: 20
  368.     chunk-batch-size: 100
  369.  
  370. #How many mobs should be allowed to spawn globally
  371. # -- 'interval' is the check interval check the current spawn amounts
  372. spawn-limiter:
  373.   enabled: false
  374.   interval: 15
  375.   mobs: 300
  376.   animals: 300
  377.  
  378. #Meters your TPS, if it goes to low, run the commands you wrote below!
  379. # -- 'interval' is how often tps-meter will check the TPS
  380. # -- 'tps-trigger' is at what TPS the commands will be ran at
  381. # -- 'tps-recover' is at what TPS should the TPS be considered stable after 'tps-trigger' is executed
  382. # -- 'commands' lists what commands will be executed when tps-tigger is reached
  383. # -- 'recover-commands' lists what commands will be executed when tps-recover is reached
  384. # -- 'trigger-broadcast-message' specifies which message should be broadcasted when tps-trigger runs
  385. # -- 'recover-broadcast-message' specifies which message should be broadcasted when TPS recovers
  386. # -- 'broadcast-enabled' defines whether or not tps-meter should broadcast
  387. tps-meter:
  388.   enabled: false
  389.   trigger-broadcast-message: '&6[ClearLag] &cThe server is overloaded, executing lag-perventing measures'
  390.   recover-broadcast-message: '&6[ClearLag] &aThe server is no longer overloaded!'
  391.   broadcast-enabled: false
  392.   interval: 15
  393.   tps-trigger: 14.0
  394.   tps-recover: 19.0
  395.   commands:
  396.    - 'lagg killmobs'
  397.     - 'lagg clear'
  398.     - 'lagg halt on'
  399.   recover-commands:
  400.    - 'lagg halt off'
  401.  
  402. #This is /lagg killmobs, put what you DON'T want removed!
  403. # -- 'remove-named', when FALSE entities with custom names will NOT be removed
  404. # -- 'mob-filter' lists which mobs will be IGNORED during /lagg killmobs
  405. kill-mobs:
  406.   remove-named: false
  407.   mob-filter:
  408.    - Bat
  409.     - Bee
  410.     - Cat
  411.     - Chicken
  412.     - Cod
  413.     - Cow
  414.     - Dolphin
  415.     - Donkey
  416.     - Fox
  417.     - Horse
  418.     - Llama
  419.     - Mule
  420.     - Mushroom_Cow
  421.     - Ocelot
  422.     - Panda
  423.     - Parrot
  424.     - Pig
  425.     - Polar_Bear
  426.     - Pufferfish
  427.     - Rabbit
  428.     - Salmon
  429.     - Sheep
  430.     - Skeleton_Horse
  431.     - Snowman
  432.     - Squid
  433.     - Trader_Llama
  434.     - Tropical_Fish
  435.     - Turtle
  436.     - Villager
  437.     - Wandering_Trader
  438.     - Wolf
  439.     - Zombie_Horse
  440.     - Armor_stand
  441.     - Piglin
  442.     - Hoglin
  443. #  - Pig !name="Test" <- This entity will filtered if the name does NOT equal "Test"
  444. #  - Zombie hasName <- This entity will be filtered if it HAS a name
  445.  
  446. #This nerfs mob-spawners (Natural and player-made)
  447. #-------------------------------------------------
  448. #This goes by chunks rather then spawners. This is to prevent
  449. #a large buildup of mob-spawners within a small region to "bypass"
  450. #your set limit. It also allows for keys to be generated more easily
  451. #increasing the performance
  452. # -- 'max-spawn' is the maximum mobs allowed to spawn by a mob-spawner
  453. # -- 'remove-mobs-on-chunk-unload' is whether or not Clearlag should remove
  454. # --  the mobs spawned by the mobspawner upon chunk unload (Highly Recommended)
  455. mobspawner:
  456.   enabled: true
  457.   max-spawn: 40
  458.   remove-mobs-on-chunk-unload: true
  459.  
  460. #Dont use if you have CB++ or Spigot!
  461. item-merger:
  462.   enabled: false
  463.   radius: 6
  464.  
  465. #Auto-removal options
  466. # -- warnings works like this; time = the time warning should be given, msg = warning message at that time
  467. # -- NOTE: The below 'remove' section applies to this remover!
  468. # -- NOTE: Putting the interval to low will cause issues!
  469. # -- NOTE: To disable "warnings", set it to "warnings: []"
  470. # -- NOTE: bukkit.broadcast.user permission will allow users to see broadcasts (If not enabled by default)
  471. #
  472. #        !==[ All string values MUST be inside '']==!
  473. #
  474. # -- 'remove-entities' lists what entities should be REMOVED on removal
  475. # -- 'warnings' list warnings to be given out at specified times
  476. # -- 'item-filter' What ground-items should NOT be removed during removal
  477. # -- 'remove-entities' What entities SHOULD be removed during removal
  478. auto-removal:
  479.   enabled: true
  480.   broadcast-message: '&5[&dClearLag&5] &d(&5Considerately&d) &5Cleared &b&l+RemoveAmount'
  481.   broadcast-removal: true
  482.   autoremoval-interval: 450
  483.   world-filter:
  484.  # - this_world <-This world will be ignored during removal!
  485.   boat: false
  486.   falling-block: true
  487.   experience-orb: true
  488.   painting: false
  489.   projectile: true
  490.   item: true
  491.   itemframe: false
  492.   minecart: false
  493.   primed-tnt: true
  494.   item-filter:
  495.    - FURNACE_MINECART
  496.     - CHEST_MINECART
  497.     - MINECART
  498.     - IRON_ORE
  499.     - COAL_ORE
  500.     - LAPIS_ORE
  501.     - GOLD_ORE
  502.     - DIAMOND_ORE
  503.     - EMERALD_ORE
  504.     - NETHER_QUARTZ_ORE
  505.     - NETHER_GOLD_ORE
  506.     - PISTON
  507.     - GOLD_BLOCK
  508.     - IRON_BLOCK
  509.     - SPAWNER
  510.     - CHEST
  511.     - DIAMOND_BLOCK
  512.     - LAPIS_BLOCK
  513.     - TOTEM_OF_UNDYING
  514.     - ENDER_EYE
  515.     - ENCHANTING_TABLE
  516.     - ACTIVATOR_RAIL
  517.     - POWERED_RAIL
  518.     - CLOCK
  519.     - CRAFTING_TABLE
  520.     - FURNACE
  521.     - REDSTONE_ORE
  522.     - WHITE_STAINED_GLASS
  523.     - MAGENTA_STAINED_GLASS
  524.     - LIGHT_BLUE_STAINED_GLASS
  525.     - LIME_STAINED_GLASS
  526.     - GRAY_STAINED_GLASS
  527.     - LIGHT_GRAY_STAINED_GLASS
  528.     - CYAN_STAINED_GLASS
  529.     - PURPLE_STAINED_GLASS
  530.     - BLUE_STAINED_GLASS
  531.     - BLACK_STAINED_GLASS
  532.     - END_PORTAL_FRAME
  533.     - ENDER_CHEST
  534.     - TRIPWIRE_HOOK
  535.     - EMERALD_BLOCK
  536.     - BEACON
  537.     - PLAYER_HEAD
  538.     - TRAPPED_CHEST
  539.     - DAYLIGHT_DETECTOR
  540.     - HOPPER
  541.     - TERRACOTTA
  542.     - WHITE_TERRACOTTA
  543.     - ORANGE_TERRACOTTA
  544.     - MAGENTA_TERRACOTTA
  545.     - LIGHT_BLUE_TERRACOTTA
  546.     - YELLOW_TERRACOTTA
  547.     - LIME_TERRACOTTA
  548.     - PINK_TERRACOTTA
  549.     - GRAY_TERRACOTTA
  550.     - LIGHT_GRAY_TERRACOTTA
  551.     - CYAN_TERRACOTTA
  552.     - PURPLE_TERRACOTTA
  553.     - BLUE_TERRACOTTA
  554.     - BROWN_TERRACOTTA
  555.     - GREEN_TERRACOTTA
  556.     - RED_TERRACOTTA
  557.     - BLACK_TERRACOTTA
  558.     - MUSIC_DISC_11
  559.     - MUSIC_DISC_13
  560.     - MUSIC_DISC_BLOCKS
  561.     - MUSIC_DISC_CAT
  562.     - MUSIC_DISC_CHIRP
  563.     - MUSIC_DISC_FAR
  564.     - MUSIC_DISC_MALL
  565.     - MUSIC_DISC_MELLOHI
  566.     - MUSIC_DISC_STAL
  567.     - MUSIC_DISC_STRAD
  568.     - MUSIC_DISC_WAIT
  569.     - MUSIC_DISC_WARD
  570.     - IRON_PICKAXE
  571.     - IRON_AXE
  572.     - IRON_SHOVEL
  573.     - IRON_SWORD
  574.     - IRON_HELMET
  575.     - IRON_BOOTS
  576.     - IRON_LEGGINGS
  577.     - IRON_CHESTPLATE
  578.     - BOW
  579.     - COAL
  580.     - DIAMOND
  581.     - IRON_INGOT
  582.     - GOLD_INGOT
  583.     - DIAMOND_AXE
  584.     - DIAMOND_PICKAXE
  585.     - DIAMOND_SHOVEL
  586.     - DIAMOND_SWORD
  587.     - DIAMOND_BOOTS
  588.     - DIAMOND_CHESTPLATE
  589.     - DIAMOND_LEGGINGS
  590.     - DIAMOND_HELMET
  591.     - DIAMOND_HOE
  592.     - GOLDEN_SWORD
  593.     - TRIDENT
  594.     - GUNPOWDER
  595.     - BOWL
  596.     - BRICK
  597.     - PAPER
  598.     - BOOK
  599.     - GLOWSTONE_DUST
  600.     - SUGAR
  601.     - BAT_SPAWN_EGG
  602.     - BEE_SPAWN_EGG
  603.     - BLAZE_SPAWN_EGG
  604.     - CAT_SPAWN_EGG
  605.     - CAVE_SPIDER_SPAWN_EGG
  606.     - CHICKEN_SPAWN_EGG
  607.     - COD_SPAWN_EGG
  608.     - COW_SPAWN_EGG
  609.     - CREEPER_SPAWN_EGG
  610.     - DOLPHIN_SPAWN_EGG
  611.     - DONKEY_SPAWN_EGG
  612.     - DROWNED_SPAWN_EGG
  613.     - ELDER_GUARDIAN_SPAWN_EGG
  614.     - ENDERMAN_SPAWN_EGG
  615.     - ENDERMITE_SPAWN_EGG
  616.     - EVOKER_SPAWN_EGG
  617.     - FOX_SPAWN_EGG
  618.     - GHAST_SPAWN_EGG
  619.     - GUARDIAN_SPAWN_EGG
  620.     - HORSE_SPAWN_EGG
  621.     - HUSK_SPAWN_EGG
  622.     - LLAMA_SPAWN_EGG
  623.     - MAGMA_CUBE_SPAWN_EGG
  624.     - MULE_SPAWN_EGG
  625.     - OCELOT_SPAWN_EGG
  626.     - PANDA_SPAWN_EGG
  627.     - PARROT_SPAWN_EGG
  628.     - PHANTOM_SPAWN_EGG
  629.     - PIG_SPAWN_EGG
  630.     - PILLAGER_SPAWN_EGG
  631.     - POLAR_BEAR_SPAWN_EGG
  632.     - PUFFERFISH_SPAWN_EGG
  633.     - RABBIT_SPAWN_EGG
  634.     - RAVAGER_SPAWN_EGG
  635.     - SALMON_SPAWN_EGG
  636.     - SHEEP_SPAWN_EGG
  637.     - SHULKER_SPAWN_EGG
  638.     - SILVERFISH_SPAWN_EGG
  639.     - SKELETON_SPAWN_EGG
  640.     - SKELETON_HORSE_SPAWN_EGG
  641.     - SLIME_SPAWN_EGG
  642.     - SPIDER_SPAWN_EGG
  643.     - SQUID_SPAWN_EGG
  644.     - STRAY_SPAWN_EGG
  645.     - TRADER_LLAMA_SPAWN_EGG
  646.     - TROPICAL_FISH_SPAWN_EGG
  647.     - TURTLE_SPAWN_EGG
  648.     - VEX_SPAWN_EGG
  649.     - VILLAGER_SPAWN_EGG
  650.     - VINDICATOR_SPAWN_EGG
  651.     - WANDERING_TRADER_SPAWN_EGG
  652.     - WITCH_SPAWN_EGG
  653.     - WITHER_SKELETON_SPAWN_EGG
  654.     - WOLF_SPAWN_EGG
  655.     - ZOMBIE_SPAWN_EGG
  656.     - ZOMBIE_HORSE_SPAWN_EGG
  657.     - ZOMBIE_VILLAGER_SPAWN_EGG
  658.     - EMERALD
  659.     - FIREWORK_STAR
  660.     - ARMOR_STAND
  661.     - ELYTRA
  662.     - TOTEM_OF_UNDYING
  663.     - SHULKER_SHELL
  664.     - SAND
  665.     - STONE
  666.     - END_STONE
  667.     - SUGAR_CANE
  668.     - COBBLESTONE
  669.     - POTATO
  670.     - CARROT
  671.     - BEETROOT
  672.     - PUMPKIN
  673.     - MELON
  674.     - WHEAT
  675.     - GRAVEL
  676.     - OAK_PLANKS
  677.     - INFESTED_STONE
  678.     - INFESTED_COBBLESTONE
  679.     - INFESTED_STONE_BRICKS
  680.     - INFESTED_MOSSY_STONE_BRICKS
  681.     - INFESTED_CRACKED_STONE_BRICKS
  682.     - INFESTED_CHISELED_STONE_BRICKS
  683.     - PURPLE_CONCRETE
  684.     - LIME_CONCRETE
  685.     - CHISELED_STONE_BRICKS
  686.     - SEA_LANTERN
  687.     - LANTERN
  688.     - SOUL_LANTERN
  689.     - DRAGON_EGG
  690.     - NETHERITE_BLOCK
  691.     - NETHERITE_SHOVEL
  692.     - NETHERITE_PICKAXE
  693.     - NETHERITE_AXE
  694.     - NETHERITE_HOE
  695.     - NETHERITE_SWORD
  696.     - NETHERITE_SCRAP
  697.     - NETHERITE_INGOT
  698.     - NETHERITE_HELMET
  699.     - NETHERITE_CHESTPLATE
  700.     - NETHERITE_LEGGINGS
  701.     - NETHERITE_BOOTS
  702.     - GILDED_BLACKSTONE
  703.     - BLACKSTONE,BASALT
  704.     - WARPED_NYLIUM
  705.     - CRIMSON_NYLIUM
  706.     - RED_NETHER_BRICKS
  707.     - ANCIENT_DEBRIS
  708.     - MAGMA_BLOCK
  709.     - WARPED_STEM
  710.     - CRIMSON_STEM
  711.     - WARPED_ROOTS
  712.     - CRIMSON_ROOTS
  713.     - WEEPING_VINES
  714.     - TWISTING_VINES
  715.     - CRIMSON_FUNGUS
  716.     - WARPED_FUNGUS
  717.     - NETHER_SPROUTS
  718.     - NETHER_BRICK_FENCE
  719.     - NETHER_BRICK_STAIRS
  720.     - COBWEB
  721.     - BAMBOO
  722.     - END_ROD
  723.     - NETHER_STAR
  724.   # - Stone <-Thi
  725.   remove-entities: []
  726.   # - cow <- This mob-type will be REMOVED during removal!
  727.   # - MINECART_MOB_SPAWNER
  728.   # - Pig liveTime=100 <- This mob will be REMOVED if it's been alive for 100 ticks (5 seconds)
  729.   # - Minecart !isMounted <- This entity will be REMOVED if it's NOT mounted
  730.   # - Wolf !hasName <- This entity will be REMOVED if it doesn't have a name
  731.   warnings:
  732.    - 'time:420 msg:&5[&bClearLag&5] &5in &b+remaining&5 s'
  733.     - 'time:450 msg:&5[&bClearLag&5] &5in &b+remaining&5 s'
  734.     - 'time:475 msg:&5[&bClearLag&5] &5in &b+remaining&5 s'
  735.  
  736. #What should be removed during /lagg clear, nearly the same thing as auto-removal
  737. command-remove:
  738.   world-filter:
  739.  # - this_world <-This world will be ignored during removal!
  740.   broadcast-removal: false
  741.   boat: false
  742.   falling-block: true
  743.   experience-orb: true
  744.   painting: false
  745.   projectile: true
  746.   item: true
  747.   itemframe: false
  748.   minecart: false
  749.   primed-tnt: true
  750.   item-filter:
  751.    - FURNACE_MINECART
  752.     - CHEST_MINECART
  753.     - MINECART
  754.     - IRON_ORE
  755.     - COAL_ORE
  756.     - LAPIS_ORE
  757.     - GOLD_ORE
  758.     - DIAMOND_ORE
  759.     - EMERALD_ORE
  760.     - NETHER_QUARTZ_ORE
  761.     - NETHER_GOLD_ORE
  762.     - PISTON
  763.     - GOLD_BLOCK
  764.     - IRON_BLOCK
  765.     - SPAWNER
  766.     - CHEST
  767.     - DIAMOND_BLOCK
  768.     - LAPIS_BLOCK
  769.     - TOTEM_OF_UNDYING
  770.     - ENDER_EYE
  771.     - ENCHANTING_TABLE
  772.     - ACTIVATOR_RAIL
  773.     - POWERED_RAIL
  774.     - CLOCK
  775.     - CRAFTING_TABLE
  776.     - FURNACE
  777.     - REDSTONE_ORE
  778.     - WHITE_STAINED_GLASS
  779.     - MAGENTA_STAINED_GLASS
  780.     - LIGHT_BLUE_STAINED_GLASS
  781.     - LIME_STAINED_GLASS
  782.     - GRAY_STAINED_GLASS
  783.     - LIGHT_GRAY_STAINED_GLASS
  784.     - CYAN_STAINED_GLASS
  785.     - PURPLE_STAINED_GLASS
  786.     - BLUE_STAINED_GLASS
  787.     - BLACK_STAINED_GLASS
  788.     - END_PORTAL_FRAME
  789.     - ENDER_CHEST
  790.     - TRIPWIRE_HOOK
  791.     - EMERALD_BLOCK
  792.     - BEACON
  793.     - PLAYER_HEAD
  794.     - TRAPPED_CHEST
  795.     - DAYLIGHT_DETECTOR
  796.     - HOPPER
  797.     - TERRACOTTA
  798.     - WHITE_TERRACOTTA
  799.     - ORANGE_TERRACOTTA
  800.     - MAGENTA_TERRACOTTA
  801.     - LIGHT_BLUE_TERRACOTTA
  802.     - YELLOW_TERRACOTTA
  803.     - LIME_TERRACOTTA
  804.     - PINK_TERRACOTTA
  805.     - GRAY_TERRACOTTA
  806.     - LIGHT_GRAY_TERRACOTTA
  807.     - CYAN_TERRACOTTA
  808.     - PURPLE_TERRACOTTA
  809.     - BLUE_TERRACOTTA
  810.     - BROWN_TERRACOTTA
  811.     - GREEN_TERRACOTTA
  812.     - RED_TERRACOTTA
  813.     - BLACK_TERRACOTTA
  814.     - MUSIC_DISC_11
  815.     - MUSIC_DISC_13
  816.     - MUSIC_DISC_BLOCKS
  817.     - MUSIC_DISC_CAT
  818.     - MUSIC_DISC_CHIRP
  819.     - MUSIC_DISC_FAR
  820.     - MUSIC_DISC_MALL
  821.     - MUSIC_DISC_MELLOHI
  822.     - MUSIC_DISC_STAL
  823.     - MUSIC_DISC_STRAD
  824.     - MUSIC_DISC_WAIT
  825.     - MUSIC_DISC_WARD
  826.     - IRON_PICKAXE
  827.     - IRON_AXE
  828.     - IRON_SHOVEL
  829.     - IRON_SWORD
  830.     - IRON_HELMET
  831.     - IRON_BOOTS
  832.     - IRON_LEGGINGS
  833.     - IRON_CHESTPLATE
  834.     - BOW
  835.     - COAL
  836.     - DIAMOND
  837.     - IRON_INGOT
  838.     - GOLD_INGOT
  839.     - DIAMOND_AXE
  840.     - DIAMOND_PICKAXE
  841.     - DIAMOND_SHOVEL
  842.     - DIAMOND_SWORD
  843.     - DIAMOND_BOOTS
  844.     - DIAMOND_CHESTPLATE
  845.     - DIAMOND_LEGGINGS
  846.     - DIAMOND_HELMET
  847.     - DIAMOND_HOE
  848.     - GOLDEN_SWORD
  849.     - TRIDENT
  850.     - GUNPOWDER
  851.     - BOWL
  852.     - BRICK
  853.     - PAPER
  854.     - BOOK
  855.     - GLOWSTONE_DUST
  856.     - SUGAR
  857.     - BAT_SPAWN_EGG
  858.     - BEE_SPAWN_EGG
  859.     - BLAZE_SPAWN_EGG
  860.     - CAT_SPAWN_EGG
  861.     - CAVE_SPIDER_SPAWN_EGG
  862.     - CHICKEN_SPAWN_EGG
  863.     - COD_SPAWN_EGG
  864.     - COW_SPAWN_EGG
  865.     - CREEPER_SPAWN_EGG
  866.     - DOLPHIN_SPAWN_EGG
  867.     - DONKEY_SPAWN_EGG
  868.     - DROWNED_SPAWN_EGG
  869.     - ELDER_GUARDIAN_SPAWN_EGG
  870.     - ENDERMAN_SPAWN_EGG
  871.     - ENDERMITE_SPAWN_EGG
  872.     - EVOKER_SPAWN_EGG
  873.     - FOX_SPAWN_EGG
  874.     - GHAST_SPAWN_EGG
  875.     - GUARDIAN_SPAWN_EGG
  876.     - HORSE_SPAWN_EGG
  877.     - HUSK_SPAWN_EGG
  878.     - LLAMA_SPAWN_EGG
  879.     - MAGMA_CUBE_SPAWN_EGG
  880.     - MULE_SPAWN_EGG
  881.     - OCELOT_SPAWN_EGG
  882.     - PANDA_SPAWN_EGG
  883.     - PARROT_SPAWN_EGG
  884.     - PHANTOM_SPAWN_EGG
  885.     - PIG_SPAWN_EGG
  886.     - PILLAGER_SPAWN_EGG
  887.     - POLAR_BEAR_SPAWN_EGG
  888.     - PUFFERFISH_SPAWN_EGG
  889.     - RABBIT_SPAWN_EGG
  890.     - RAVAGER_SPAWN_EGG
  891.     - SALMON_SPAWN_EGG
  892.     - SHEEP_SPAWN_EGG
  893.     - SHULKER_SPAWN_EGG
  894.     - SILVERFISH_SPAWN_EGG
  895.     - SKELETON_SPAWN_EGG
  896.     - SKELETON_HORSE_SPAWN_EGG
  897.     - SLIME_SPAWN_EGG
  898.     - SPIDER_SPAWN_EGG
  899.     - SQUID_SPAWN_EGG
  900.     - STRAY_SPAWN_EGG
  901.     - TRADER_LLAMA_SPAWN_EGG
  902.     - TROPICAL_FISH_SPAWN_EGG
  903.     - TURTLE_SPAWN_EGG
  904.     - VEX_SPAWN_EGG
  905.     - VILLAGER_SPAWN_EGG
  906.     - VINDICATOR_SPAWN_EGG
  907.     - WANDERING_TRADER_SPAWN_EGG
  908.     - WITCH_SPAWN_EGG
  909.     - WITHER_SKELETON_SPAWN_EGG
  910.     - WOLF_SPAWN_EGG
  911.     - ZOMBIE_SPAWN_EGG
  912.     - ZOMBIE_HORSE_SPAWN_EGG
  913.     - ZOMBIE_VILLAGER_SPAWN_EGG
  914.     - EMERALD
  915.     - FIREWORK_STAR
  916.     - ARMOR_STAND
  917.     - ELYTRA
  918.     - TOTEM_OF_UNDYING
  919.     - SHULKER_SHELL
  920.     - SAND
  921.     - STONE
  922.     - END_STONE
  923.     - SUGAR_CANE
  924.     - COBBLESTONE
  925.     - POTATO
  926.     - CARROT
  927.     - BEETROOT
  928.     - PUMPKIN
  929.     - MELON
  930.     - WHEAT
  931.     - GRAVEL
  932.     - OAK_PLANKS
  933.     - INFESTED_STONE
  934.     - INFESTED_COBBLESTONE
  935.     - INFESTED_STONE_BRICKS
  936.     - INFESTED_MOSSY_STONE_BRICKS
  937.     - INFESTED_CRACKED_STONE_BRICKS
  938.     - INFESTED_CHISELED_STONE_BRICKS
  939.     - PURPLE_CONCRETE
  940.     - LIME_CONCRETE
  941.     - CHISELED_STONE_BRICKS
  942.     - SEA_LANTERN
  943.     - LANTERN
  944.     - SOUL_LANTERN
  945.     - DRAGON_EGG
  946.     - NETHERITE_BLOCK
  947.     - NETHERITE_SHOVEL
  948.     - NETHERITE_PICKAXE
  949.     - NETHERITE_AXE
  950.     - NETHERITE_HOE
  951.     - NETHERITE_SWORD
  952.     - NETHERITE_SCRAP
  953.     - NETHERITE_INGOT
  954.     - NETHERITE_HELMET
  955.     - NETHERITE_CHESTPLATE
  956.     - NETHERITE_LEGGINGS
  957.     - NETHERITE_BOOTS
  958.     - GILDED_BLACKSTONE
  959.     - BLACKSTONE,BASALT
  960.     - WARPED_NYLIUM
  961.     - CRIMSON_NYLIUM
  962.     - RED_NETHER_BRICKS
  963.     - ANCIENT_DEBRIS
  964.     - MAGMA_BLOCK
  965.     - WARPED_STEM
  966.     - CRIMSON_STEM
  967.     - WARPED_ROOTS
  968.     - CRIMSON_ROOTS
  969.     - WEEPING_VINES
  970.     - TWISTING_VINES
  971.     - CRIMSON_FUNGUS
  972.     - WARPED_FUNGUS
  973.     - NETHER_SPROUTS
  974.     - NETHER_BRICK_FENCE
  975.     - NETHER_BRICK_STAIRS
  976.     - COBWEB
  977.     - BAMBOO
  978.     - END_ROD
  979.     - NETHER_STAR
  980.   # - Stone <-This item-id will be ignored during removal!
  981.   # - Grass
  982.   remove-entities:
  983.  # - cow <- This mob-type will be REMOVED during removal!
  984.   # - MINECART_MOB_SPAWNER
  985.   # - Pig liveTime=100 <- This mob will be REMOVED if it's been alive for 100 ticks (5 seconds)
  986.   # - Minecart !isMounted <- This entity will be REMOVED if it's NOT mounted
  987.   # - Wolf !hasName <- This entity will be REMOVED if it doesn't have a name
  988.  
  989. #Very very old, but still works. Just specifies a global entity limit. I'd recommend 'custom-trigger-removal' instead
  990. # -- 'max' max entities allowed before the entity removal is activated
  991. limit:
  992.   enabled: false
  993.   max: 1000
  994.   check-interval: 60
  995.   broadcast-message: '&6[ClearLag] &aLimit reached, removed +RemoveAmount Entities!'
  996.   world-filter:
  997.  # - this_world <-This world will be ignored during removal!
  998.   broadcast-removal: true
  999.   boat: true
  1000.   falling-block: true
  1001.   experience-orb: true
  1002.   painting: false
  1003.   projectile: true
  1004.   item: true
  1005.   itemframe: false
  1006.   minecart: false
  1007.   primed-tnt: true
  1008.   item-filter:
  1009.    - FURNACE_MINECART
  1010.     - CHEST_MINECART
  1011.     - MINECART
  1012.     - IRON_ORE
  1013.     - COAL_ORE
  1014.     - LAPIS_ORE
  1015.     - GOLD_ORE
  1016.     - DIAMOND_ORE
  1017.     - EMERALD_ORE
  1018.     - NETHER_QUARTZ_ORE
  1019.     - NETHER_GOLD_ORE
  1020.     - PISTON
  1021.     - GOLD_BLOCK
  1022.     - IRON_BLOCK
  1023.     - SPAWNER
  1024.     - CHEST
  1025.     - DIAMOND_BLOCK
  1026.     - LAPIS_BLOCK
  1027.     - TOTEM_OF_UNDYING
  1028.     - ENDER_EYE
  1029.     - ENCHANTING_TABLE
  1030.     - ACTIVATOR_RAIL
  1031.     - POWERED_RAIL
  1032.     - CLOCK
  1033.     - CRAFTING_TABLE
  1034.     - FURNACE
  1035.     - REDSTONE_ORE
  1036.     - WHITE_STAINED_GLASS
  1037.     - MAGENTA_STAINED_GLASS
  1038.     - LIGHT_BLUE_STAINED_GLASS
  1039.     - LIME_STAINED_GLASS
  1040.     - GRAY_STAINED_GLASS
  1041.     - LIGHT_GRAY_STAINED_GLASS
  1042.     - CYAN_STAINED_GLASS
  1043.     - PURPLE_STAINED_GLASS
  1044.     - BLUE_STAINED_GLASS
  1045.     - BLACK_STAINED_GLASS
  1046.     - END_PORTAL_FRAME
  1047.     - ENDER_CHEST
  1048.     - TRIPWIRE_HOOK
  1049.     - EMERALD_BLOCK
  1050.     - BEACON
  1051.     - PLAYER_HEAD
  1052.     - TRAPPED_CHEST
  1053.     - DAYLIGHT_DETECTOR
  1054.     - HOPPER
  1055.     - TERRACOTTA
  1056.     - WHITE_TERRACOTTA
  1057.     - ORANGE_TERRACOTTA
  1058.     - MAGENTA_TERRACOTTA
  1059.     - LIGHT_BLUE_TERRACOTTA
  1060.     - YELLOW_TERRACOTTA
  1061.     - LIME_TERRACOTTA
  1062.     - PINK_TERRACOTTA
  1063.     - GRAY_TERRACOTTA
  1064.     - LIGHT_GRAY_TERRACOTTA
  1065.     - CYAN_TERRACOTTA
  1066.     - PURPLE_TERRACOTTA
  1067.     - BLUE_TERRACOTTA
  1068.     - BROWN_TERRACOTTA
  1069.     - GREEN_TERRACOTTA
  1070.     - RED_TERRACOTTA
  1071.     - BLACK_TERRACOTTA
  1072.     - MUSIC_DISC_11
  1073.     - MUSIC_DISC_13
  1074.     - MUSIC_DISC_BLOCKS
  1075.     - MUSIC_DISC_CAT
  1076.     - MUSIC_DISC_CHIRP
  1077.     - MUSIC_DISC_FAR
  1078.     - MUSIC_DISC_MALL
  1079.     - MUSIC_DISC_MELLOHI
  1080.     - MUSIC_DISC_STAL
  1081.     - MUSIC_DISC_STRAD
  1082.     - MUSIC_DISC_WAIT
  1083.     - MUSIC_DISC_WARD
  1084.     - IRON_PICKAXE
  1085.     - IRON_AXE
  1086.     - IRON_SHOVEL
  1087.     - IRON_SWORD
  1088.     - IRON_HELMET
  1089.     - IRON_BOOTS
  1090.     - IRON_LEGGINGS
  1091.     - IRON_CHESTPLATE
  1092.     - BOW
  1093.     - COAL
  1094.     - DIAMOND
  1095.     - IRON_INGOT
  1096.     - GOLD_INGOT
  1097.     - DIAMOND_AXE
  1098.     - DIAMOND_PICKAXE
  1099.     - DIAMOND_SHOVEL
  1100.     - DIAMOND_SWORD
  1101.     - DIAMOND_BOOTS
  1102.     - DIAMOND_CHESTPLATE
  1103.     - DIAMOND_LEGGINGS
  1104.     - DIAMOND_HELMET
  1105.     - DIAMOND_HOE
  1106.     - GOLDEN_SWORD
  1107.     - TRIDENT
  1108.     - GUNPOWDER
  1109.     - BOWL
  1110.     - BRICK
  1111.     - PAPER
  1112.     - BOOK
  1113.     - GLOWSTONE_DUST
  1114.     - SUGAR
  1115.     - BAT_SPAWN_EGG
  1116.     - BEE_SPAWN_EGG
  1117.     - BLAZE_SPAWN_EGG
  1118.     - CAT_SPAWN_EGG
  1119.     - CAVE_SPIDER_SPAWN_EGG
  1120.     - CHICKEN_SPAWN_EGG
  1121.     - COD_SPAWN_EGG
  1122.     - COW_SPAWN_EGG
  1123.     - CREEPER_SPAWN_EGG
  1124.     - DOLPHIN_SPAWN_EGG
  1125.     - DONKEY_SPAWN_EGG
  1126.     - DROWNED_SPAWN_EGG
  1127.     - ELDER_GUARDIAN_SPAWN_EGG
  1128.     - ENDERMAN_SPAWN_EGG
  1129.     - ENDERMITE_SPAWN_EGG
  1130.     - EVOKER_SPAWN_EGG
  1131.     - FOX_SPAWN_EGG
  1132.     - GHAST_SPAWN_EGG
  1133.     - GUARDIAN_SPAWN_EGG
  1134.     - HORSE_SPAWN_EGG
  1135.     - HUSK_SPAWN_EGG
  1136.     - LLAMA_SPAWN_EGG
  1137.     - MAGMA_CUBE_SPAWN_EGG
  1138.     - MULE_SPAWN_EGG
  1139.     - OCELOT_SPAWN_EGG
  1140.     - PANDA_SPAWN_EGG
  1141.     - PARROT_SPAWN_EGG
  1142.     - PHANTOM_SPAWN_EGG
  1143.     - PIG_SPAWN_EGG
  1144.     - PILLAGER_SPAWN_EGG
  1145.     - POLAR_BEAR_SPAWN_EGG
  1146.     - PUFFERFISH_SPAWN_EGG
  1147.     - RABBIT_SPAWN_EGG
  1148.     - RAVAGER_SPAWN_EGG
  1149.     - SALMON_SPAWN_EGG
  1150.     - SHEEP_SPAWN_EGG
  1151.     - SHULKER_SPAWN_EGG
  1152.     - SILVERFISH_SPAWN_EGG
  1153.     - SKELETON_SPAWN_EGG
  1154.     - SKELETON_HORSE_SPAWN_EGG
  1155.     - SLIME_SPAWN_EGG
  1156.     - SPIDER_SPAWN_EGG
  1157.     - SQUID_SPAWN_EGG
  1158.     - STRAY_SPAWN_EGG
  1159.     - TRADER_LLAMA_SPAWN_EGG
  1160.     - TROPICAL_FISH_SPAWN_EGG
  1161.     - TURTLE_SPAWN_EGG
  1162.     - VEX_SPAWN_EGG
  1163.     - VILLAGER_SPAWN_EGG
  1164.     - VINDICATOR_SPAWN_EGG
  1165.     - WANDERING_TRADER_SPAWN_EGG
  1166.     - WITCH_SPAWN_EGG
  1167.     - WITHER_SKELETON_SPAWN_EGG
  1168.     - WOLF_SPAWN_EGG
  1169.     - ZOMBIE_SPAWN_EGG
  1170.     - ZOMBIE_HORSE_SPAWN_EGG
  1171.     - ZOMBIE_VILLAGER_SPAWN_EGG
  1172.     - EMERALD
  1173.     - FIREWORK_STAR
  1174.     - ARMOR_STAND
  1175.     - ELYTRA
  1176.     - TOTEM_OF_UNDYING
  1177.     - SHULKER_SHELL
  1178.     - SAND
  1179.     - STONE
  1180.     - END_STONE
  1181.     - SUGAR_CANE
  1182.     - COBBLESTONE
  1183.     - POTATO
  1184.     - CARROT
  1185.     - BEETROOT
  1186.     - PUMPKIN
  1187.     - MELON
  1188.     - WHEAT
  1189.     - GRAVEL
  1190.     - OAK_PLANKS
  1191.     - INFESTED_STONE
  1192.     - INFESTED_COBBLESTONE
  1193.     - INFESTED_STONE_BRICKS
  1194.     - INFESTED_MOSSY_STONE_BRICKS
  1195.     - INFESTED_CRACKED_STONE_BRICKS
  1196.     - INFESTED_CHISELED_STONE_BRICKS
  1197.     - PURPLE_CONCRETE
  1198.     - LIME_CONCRETE
  1199.     - CHISELED_STONE_BRICKS
  1200.     - SEA_LANTERN
  1201.     - LANTERN
  1202.     - SOUL_LANTERN
  1203.     - DRAGON_EGG
  1204.     - NETHERITE_BLOCK
  1205.     - NETHERITE_SHOVEL
  1206.     - NETHERITE_PICKAXE
  1207.     - NETHERITE_AXE
  1208.     - NETHERITE_HOE
  1209.     - NETHERITE_SWORD
  1210.     - NETHERITE_SCRAP
  1211.     - NETHERITE_INGOT
  1212.     - NETHERITE_HELMET
  1213.     - NETHERITE_CHESTPLATE
  1214.     - NETHERITE_LEGGINGS
  1215.     - NETHERITE_BOOTS
  1216.     - GILDED_BLACKSTONE
  1217.     - BLACKSTONE,BASALT
  1218.     - WARPED_NYLIUM
  1219.     - CRIMSON_NYLIUM
  1220.     - RED_NETHER_BRICKS
  1221.     - ANCIENT_DEBRIS
  1222.     - MAGMA_BLOCK
  1223.     - WARPED_STEM
  1224.     - CRIMSON_STEM
  1225.     - WARPED_ROOTS
  1226.     - CRIMSON_ROOTS
  1227.     - WEEPING_VINES
  1228.     - TWISTING_VINES
  1229.     - CRIMSON_FUNGUS
  1230.     - WARPED_FUNGUS
  1231.     - NETHER_SPROUTS
  1232.     - NETHER_BRICK_FENCE
  1233.     - NETHER_BRICK_STAIRS
  1234.     - COBWEB
  1235.     - BAMBOO
  1236.     - END_ROD
  1237.     - NETHER_STAR
  1238.   # - Stone <-Thi
  1239. # Create your own custom removal stuff!
  1240. # -- warnings works like this; time = the time warning should be given, msg = warning message at that time
  1241. # -- NOTE: The below 'remove' section applies to this remover!
  1242. # \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/
  1243. # >    READ FOR HELP -> https://dev.bukkit.org/projects/clearlagg/pages/config-setup <- READ FOR HELP    <
  1244. # /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\ /\
  1245. custom-trigger-removal:
  1246.   enabled: false
  1247.   triggers:
  1248.     trigger1:
  1249.       trigger-type: tps-trigger
  1250.       run-interval: 5
  1251.       tps-trigger: 14.0
  1252.       tps-recover: 19.0
  1253.       jobs:
  1254.         command-executor:
  1255.           commands:
  1256.            - 'lagg killmobs'
  1257.             - 'lagg clear'
  1258.             - 'lagg halt'
  1259.           recover-commands:
  1260.            - 'lagg halt'
  1261.         entity-clearer:
  1262.           execute-job-time: 120
  1263.           warnings:
  1264.            - 'time:60 msg:&4[ClearLag] &cEntities/drops will be purged in &7+remaining &cseconds!'
  1265.             - 'time:100 msg:&4[ClearLag] &cEntities/drops will be purged in &720 &cseconds!'
  1266.             - 'time:110 msg:&4[ClearLag] &cEntities/drops will be purged in &710 &cseconds!'
  1267.           world-filter:
  1268.          # - world <-This world will be ignored during removal
  1269.           removeEntities:
  1270.            - item
  1271.             - zombie !hasName
  1272.             - skeleton !hasName
  1273.             - pig !hasName
  1274.             - cow !hasName
  1275.     trigger2:
  1276.       trigger-type: entity-limit-trigger
  1277.       run-interval: 25
  1278.       limit: 200
  1279.       world-filter:
  1280.        # - world <-This world will be ignored during checking
  1281.       entity-limits:
  1282.        - zombie
  1283.         - skeleton
  1284.         - enderman
  1285.       jobs:
  1286.         entity-clearer:
  1287.           world-filter:
  1288.          # - world <-This world will be ignored during removal
  1289.           remove-entities:
  1290.            - zombie
  1291.             - skeleton
  1292.             - enderman
  1293.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement