| 28 | staticfn boolean com_pager_core(const char *, const char *, boolean, char **); |
| 29 | |
| 30 | short |
| 31 | quest_info(int typ) |
| 32 | { |
| 33 | switch (typ) { |
| 34 | case 0: |
| 35 | return gu.urole.questarti; |
| 36 | case MS_LEADER: |
| 37 | return gu.urole.ldrnum; |
| 38 | case MS_NEMESIS: |
| 39 | return gu.urole.neminum; |
| 40 | case MS_GUARDIAN: |
| 41 | return gu.urole.guardnum; |
| 42 | default: |
| 43 | impossible("quest_info(%d)", typ); |
| 44 | } |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | /* return your role leader's name */ |
| 49 | const char * |
no test coverage detected