I was trying to make a speed boot. you know, a speed boot, like in Nethack well I made the following item
[ITEM_SHOES:ITEM_SHOES_SPEED]
[NAME:speed boot:speed boots]
[ARMORLEVEL:1]
[UPSTEP:1]
[METAL_ARMOR_LEVELS]
[LAYER:OVER]
[COVERAGE:100]
[LAYER_SIZE:25]
[LAYER_PERMIT:15]
[MATERIAL_SIZE:2]
[METAL]
[LEATHER]
[HARD]
and the following creature[CREATURE:ARTIFACT]
[ARENA_RESTRICTED]
[DOES_NOT_EXIST]
[NAME:::][CASTE_NAME:::]
[USE_MATERIAL_TEMPLATE:SPEED_BOOT:STONE_TEMPLATE]
[DISPLAY_COLOR:3:0:1]
[STATE_NAME:ALL_SOLID:speed boot]
[MELTING_POINT:5]
[BOILING_POINT:9509]
[SYNDROME]
[SYN_NAME:speed_boot]
[CE_SPEED_CHANGE:SPEED_PERC:250:START:0:END:10000]
and I used the following scripts in onLoad.init
modtools/item-trigger -itemType ITEM_SHOES_SPEED -onEquip -command [ modtools/add-syndrome -syndrome "speed_boot" -resetPolicy ResetDuration -target \\UNIT_ID ]
modtools/item-trigger -itemType ITEM_HELM_SPEED -onUnequip -command [ modtools/add-syndrome -erase -syndrome "speed_boot" -resetPolicy ResetDuration -target \\UNIT_ID ]
and while it does seem to work to equip the boots(although it seems work simply by picking them up. is there a way to fix that too), when I take the boots off it does erase the the syndrome, but the charecter is still extra speedy. how do I fix it?