Zesstra | 1862697 | 2017-01-31 10:38:27 +0100 | [diff] [blame^] | 1 | GetInfoArr() |
| 2 | ============ |
| 3 | |
| 4 | FUNKTION |
| 5 | -------- |
| 6 | :: |
| 7 | |
| 8 | static mixed *GetInfoArr(string str) |
| 9 | |
| 10 | DEFINIERT IN |
| 11 | ------------ |
| 12 | :: |
| 13 | |
| 14 | /std/npc/info.c |
| 15 | |
| 16 | ARGUMENTE |
| 17 | --------- |
| 18 | :: |
| 19 | |
| 20 | string str - Schluesselwort der Frage |
| 21 | |
| 22 | BESCHREIBUNG |
| 23 | ------------ |
| 24 | :: |
| 25 | |
| 26 | Sucht nach einem Schluesselwort in den abgelegten Antworten |
| 27 | und gibt die Informationen oder einen 0er-Array zurueck. |
| 28 | |
| 29 | BEMERKUNGEN |
| 30 | ----------- |
| 31 | :: |
| 32 | |
| 33 | Ueberschreibbar :) |
| 34 | |
| 35 | RUECKGABEWERT |
| 36 | ------------- |
| 37 | :: |
| 38 | |
| 39 | Siehe Parameter von AddInfo: |
| 40 | |
| 41 | Array mit: |
| 42 | ({ <Infostring> (0 fuer keine Antwort), |
| 43 | <Indent-String> (Default: 0), |
| 44 | <Silent> (Default: 0), |
| 45 | <Casebased> (Default: 0) |
| 46 | }) |
| 47 | |
| 48 | SIEHE AUCH |
| 49 | ---------- |
| 50 | :: |
| 51 | |
| 52 | Verwandt: AddInfo, do_frage |
| 53 | |
| 54 | 31.Mar 2007 Gloinson |
| 55 | |