[Archive] How Do I: Reset Achievements?
[Archive] How Do I: Reset Achievements?
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Hi! I accidentally leveled a character to level 85 and triggered the "1st In Server To Level 80" achievement... Is there a way to reset this for the realm? Thanks!
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Hi there,
character_achievement is the one that should handle it.
In character_achievement_progress you can see the achievements that are in progress.
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Notice : While having .gm on you actually don't trigger the achievements ![]()
Something to bare in mind next time
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Got it! Thanks!
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Ha ha ha... I know right. Note to self: never let wife have admin rights... she's the one who triggered it lol
Quote:DGLim said:xD.. Oh well!
Ha ha ha... I know right. Note to self: never let wife have admin rights... she's the one who triggered it lol
Click to expand...
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Quote:DGLim said:xD.. Oh well!
Ha ha ha... I know right. Note to self: never let wife have admin rights... she's the one who triggered it lol
Click to expand...
Quote:DGLim said:Shit happens. That's what i usually say!
Ha ha ha... I know right. Note to self: never let wife have admin rights... she's the one who triggered it lol
Click to expand...
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Quote:DGLim said:Shit happens. That's what i usually say!
Ha ha ha... I know right. Note to self: never let wife have admin rights... she's the one who triggered it lol
Click to expand...
Archived author: WorldofNoLifer • Posted: 2025-11-04T18:16:29.143358
Original source
Here your script:
Code:
[COLOR="#006400"]-- Deleting Realm First! Level 80[/COLOR]
[COLOR="#0000FF"]SET[/COLOR] @achievement := 457;
[COLOR="#0000FF"]SET[/COLOR] @criteria := 5212;
[COLOR="#0000FF"]SET[/COLOR] @GUID :=([COLOR="#0000FF"]SELECT[/COLOR] `guid` [COLOR="#0000FF"]FROM[/COLOR] `character_achievement` [COLOR="#0000FF"]WHERE[/COLOR] `achievement` = @achievement);
[COLOR="#0000FF"]DELETE FROM[/COLOR] `character_achievement` [COLOR="#0000FF"]WHERE[/COLOR] `achievement` = @achievement;
[COLOR="#0000FF"]DELETE FROM[/COLOR] `character_achievement_progress` [COLOR="#0000FF"]WHERE[/COLOR] `guid`= @GUID [COLOR="#0000FF"]AND[/COLOR] `criteria` = @criteria;
This is for characters db.