Trying to reset the password on an account since the player forgot it.
How would I go about doing this?
Whether it is prompting a player to enter a new password or by changing it myself?
Password Reset
Re: Password Reset
Can only be done via mysql query on the gamer server's database. Its the standard password routine built into mysql.
Deprecated, but still works so far as I am aware:
See also: wiki page with useful queries
Deprecated, but still works so far as I am aware:
Code: Select all
UPDATE accounts SET password = PASSWORD("NEW_PASSWORD_HERE") WHERE login = 'ACCOUNT_NAME_HERE';
Hi, I run The Demiurge server.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
DO NOT PRIVATE MESSAGE ME ABOUT BUGSPLS USE [ code ] CODE TAGS [ /code ] WHEN POSTING CODE