| 23 | staticfn void prisoner_speaks(struct monst *); |
| 24 | |
| 25 | staticfn void |
| 26 | on_start(void) |
| 27 | { |
| 28 | if (!Qstat(first_start)) { |
| 29 | qt_pager("firsttime"); |
| 30 | Qstat(first_start) = TRUE; |
| 31 | } else if ((u.uz0.dnum != u.uz.dnum) || (u.uz0.dlevel < u.uz.dlevel)) { |
| 32 | if (Qstat(not_ready) <= 2) |
| 33 | qt_pager("nexttime"); |
| 34 | else |
| 35 | qt_pager("othertime"); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | staticfn void |
| 40 | on_locate(void) |