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

Problem with my paralyze rune

Xarly

Member
Joined
Mar 9, 2015
Messages
360
Reaction score
20
Hello guys well i got a problem when i use the paralyze rune on my server if i use it on a player after he use haste,or healing he get a little stuck, and too if i use it on a rat they get full stuck and if i push that it move looks like a lvl 300 XDD that's my paralyze rune spell
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, -550)
setConditionFormula(condition, -0.9, 0, -0.9, 0)
setCombatCondition(combat, condition)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end

if some one can help me with that^^ thanks guys
 
Back
Top