For users of the store hack verson of the hangman.php file ONLY
I'm really surprised this question wasn't asked a few times already. Here's a way to customize this for users of the Store Hack version of the hangman.php file
To change the amount of deducted points from the loser:
Find:
PHP Code:
$points=$user[storep];
$points = $points - 50;
Change the value of 50 to however many points you wish to deduct from the loser.
To change the amount of added points given to the winner:
Find:
PHP Code:
$points=$user[storep];
$points = $points + 100;
Change the value of 100 to however many points you wish to give to the winner.
Have fun