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

All downgrade to level 8 !

dianagirl

Member
Joined
Jul 28, 2009
Messages
429
Reaction score
14
Location
Germany
Hello guys,
anyone know the Command how to downgrade in phpmyadmin everyone to level 8 ?

Not a character reset,just that everyone get level 8.
And not a item reset or smth xD


Thanks alot
repp++
 
All player exp are 4200 and level 8
Take away all storagevalues from players
Reset skills to 10
Take away all items from all characters.
Empty all houses and set them to owner Nobody
PHP:
UPDATE `players` SET `level` = 8, `experience` = 4200, `health` = 185, `healthmax` = 185, `maglevel` = 0, `mana` = 35, `manamax` = 35, `manaspent` = 0, `soul` = 100, `cap` = 470, `skull` = 0, `skulltime` = 0, `blessings` = 0, `stamina` = 151200000, `online` = 0, `promotion` = 0;
DELETE FROM `player_storage`, `player_items`, `player_depotitems`, `tile_items`, `house_lists`, `house_data`, `house_auctions`, `houses`;
UPDATE `player_skills` SET `value` = 10, `count` = 0;
without Take away all items from all characters.
Empty all houses and set them to owner Nobody
PHP:
UPDATE `players` SET `level` = 8, `experience` = 4200, `health` = 185, `healthmax` = 185, `maglevel` = 0, `mana` = 35, `manamax` = 35, `manaspent` = 0, `soul` = 100, `cap` = 470, `skull` = 0, `skulltime` = 0, `blessings` = 0, `stamina` = 151200000, `online` = 0, `promotion` = 0;

use this :p


Update experience aswell lol or would be bugged :p

Fixed :p
 
Back
Top