Page 1 of 1

Password Reset

Posted: Mon Apr 10, 2017 2:54 pm
by sekigah
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?

Re: Password Reset

Posted: Tue Apr 11, 2017 2:57 pm
by TeoTwawki
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:

Code: Select all

UPDATE accounts SET password = PASSWORD("NEW_PASSWORD_HERE") WHERE login = 'ACCOUNT_NAME_HERE';
See also: wiki page with useful queries