RemoveCustomAttributes - dniym/IllegalStack GitHub Wiki
CHILD OPTION OF Fix Illegal Enchants
Will remove ALL custom attributes found on items held by players (unless they have the bypass permission). This is useful for getting rid of sticks with +1000 damage or insta death helmets that have been previously cheated in.
Helmet of Death - This is the one that causes a death loop. It sets your health to a negative value. Interestingly this only works on a server, I couldn't get the death loop in a single player world
- /give @p leather_helmet 1 0 {display:{Name:"Helmet of Death",color:16711680},AttributeModifiers:[{AttributeName:"generic.maxHealth",Name:"generic.maxHealth",Amount:-20,Operation:0,UUIDMost:56050,UUIDLeast:327253}],HideFlags:2,Unbreakable:1}
Pants of Reverse Destruction - Thorns x1000, will instantly kill any player who attacks you
- /give @p leather_leggings 1 0 {display:{Name:"Pants of Reverse Destruction",color:16752896},ench:[{id:7,lvl:1000},{id:34,lvl:1000}],Unbreakable:1}
Super Speedy Boots - Boots that give a large speed increase when worn. If you increase the Amount up from 0.25 to, say, 5 for example, you can travel hundreds/thousands of blocks with a quick tap of the W key (this may crash the server by loading too many chunks at once)
-
/give @p leather_boots 1 0 {display:{Name:"Super Speedy Boots",color:36095},AttributeModifiers:[{Slot:"feet",AttributeName:"generic.movementSpeed",Name:"generic.movementSpeed",Amount:0.25,Operation:0,UUIDMost:28954,UUIDLeast:24220}],ench:[{id:2,lvl:255},{id:8,lvl:255}],Unbreakable:1}
-
NOTE If you're running < 1.13 this protection requires NBT API otherwise, for 1.13+ no other plugins are needed to check attributes.
** Players with the illegalstack.enchantbypass permission will bypass this protection.
To enable / disable this protection use the following command: /istack toggle RemoveCustomAttributes
This protection has no extra options.