Skip to content
Manz edited this page Jan 23, 2014 · 2 revisions

This simple game engine is similar to classic interactive text adventure games. If you don't know this games, here a little tutorial.

Move player

You can move around map for main cardinal directions: north, south, east and west. Also can write shortcuts (n, s, e, w) or others predefined directions: enter, exit...

Example:

> north
> go north
> walk to north

If you want know possible exits, write exits (or shortcut x):

Example:

> exits

Set nickname for chat

If you wish play, you should have a nickname. Simply, write nickname [nickname] and system will save it for you:

Example:

> nickname Manz

NOTE: Nickname should be short, with letters and digits. Complex names not allowed. Only one player for user, even with several browsers.

Look inventory

If you want know that items are on your inventory, simply write inventory (or shortcut i):

Example:

> inventory

Look items on room

The main function in game is look. You can look any item on current room:

Example:

> look wall
> look at floor
> look paper

Take items

You can get items on your inventory.

Example:

> take key
> get sunglasses

Chat

Other messages will send like chat-logging on each room.

Enjoy!