Well this script won't remove the hp when i remove the item..
movement/script
function onEquip(cid, item, slot)
setCreatureMaxHealth(cid,getCreatureMaxHealth(cid)+200)
return TRUE
end
function onDeEquip(cid, item, slot)
setCreatureMaxHealth(cid,getCreatureMaxHealth(cid)-200)...