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

why lose mana ?

Check Me

New Member
Joined
Mar 11, 2015
Messages
42
Reaction score
0
when some player heal with mr he lose it i dont know why can some one help me please ?

<item id="2270" article="a" name="Second manarune">
<attribute key="weight" value="120" />
 
Post the script.
Im stealing this thread

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HOLYDAMAGE)
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

function onCastSpell(cid, var)
    doPlayerAddMana(cid, math.random(500, 1200))
    return doCombat(cid, combat, var)
end
Why does my mr not work? Its not healing or anything.. There just bugged 9x9 green effect
 
Back
Top