Pre-release Commentary |
AQA Text Adventures is a text adventure game, where the player enters text commands to move between locations, use various items and interact with different characters. The program displays text on the screen to show the user the result of their actions and the current state of the game.
When the program begins, there are no items, characters or places in the game. The program asks the user which game file (which will have the .gme file extension) they would like to use. If the program fails to find the file, then a message will be displayed to the player telling them that the game could not be loaded, and the program will terminate. If the file is found, then all of the items, characters and places in that file are loaded into the program, and the game runs as below.
The recognised commands are as follows:
| get | Adds the specified item to the player inventory |
| use | Uses an item in the current place or the player’s inventory |
| go | Moves the player from their current place to the place in the specified direction |
| read | Displays the text of a readable item in the current place or the player’s inventory |
| examine | Provides a description of the specified item, place or character in the current place or the player’s inventory |
| open | Opens the specified item in the current place |
| close | Closes the specified item in the current place |
| move | Moves the specified item in the current place |
| say | Prints the specified input to the screen |
| playdice | Plays a dice game with the specified character in the current place |
| quit | Ends the game |