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

Reset quests storage in db?

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
Hey how can i reset quests for players? is that in players_storage?
 
ANY player storage:
SQL:
TRUNCATE TABLE `player_storage`;

or specific storages:
SQL:
DELETE FROM `player_storage` WHERE `key` = 100;
DELETE FROM `player_storage` WHERE `key` = 101;
DELETE FROM `player_storage` WHERE `key` = 102;
DELETE FROM `player_storage` WHERE `key` = 103;
etc
 
Last edited:
Back
Top