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

Delay on SD and Heal Paralyse with exura,exura gran etc

xitos

New Member
Joined
Oct 14, 2008
Messages
213
Reaction score
1
I'm with a problem

when taking paralyze monsters or players

the magic heal takes to get the paralyze

not to take the walking paralyze

only with utani hur, hur gran etc

and hold the hotkey in sd it takes time to go

have these problems delay

Thanks ! :thumbup:
 
delay on using potions, runes and items is in Config.lua search for it.
delay for spells are in data/spells/scripts example in data/spells/scripts/support/haste.lua -> setConditionParam(condition, CONDITION_PARAM_TICKS, 33000)
33000 is in milisecond
 
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

local condition = createConditionObject(CONDITION_HASTE)
setConditionParam(condition, CONDITION_PARAM_TICKS, 33000)
setConditionFormula(condition, 0.3, -24, 0.3, -24)
setCombatCondition(combat, condition)

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


this is used for utani hur ...

and this with a little delay when
sd uses and to get the paralyze also

for example not to take the walking paralyze

is giving exura and nothing happens

i have to stop the character to get the exura for heal paralyze
 
Last edited:
Delay in runes atack and heal paralyse

I will try to explain better

when I'm pressing hotkey to attack runes, runes take a little longer to get out, not 2 seconds flat, 2.5 to 3 seconds

and when the player gets paralyze, I use exura or any cure spell, paralysis takes about 2 seconds to go, and do not leave if the character is walking, you must stop the character to use to exit the exura paralyze, why if it is going to paralyze and giving exura paralysis does not leave the char, :thumbup:
 
Because that is how paralyze is intended to work...

but when he's walking and monster attacks paralyze on you

you can not strip it with exura, WALKING can not get to paralyze

have to stop and use exura to paralyze the end

and sd runes and attack with a delay are very annoying

can not handle the Hotley :/
 
I believe the exaust duration of runes/attack spells are set in the config.lua.

The way paralyze behaves are set in the source and can't be changed without sourcecode modifications.
 
Back
Top