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

Time paralyze

-.Ktz

New Member
Joined
Feb 11, 2016
Messages
37
Reaction score
1
Hello guys, can you help me?
I'm wanting some examples of how I can do for the player can not withdraw paralyze.
But how so?
Example: the player receives a paralyze and for a certain time (seconds) he can not remove it even using magic utani hur or something in the genre she only comes out when the time runs out

I have no script to start why not do no idea how to start a
 
But when he uses strong stem or rod to paralyze will leave and if I remove the scripts that when a player has in pvp will suffer wanted it to be just for some script so it's complicated
 
Thus, in some script put to give a paralyze with a time of 10 seconds more than the player can not remove and it is stronger
say the player walk more slowly
 
man, try to do this:

Code:
local combat = Combat()
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN)
combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0)

local condition = Condition(CONDITION_HASTE)
condition:setParameter(CONDITION_PARAM_TICKS, 22000)
condition:setFormula(-0.7, -56, -0.7, -56)
combat:setCondition(condition)

function onCastSpell(creature, var)
    return combat:execute(creature, var)
end


its similar to a paralyze and cannot be dispeled
 
Back
Top