• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Need Spell To regenerate Full mana

Andrekkzie

New Member
Joined
Sep 12, 2010
Messages
64
Reaction score
2
Need spell for example when i say utamo curo all my mana refills full but i lost like 3000 Gold when i use spell
Thx
 
here is one as example :p
Code:
function onCastSpell(cid, var)
	if doPlayerRemoveMoney(cid, 3000) then
		doCreatureAddMana(cid, getCreatureMaxMana(cid))
			doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_GREEN)
			doSendAnimatedText(getCreaturePosition(cid),'MANA !', TEXTCOLOR_RED)		
	else
			doPlayerSendCancel(cid, 'sorry you don\'t have enough money')
			end
		return false
	end
 
Back
Top