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

Amulet of Loss bug.

Kratte

New Member
Joined
Jan 14, 2009
Messages
2
Reaction score
0
Hello, when players die they dont loose their aol and no exp/skills is lost.

The game world mod is pvp and server is forgotten 3.5

help me please i do have "remove" tag in items.xml
 
Hello, when players die they dont loose their aol and no exp/skills is lost.

The game world mod is pvp and server is forgotten 3.5

help me please i do have "remove" tag in items.xml

1st problem:
Check in Your config line
Code:
deathLostPercent
and setup it to :
Code:
	deathLostPercent = 10

If this dont help check in Your database
Code:
        loss_experience
	loss_mana 
	loss_skills
	loss_containers			
	loss_items
And setup them to 100.

2nd problem :
If u made aol by using command /i Amulet of loss, then aol have 100 charges. Try to buy aol in shop, then check out.
 
yes that is the case, I use gesiors account the the characters that were copied when people make new account, it copied all the items on the 'sample'. Which in this case included the AOL that I created with the /i command, and when you look in the SQL database under player_items you will see indeed that all the AOLs have a count of 100.

Anyways when they are purchased from a shop it will only have a count of 1. To fix all current AOLs, do the following query:
Code:
UPDATE player_items SET count='1' WHERE itemtype='2173'
 
Back
Top