• 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 Manarune

Broly

New Member
Joined
Dec 29, 2008
Messages
30
Reaction score
0
hey i need a manarune script that says AHH! VIP Mana Rune Rox!

can anyone send mea script that does that?

and it needs to heal 1500
and has a energy effect not the effect a uh has
 
Last edited:
Lua:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

function onCastSpell(cid, var)
doPlayerAddMana(cid, 1500) 
doCreatureSay(cid, "AHH! VIP Mana Rune Rox!", TALKTYPE_ORANGE_1)
return doCombat(cid, combat, var)
end

Not tested, post any errors
 
Back
Top