WiLDTuRTLE
Member
- Joined
- Feb 26, 2011
- Messages
- 478
- Reaction score
- 5
Well this script won't remove the hp when i remove the item..
movement/script
movement/script
Code:
function onEquip(cid, item, slot)
setCreatureMaxHealth(cid,getCreatureMaxHealth(cid)+200)
return TRUE
end
function onDeEquip(cid, item, slot)
setCreatureMaxHealth(cid,getCreatureMaxHealth(cid)-200)
return TRUE
end