Beo
Three Magic
- Joined
- Aug 25, 2009
- Messages
- 9,075
- Solutions
- 1
- Reaction score
- 857
Simply changes your mana potion to a health potion:
P.S
My first script :]
Code:
<action itemid="2229" script="other/manahealth.lua"/>
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
if(itemEx.itemid == 7620) then
doTransformItem(itemEx.uid, 7618)
doRemoveItem(item.uid,0)
doSendMagicEffect(toPosition, 9)
return TRUE
end
end
P.S
My first script :]
Last edited: