My version of the classic word guessing game, Hangman. I'm sure there are much better/easier ways of making this game, and it's probably more elaborate than it needs to be, but it seems to work. Maybe I'll refine it a bit at some point. I wrote this from sratch, it is not based on anyone else's code, so if you use it, or modify it, please give me a little credit. It is all that I ask.
When playing, enter "/q" (or "/end", "/exit", or "/quit") as a guess to quit the game.
You can make your own txt file of words by following these three easy steps:
- Create a new txt file, called "words.txt" in the same folder as the game.
- Open the txt file and enter each word on it's own line.
- Save the txt.
- Game keeps score.
- 3 main difficulty levels, determining the players starting men (lives).
- Words separated into 3 "word levels", depending on word length. When a player solves (or doesn't solve) all of the words in a level, the player is moved to the next level.
- Words stored in an easy to edit text file.
- Displays the "hidden" word, with any rightly guessed letters revealed.
- Displays all of the letters player has guessed for a word, in alphabetical order.
- No duplicate words. Once a word is solved (or not), it's removed from the list.
- When all of the words from every list have been solved (or not), the game ends.
- Awesome ASCII art hangman! Okay, so it's not that awesome.
[Hangman Wikipedia Article](http://en.wikipedia.org/wiki/Hangman_(game\))