Error when attempting to "Reset the RPG User data" via Maintenance. (This has happened multiple times since I installed it this morning.)
Code:
Database error in vBulletin 3.5.4:
Invalid SQL:
UPDATE `rpg_user`
SET
`wins` = '0', `losses` = '0', `draws` = '0', `retreats` = '0',`xp` = '0'`alignmentid` = '1', `classid` = '1', `genderid` = '1', `raceid` = '1', `typeid` = '1';
MySQL Error : You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'alignmentid` = '1', `classid` = '1', `genderid` = '1', `raceid`
Error Number : 1064
Doh! After looking over it closer I think I see the problem...
Right now it reads:
Code:
,`xp` = '0'`alignmentid` = '1'
But it should read:
Code:
,`xp` = '0', `alignmentid` = '1'
Right?? I'm not really good with PHP or SQL code so I'm just taking a guess.
Ok, new problem. When resetting my character I get this error message:
Code:
Fatal error: Call to a member function on a non-object in /forum/includes/class_rpg_battle.php on line 455
Once again nevermind. Maybe in the next version you can have a message to inform somebody they are in the middle of a battle and that's why they can't reset their character.