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

Windows How to Reset A server

MxSoft

Leave Tibia, Live Life.
Joined
Dec 22, 2009
Messages
1,804
Solutions
1
Reaction score
43
Location
Mexico
Is there a way to reset a server without erasing the accounts?
 
go to database, choose db, choose sql tab and type this

TRUNCATE TABLE accounts

and do the same for players

TRUNCATE TABLE players

Np.
 
dont! lol i was joking. dont use those commands.


Use

UPDATE players set level=8, experience=4200, cap=400, health=185, healthmax=185, mana=35, manamax=35, maglevel=0


and just truncate table items and table items depo, etc..
 
Is this ok?
Do you really want to :TRUNCATE `auction_system`;
TRUNCATE `bans`;
TRUNCATE `bounty_hunters`;
TRUNCATE `deaths_in_wars`;
TRUNCATE `environment_killers`;
TRUNCATE `global_storage`;
TRUNCATE `guilds`;
TRUNCATE `guild_invites`;
TRUNCATE `guild_ranks`;
TRUNCATE `houses`;
TRUNCATE `house_auctions`;
TRUNCATE `house_data`;
TRUNCATE `house_lists`;
TRUNCATE `killers`;
TRUNCATE `name`;
TRUNCATE `players`;
TRUNCATE `player_deaths`;
TRUNCATE `player_depotitems`;
TRUNCATE `player_items`;
TRUNCATE `player_killers`;
TRUNCATE `player_namelocks`;
TRUNCATE `player_skills`;
TRUNCATE `player_spells`;
TRUNCATE `player_storage`;
TRUNCATE `player_viplist`;
 
Code:
DELETE FROM `players` WHERE `name` NOT IN ('[Admin]','Druid Sample','Sorcerer Sample','Knight Sample','Paladin Sample')
/\ TESTED


\/ NOT TESTED
Code:
DELETE FROM `accounts` WHERE `name` NOT IN ('1')
 
Back
Top