VB Hangman for VB3.5

leonpadi

New Member
###### Instructions ######

1) 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) Import the file product-hangman.xml as a new product.

5) Login to your admincp. Under the Options section click vBulletin Options and select vB Hangman from the list. Here you can set whether you want guests to have access to Hangman, how many attempts to allow (default is 6, any higher and you will need to add your own custom hangman images), and then add your words or phrases separated by a comma.

6) Go to yoursite.com/forums/hangman.php and play.

Done!

Tested and working on 3.6.7 pl2
Helpfull Info: If your language is different than english you may edit the hangman.php , find the number 26 (english)...
for ($c=0; $c<26; $c++)
...and replace it with the number of the letters which has YOUR language (ex. 24)...
for ($c=0; $c<24; $c++)
...and then put yours language letters in place of ...
$alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
...i hope you understand what i'm trying to say here :)

Please do not ask for support about coding this script as i am not a good scripter, i was just testing things and found that way of making hangman available for different (from english) language.
 
Top