|
Want to thank me for making this book available for free? Just buy Special Edition Using Macromedia Director MX
Advanced Lingo For Games
| |
| Game Variations
Like in many word games, the theme of this game can be changed by simply changing the content, rather than the code. In the case of cryptograms, you can have the nature of the phrases used suggest a theme. In addition, there are a few things that can be done to the code to make the game different. Phrase IdeasThe types of phrases that can be used are only limited by your imagination. Here are some suggestions: Humorous Quotations Profound Quotations Useful Sayings Quotes in the News Movie Titles Book Titles Song Title or Lyrics Trivia FactsAdding a TimerA clever programmer might want to attempt to add a timer to this game. The timer can either limit the amount of time the player has to figure out a phrase, or can subtract from the total amount of points that a player earns by solving a phrase. This second idea is much like the timer used in the trivia game in Chapter 13, "Trivia Game.". This turns the game from a quiet pastime to a hectic race. Levels of DifficultyInstead of having the entire game in one frame, you can have the game in several frames, each one calling on a different pool of phrases. Each of these phrase sets can be more difficult, adding more or less letters depending on which you consider more difficult. You can also just keep the game in a single frame and order the phases from easiest to hardest. Allowing SpacesYou may not want to limit the player to just typing the 26 letters of the alphabet. Instead, you may also want to allow them to use the spacebar to clear out a letter. This way, if they think that an "R" equals an "E," and then they realize that "E" is actually some other letter, they can position the text cursor over the "R," and press the spacebar to clear out all of the "R" letters, using an underscore for those once again. HintsWith some additional programming, you could add a hint feature. Perhaps you could make it so than when the player hits a certain key, like a question mark, the program will look to see which character is correct for that cursor slot, and insert it. Give UpIn addition to hints, you may want to allow the player to be able to give up. In this case, you should reveal the entire phrase. You can do this by writing a new handler tha simply sets the encoded phrase to the real one and displays it. | |