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

Good paralyze rune? anyone

adesca

New Member
Joined
May 25, 2009
Messages
39
Reaction score
0
using TFS 0.3.4spl2

the paralyze rune i have suck soo bad...


i need agood one , that if someone get paralyzed and he try to move, then he wont be able ot use pots while hes moving , and the delay to take out my paralyze is like 1 /2 secs , and i guess eomtimes it doesnt even take it out ;P


idont know what happen , someone can help me to improve the paralyze rune and the deay it takes spells to take it out?
thanks
 
data/spells/scripts/support/paralyze rune.lua

This one is good.

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.6, 0, -0.6, 0)
setCombatCondition(combat, condition)

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