init()
{
    add_action("north"); add_verb("north");
    add_action("south"); add_verb("south");
    add_action("east");  add_verb("east");
    add_action("west");  add_verb("west");
}
Beispiel #2
0
init() {
    add_action("null"); add_verb("fnord");
    add_action("null"); add_verb("f");
}
init() {
  add_action("open_door"); add_verb("open");
  add_action("close_door"); add_verb("close");
  add_action("south"); add_verb("south");
}
init()
{
    add_action("up"); add_verb("up");
}
init() {
    add_action ("north"); add_verb ("north");
    add_action ("east"); add_verb ("east");
    add_action ("south"); add_verb ("south");
    add_action ("west"); add_verb ("west");
    add_action ("northwest"); add_verb ("northwest");
    add_action ("northeast"); add_verb ("northeast");
    add_action ("southwest"); add_verb ("southwest");
    add_action ("southeast"); add_verb ("southeast");
#if 0				/* Shouldn't be necessary /Pell */
    add_action ("northwest"); add_verb ("nw");
    add_action ("northeast"); add_verb ("ne");
    add_action ("southwest"); add_verb ("sw");
    add_action ("southeast"); add_verb ("se");
#endif
    add_action ("enter"); add_verb ("enter");
}