You could also run a query on the database.
Code:
Run the Query:
UPDATE user AS user
SET token = concat(MD5(concat(MD5('pass1234'), user.token)),' ', user.token), scheme = 'legacy'
WHERE userid = 1;
The above will reset the password of user with userid = 1 to pass1234. Change the userid if your Admin account is not userid 1.
*NOTE* - If you have a table prefix setup in your config.php file then you must put the table prefix in front of the first "user" on the first line.
Example:
UPDATE vb_user AS user
SET token = concat(MD5(concat(MD5('pass1234'), user.token)),' ', user.token), scheme = 'legacy'
WHERE userid = 1;
The above query is if vb_ is the table prefix.