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

Thefogottenserver questions!

Saj

Remember my name
Joined
Feb 26, 2008
Messages
2,127
Reaction score
6
My first question is:
Is there anyway too crash the server?

This is my story.

I host my server for like 1 month and it never crashed before, now someone is crashing it.. I don't know how, I don't get ANY errors on my console, it just come a pop up with : Send or not send.. and I have to press on something to shut it down.. I really need help, if you can help me, please tell me..

I use tfs 0.10 version, and if I use the newest one, it takes much cpu ( dunno why)
 
It sometimes happen onmy server too (very rare).

Then I reset all player positions, conditions and items attributes.

Code:
UPDATE `players` SET `posx` = 'templex', `posy` = 'templey', `posz` = 'templez';
UPDATE `players` SET `conditions` = '';
UPDATE `player_depotitems` SET `attributes` = '';
UPDATE `player_items` SET `attributes` = '';
UPDATE `tile_items` SET `attributes` = '';
 
The code is a MySQL query, you can execute with phpmyadmin.

You need to change the templex, templey and templez to the temple position (or other position where you want the players login).

The first line will reset all player positions to temple (sometimes a player is on a bugged tile o the map, then when he try to login the server crash).

The second line will be clean all player conditions (fire, poison, etc).

The last 3 lines will clean all item attributes (sometimes some items get bugged and may crash the server, soft boots for example).
 
That means it will remove attributes from the items. Suchas the timeleft of an energy ring has.
 
Back
Top