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

Field makes element hit forever

Paulix

Active Member
Joined
Sep 13, 2012
Messages
129
Solutions
7
Reaction score
26
I'm using this to make a poison skill
Lua:
local condition = createConditionObject(CONDITION_POISON)
setConditionParam(condition, CONDITION_PARAM_DELAYED, 1)
setConditionParam(condition, CONDITION_PARAM_FORCEUPDATE, true)
addDamageCondition(condition, 5, 1000, -400)
The problem is that when a player step on a poison field, and then get hit by the skill, it overwrites the "field" damage, but if the player stays on top of it, it keeps hitting 400 forever until the player leaves the field. how can i make the field don't "keep" the effect while the character is on top of it?
 
Maybe you need to manage the poison field effect by lua, and not by default.
Also I dont know if this work for it, but if you try to manage the condition with subid's?
Lua:
local condition = createConditionObject(CONDITION_POISON, CONDITIONID_DEFAULT)
setConditionParam(condition, CONDITION_PARAM_SUBID, 12345)
setConditionParam(condition, CONDITION_PARAM_DELAYED, 1)
setConditionParam(condition, CONDITION_PARAM_FORCEUPDATE, true)
addDamageCondition(condition, 5, 1000, -400)
 
Maybe you need to manage the poison field effect by lua, and not by default.
Also I dont know if this work for it, but if you try to manage the condition with subid's?
Lua:
local condition = createConditionObject(CONDITION_POISON, CONDITIONID_DEFAULT)
setConditionParam(condition, CONDITION_PARAM_SUBID, 12345)
setConditionParam(condition, CONDITION_PARAM_DELAYED, 1)
setConditionParam(condition, CONDITION_PARAM_FORCEUPDATE, true)
addDamageCondition(condition, 5, 1000, -400)
subid just make both apply at the same time, but if the player is on top of the field the poison hitting 400 stays forever
 
Back
Top