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

Solved Rings,amulets,boots stop working on login

Gsp

RP
Joined
Jan 3, 2008
Messages
250
Solutions
1
Reaction score
4
Everything works without a problem but when I relog with a stealth ring for example, I am no longer invisible. It is the same with amulets and boots. I have to remove them and wear them again to make them work. What is the problem? using 0.4 8.6
 
Look in creaturescripts for scripts with type login, it can also be in mods.
Then look for this
Code:
doRemoveConditions(cid, false)
Change it to this
Code:
doRemoveConditions(cid)

If it isn't removing a certain condition from an event that it should after changing this, you can remove it by removing that specific condition.
Example:
Code:
if getCreatureCondition(cid, CONDITION_OUTFIT) then
       doRemoveCondition(cid, CONDITION_OUTFIT)
end
 
thanks Limos you are the best
i searched for
doRemoveConditions(cid, false)
and found one line on team battle event
changed it to
doRemoveConditions(cid)
problem solved. <3
 
Back
Top