; Headless Chicken -- runs around like a headless chicken ; basicly adds throttle to Mad Duck, plus better heat disapation ; By Timm Murray #config scanner=3 #config weapon=5 #config armor=2 #config engine=0 #config heatsinks=2 #config mines=0 #config shield=0 #msg Hit me! opo 17, 4 ; narrow scan arc (4) opo 11, 100 ; get moving (1) mov ax, 1 ; overburn . . . (1) int 4 ; . . . on! (1) :10 opo 14, 8 ; turn (4) ipo 2, ax ; get heat level (4) cmp ax, 200 ; too hot? (1) jge 10 ; if so, loop back (0) ipo 7, ax ; get target (5) cmp ax, MAXINT ; anything out there? (1) jeq 10 ; if not, try again (0) opo 15, 2 ; fire! (7) opo 15, 0 ; fire! (7) opo 15, -2 ; fire! (7)