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

Windows Paralyze=Crash the server

blazeradis

http://luminera.zapto.org
Joined
Apr 7, 2010
Messages
105
Reaction score
2
Hi everyone i got a problem when I use the paralyze at someone the server crash after 4 secs..

Regards / Adis

Ill rep the one that helps me ;)
 
Post your paralyze.lua script?

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
 
Back
Top