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

Dies and does not lose skills with mysql

xitos

New Member
Joined
Oct 14, 2008
Messages
213
Reaction score
1
Hiho :thumbup:

The Forgotten Server, version 0.3.5 (Crying Damson)

so that the error when you open the server:

WARNING: max_allowed_packet might be set too low for binary map storage.
Use the following query to raise max_allow_packet: SET GLOBAL max_allowed_packet = 16776192;


but do not know if this is the error


when I use ot in mysql when you die is not lost skills, magic level and not some aol

but when I put the ot in sql in config.lua the bug goes away
someone help me?

thanks !!
 
Go to your databse and change the skillslost, levelslost ect also you can check in your config.lua and search for the deathlost line and set there a number.

Rep me++
 
First off put your server to mysql.

When you are in your database execute these sql commands separately:

UPDATE players SET loss_experience=10

UPDATE players SET loss_skills=10

UPDATE players SET loss_mana=10

Remember to change the "10" to whatever your desired % is.
 
First off put your server to mysql.

When you are in your database execute these sql commands separately:

UPDATE players SET loss_experience=10

UPDATE players SET loss_skills=10

UPDATE players SET loss_mana=10

Remember to change the "10" to whatever your desired % is.

Do this in schema.sql?

have it there:

loss_experience `` INT NOT NULL DEFAULT 100,
loss_mana `` INT NOT NULL DEFAULT 100,
loss_skills `` INT NOT NULL DEFAULT 100,
loss_containers `` INT NOT NULL DEFAULT 100,
loss_items `` INT NOT NULL DEFAULT 100,

level loses not only lose skill and magic level and aol
 
Last edited:
UP :D

remembering that when it loses in sql magic skill level

when it loses so on mysql level

skill and magic level does not lose


is it only I have this problem?

I use the latest version of tfs


thanks for being helping :wub:
 
Back
Top