| Alien (BUGFIX 1.7) | Routines |
| Prev: 39159 | Up: Map | Next: 39213 |
|
In the room view: if the viewed crew member holds a Tracker in the front hand, and its NearRoomList entry reads 255 (motion detected next door — the sweep at 38903), the tracker beeps every 8th pass; if he carries the caught cat instead, msg #19 "Jones is looking uneasy" fires.
Used by the routine at 38379.
|
||||
| 39171 | LD A,(31252) | room view on screen (mode 1)? | ||
| 39174 | CP 1 | |||
| 39176 | RET NZ | no: done | ||
| 39177 | LD A,(31241) | C = the viewed crew member's | ||
| 39180 | ADD A,160 | front-hand marker | ||
| 39182 | LD C,A | |||
| 39183 | LD HL,33692 | is he holding Tracker #1? | ||
| 39186 | LD A,(29946) | |||
| 39189 | CP C | |||
| 39190 | JR Z,39213 | yes: beep check on entry 0 | ||
| 39192 | LD A,(29947) | Tracker #2? | ||
| 39195 | INC HL | |||
| 39196 | CP C | |||
| 39197 | JR Z,39213 | yes: beep check on entry 1 | ||
| 39199 | INC HL | the caught cat? | ||
| 39200 | LD A,(29960) | |||
| 39203 | CP C | |||
| 39204 | JR Z,39228 | yes: unease check on entry 2 | ||
| 39206 | LD A,(29961) | |||
| 39209 | CP C | |||
| 39210 | JR Z,39228 | |||
| 39212 | RET | holding no detector | ||
| Prev: 39159 | Up: Map | Next: 39213 |