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

The Forgotten Server - Version 0.3 (Crying Damson).

nah
use this Sql Command
Code:
UPDATE `DATABASE_NAME`.`players` SET `loss_skills` = '0';
DATABASE_NAME is your server database name
 
sorry but where do i put that command? :/

If you are using PhPmyadmin, follow these steps:

1. go too your phpmyadmin page.
2. Locate your otserver database ( often called "otserv" or something similar )
3. When you click your database, at the very top of the screen there is a tab named "SQL", click it.
4. When you've clicked it a white box will appear, input what @seleo wrote
Code:
UPDATE `DATABASE_NAME`.`players` SET `loss_skills` = '0';
and click "Go" located at the bottom right



DONT FORGET TO REPLACE "DATABASE_NAME" WITH YOUR ACTUAL DATABASE NAME
 
You can add this to login.lua
Code:
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0)
Other options
Code:
PLAYERLOSS_EXPERIENCE
PLAYERLOSS_MANA
PLAYERLOSS_SKILLS
PLAYERLOSS_CONTAINERS
PLAYERLOSS_ITEMS

You can aso change deathLostPercent in config.lua.
 
Back
Top