Luciano
Member
- Joined
- Feb 18, 2010
- Messages
- 998
- Reaction score
- 24
Hi.
I have this script for heal mana:
I need a script that heal,for example, 1200 mana and health, and say Mixed Rune. No. Its not forgotten map ;P is real map. AND, Only for paladins
-----
Anyone know a good "upgrader" item to do like transform item x in y, i have the script just need a cool item and unused
I have this script for heal mana:
Code:
function onUse(cid, item, frompos, item2, topos)
mag = getPlayerMagLevel(cid)
if mag >= 3 then
doSendMagicEffect(topos,1)
doCreatureSay(cid,"Donated Manarune!!",19)
doPlayerAddMana(cid, 1200)
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
end
else
doSendMagicEffect(frompos,2)
doPlayerSendCancel(cid,"You don't have the required magic level to use that rune.")
end
return 1
end
I need a script that heal,for example, 1200 mana and health, and say Mixed Rune. No. Its not forgotten map ;P is real map. AND, Only for paladins
-----
Anyone know a good "upgrader" item to do like transform item x in y, i have the script just need a cool item and unused