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

Is it even possible?

Believer

Aashora.net
Joined
Aug 26, 2010
Messages
423
Reaction score
7
Location
Far away from home.
Hello, Is it possible to make an reset that only REMOVES Quests, items, houses AND NOT Skills?
etc. you get hacked on your char which is level 300 and the hacker took everything, every item, every house you had and left it with the skills only.. also, the quests are automaticlly gone like you just created the character except that it is on level 300 with good skills!

-Is there any script for that?

Greatful for answers
Yours Believer:thumbup:
 
delete from player_storage where id = 'playerguid'
delete from player_items where id='playerguid' etc
dont know how you handle the houses, but you should find a way(I belive)(possible that id have another name like player_id, just check it)
 
delete from player_storage where id = 'playerguid'
delete from player_items where id='playerguid' etc
dont know how you handle the houses, but you should find a way(I belive)(possible that id have another name like player_id, just check it)

>player guid
>apostrophe
>string
>trolling
 
as far as i understand you guys i should do this in phpmyadmin?

delete from player_storage where id = 'player guid'
delete from player_items where id='player guid'

delete from player_storage where id = 'apostrophe'
delete from player_items where id='apostrophe'

delete from player_storage where id = 'string'
delete from player_items where id='string'

delete from player_storage where id = 'trolling'
delete from player_items where id='trolling'

Please explain what will happens if i execute these in phpmyadmin?
 
Last edited:
truncate table `player_storage`;
truncate table `player_items`;
truncate table `player_depotitems`;
truncate table `tiles`;
truncate table `tile_items`;

maybe houses either
 
truncate table `player_storage`; = removes what?
truncate table `player_items`; = Removes items?
truncate table `player_depotitems`; = removes items in depot?
truncate table `tiles`; = what does this doo?
truncate table `tile_items`; = and this?

PLease explain!!

ALso, this:


delete from player_storage where id = 'player guid'
delete from player_items where id='player guid'

delete from player_storage where id = 'apostrophe'
delete from player_items where id='apostrophe'

delete from player_storage where id = 'string'
delete from player_items where id='string'

delete from player_storage where id = 'trolling'
delete from player_items where id='trolling'
 
Back
Top