#include <thing/properties.h>#include <config.h>#include <language.h>#include <defines.h>
gehe zum Quellcode dieser Datei
Funktionen | |
| void | init () |
| int | imposs () |
Variablen | |
| inherit std thing | commands |
| int imposs | ( | ) |
Definiert in Zeile 34 der Datei commands.c.
Benutzt _notify_fail().
00035 { 00036 switch (query_verb()) 00037 { 00038 case "lies": 00039 _notify_fail("Was moechtest Du lesen?\n"); break; 00040 case "such": case "suche": 00041 _notify_fail("Du suchst, findest aber nichts.\n"); break; 00042 } 00043 return 0; 00044 }

| void init | ( | ) |
Definiert in Zeile 23 der Datei commands.c.
Benutzt init().
00024 { 00025 ::init(); 00026 00027 add_action("imposs", "lies"); 00028 add_action("imposs", "such"); 00029 add_action("imposs", "suche"); 00030 }

Definiert in Zeile 13 der Datei commands.c.
1.6.3