Skip to content

Commands: How to Use Them

drossos edited this page Jun 1, 2017 · 5 revisions

Commands

All commands use the command word as the first part of the command. Example "go ", "open"

Go

This command takes the Go as the command and then requires you to have a direction to follow. This will then inform you if the command was successful or if there is something obstructing your path like the door being locked or no door being in the direction. Example of command, "Go North", "Go South"

Quit

This command just closes the Zork game. Example "Quit"

Help

Prints message to console with information to aid the player with their current circumstance. Example "Help"

Check

Lets you check the condition or information of an item,area or yourself. There is 6 different types of things you can check. These are all the possible types of check

  • "check room" --> Displays information about the room you are currently in
  • "check items in chest" --> Displays the items inside a chest as long as it is unlocked and there is a chest in the room
  • "check inventory" --> Displays the inventory that your character currently has
  • "check stats" -->Displays the stats of you character
  • "check body" -->Displays all equipped items
  • "check ammo in (ranged weapon in inventory)" --> Displays the amount of ammo in a ranged weapon you have in your inventory

Grab

Allows you to grab an item from a room or from a chest inside a room. Grabbing an Item first checks if you have enough room in your inventory to grab it and if you do it removes it from the room or chest and adds it to your inventory. To get an item from a chest the chest must first be unlocked.

  • "grab key"
  • "grab sword from chest"

Attack

When in combat this method allows you to attack with a weapon to do damage. You will always be able to attack enemies with your 'fists' since it is a melee weapon that you will always have on your character

  • "attack grunt with stick"

Unlock

This allows the player to unlock doors and chests. After unlocking a door it will allow you to go through the door and progress to the next area. To unlock doors you have to After unlocking a chest it allows you to see and and obtain the items inside the chest. To unlock something you must use a key that matches the type of the thing that is locked. After you successfully unlock something with a key, that key is discarded so you can't constantly keep using the same key to unlock things.

  • In the game the concept of key is more abstract meaning that items that are not just keys can "unlock" areas that are "locked" by things that are not necessarily a lock (A vaporizer and thick trees)
  • "unlock north with Door_Key"
  • "unlock chest with Ancient_Key"

Drop

This allows you to drop items from your inventory. Once dropped from your inventory it gets added to the room that you were currently in when you dropped it. Inventory is limited so this will be useful throughout the game.

  • "drop pistol"

Use

Use is for consuming consumable items. These items permanently boost selected stats when consumed. After consumption the item is removed from the inventory permanently.

  • "use potion"

Equip and Unequip

These method either equip or unequip a piece of armour. The player is only allowed to equip one of each type of armour at one time (only one piece of head armour at a time etc). This allows for the player to not stack and wear unlimited armour. If you try to equip a piece of armour that already has a piece of the same type equiped it will switch the two pieces of armour out.

  • "equip boots"
  • "unequip helmet"

Teleport

After reaching the end of the first world you gain the ability to travel to the second world (second map set). Then get to the end of this map to beat the game!

  • "teleport to jupiter"