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

Transform system problem with hp/mana

Untitleed

New Member
Joined
Aug 1, 2017
Messages
50
Reaction score
3
Hiho, i have problem with hp/mana save after logout this can be stack
example: i have 250 hp and mana, transform gave me 50hp/mana, after logout i have 300 hp/mana the same transform gave me 50 hp/mana and it can be stacked someone know how to solve this ?

Transform system [table included]
this is transform system.
 
gotta use conditions for max hp/mana on 0.x

Lua:
local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_STAT_MAXHEALTH, i)
setConditionParam(condition, CONDITION_PARAM_SUBID, subId)
doAddCondition(cid, condition)
 
gotta use conditions for max hp/mana on 0.x

Lua:
local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_STAT_MAXHEALTH, i)
setConditionParam(condition, CONDITION_PARAM_SUBID, subId)
doAddCondition(cid, condition)

where should i put it ?
 
Last edited:
Back
Top