Version: 1.00, by Erwin
Developer Last Online: May 2013
Version: 2.3.x
Rating:
Released: 10-23-2002
Last Update: Never
Installs: 100
No support by the author.
vB Hangman 1.2
---------------------
The classic word game is now integrated into your forums.
Features :
------------
1) Allow/ Disallow guest access to Hangman in Admin CP
2) Set number of attempts in Admin CP
3) Add words in Admin CP
4) Use words of any length
5) Use as many words as you want
6) Put in a SENTENCE, or MULTIPLE WORDS
7) Ability to use NUMBERS and CHARACTERS like ! or ?
8) Totally integrated into your forums, with your forum colors and layout
9) Easy installation file that you run to automatically add database settings
10) Store hack version of the hangman.php courtesy of Zajako
Installation :
---------------
Simple.
1) Upload vbhangman_install.php to your admin directory, and run it, and then follow the instructions (you can run it again to uninstall this hack). This will add settings to your database automatically. Delete this file after you have done this.
2) Upload hangman.php to your forum directory.
3) Make a hangman subdirectory in your images directory. Upload the image files to the images/hangman subdirectory.
4) Make a new template "hangman" and add the contents of the hangman.txt file into this.
5) Go to your Admin CP, then to the vBulletin Options section, and set whether you want guests to have access to Hangman, how many attempts you allow (default is 6, any higher and you will need to add your own custom hangman images), and then add your words. Separate each word or words or each sentence with a comma. For example...
hello,yahoo!,3 blind mice,12 apostles,vbulletin,good morning,good afternoon,this is cool
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
Change the number 33 to another.. and always win ;-(
Or.. go back and try again with another letter ;-(
It's not a bug, but the way the hack is written. If your members want to cheat like that, go ahead!
Quote:
This two bugs have problems with de STORE HACK.. because the users steal points..
What
Another thing..
The store hack add on.. is wrong..
Missin' 1 line...
Zajako wrote the Store Hack integration. I don't use the Store Hack so I cannot comment or fix this "bug". This hack was never meant to be integrated with the Store Hack.