Prev: 6B0E Up: Map Next: 6B3B
6B32: Send a character on a mini-walkabout
The address of this primary command routine is placed into bytes 0x63 and 0x64 of a character's buffer by the routine at 6B3D. It either sends the character to his next walkabout destination (the walkabout origin or some spot within 7 spaces to the left of it), or moves to the next command in the command list if the designated number of walkabouts has been completed.
Input
H Character number (0x98-0xA9)
6B32 LD L,$67 Decrement the walkabouts counter in byte 0x67 of the character's buffer
6B34 DEC (HL)
6B35 JP Z,$62A8 Move to the next command in the command list if all the walkabouts have been done
6B38 JP $62E5 Otherwise go for another mini-walkabout
Prev: 6B0E Up: Map Next: 6B3B