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

Spell Paralyze rune

chochonw

New Member
Joined
Oct 2, 2009
Messages
2
Reaction score
0
Well, its my problem: in my server, the paralyze rune doesn't use mana when somebody paralyze people. Can anyone help me? I wanna use mana when i use a paralyze rune on a target.


local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)

local condition = createConditionObject(CONDITION_PARALYZE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 20000)
--setConditionParam(condition, CONDITION_PARAM_SPEED, -200)
setConditionFormula(condition, -0.9, 0, -0.9, 0)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)

* return doCombat(cid, combat, var)
end
 
Back
Top