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

die not lose eq?

brendan2

Sensation black
Joined
Feb 19, 2009
Messages
507
Reaction score
1
How do you make it so you dont lose items when you die.
i dont want aol's i just want people not to lose eq? anyone have a link on how to do this a script anything i rep++
 
In database find line in players
Code:
loss_containers
loss_items

And set them to 0 :)

And in sql execute
Code:
UPDATE `players` SET `loss_containers` = 0;
and
Code:
UPDATE `players` SET `loss_items` = 0;

:)
 
Back
Top