• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

DATABASE COMAND* REPP U ++ [help] easy

Discovery

Developing myself
Joined
Apr 16, 2010
Messages
562
Solutions
11
Reaction score
261
Location
Neverland
The command used to delete certain items from the database. Example I want to delete the money from the server. Thanks rep + up +
:w00t:
 
SQL:
DELETE FROM player_items WHERE itemtype = 2160 or itemtype = 2152 or itemtype = 2148;
UPDATE players SET balance = 0;
First line deletes all gold, platinum and crystal coins, second line resets players' balance (if you use bank system)
 
Last edited:
SQL:
DELETE FROM player_items WHERE itemtype = 2160 or itemtype = 2152 or itemtype = 2148;
UPDATE player SET balance = 0;
First line deletes all gold, platinum and crystal coins, second line resets players' balance (if you use bank system)
thanks, I needed
 
Back
Top