Huge bug..
hangman.php?letters=ABCDEFGHIJKLMNOPQRSTUVWXYZ&n=3 3
Change the number 33 to another.. and always win ;-(
Or.. go back and try again with another letter ;-(
This two bugs have problems with de STORE HACK.. because the users steal points..
Another thing..
The store hack add on.. is wrong..
Missin' 1 line...
The original says (if lose)
PHP Code:
$user = $DB_site->query_first("SELECT userid,username,storep,usertitle FROM user WHERE userid=$bbuserinfo[userid]");
$points=$user[storep];
$points = $points - 50; \\Points
Add the last line.. to do the query
PHP Code:
$user = $DB_site->query_first("SELECT userid,username,storep,usertitle FROM user WHERE userid=$bbuserinfo[userid]");
$points=$user[storep];
$points = $points - 50;
$DB_site->query("UPDATE user SET storep='$points' WHERE userid=$bbuserinfo[userid]");
If not.. the user never lose points.
we have not been able to fix this bug that makes all of our users win