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

Lua Paralyze Rune

FaNtA91

New Member
Joined
Mar 17, 2010
Messages
166
Reaction score
2
Hello all i have a bug Paralyze rune not working i have try 9 script to it and no one working it only working on 1 mob i have see and its rat`s any one know why i dont think its Paralyze tune.lua I think some other is wrong
 
Not as a download file -.- post it here like this:
Code:
	<rune name="Paralyze" id="2278" allowfaruse="1" charges="1" lvl="54" maglv="18" exhaustion="2000" mana="200" needtarget="1" blocktype="solid" script="support/paralyze rune.lua"/>
 
Rune
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)

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

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

Spell
<rune name="Paralyze" id="2278" allowfaruse="1" charges="1" lvl="54" maglv="18" exhaustion="2000" mana="1400" needtarget="1" blocktype="solid" script="support/paralyze rune.lua">
<vocation name="Druid" showInDescription="0"/>
<vocation name="Elder Druid" showInDescription="0"/>
</rune>
 
Back
Top