• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Paralyze script.

Potar

SocialWorld
Senator
Joined
Mar 1, 2009
Messages
1,661
Reaction score
125
Location
Warsaw, Poland
Hello, i looking for paralyze rune script.
I tested 4 scripts, and this is not perfect, you can use antyparalis elfbot script and there isn't any effect.

Anyone have good paralyze rune?
-Now i have only stop rune not paralyze...

Rev. 3777 (0.4).
 
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
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)
if(not doCombat(cid, combat, var)) then
return false
end

doSendMagicEffect(getThingPosition(cid), CONST_ME_MAGIC_GREEN)
return true
end
Try this xD
 
Back
Top