Query To Wipe All Game Play History

Kevin

Code Monkey
Staff member
If you have a need, or just want to, wipe out all of your game play history then the below query (as of today) will do the job. For those working with the alpha & beta releases, this is something you might find handy for resetting user scores.

DISCLAIMER: USE AT YOUR OWN RISK. What works for one person on one server may not be the same solution you need on your server. If you are not comfortable running this query then don't do it!
Code:
update xf_arcade_game set highscore = 0, highscore_user_id = 0, highscore_date = '';
delete from xf_arcade_game_play;
delete from xf_arcade_session;
 
Back
Top