Prev: A6B1 Up: Map Next: A6E8
A6CF: Response: "You're Not Carrying Anything"
Used by the routine at ABA8.
Response_YoureNotCarryingAnything A6CF LD A,($A0D2) Jump to Response_YouAreCarrying if *Count_InventoryItems is not 00.
A6D2 AND A
A6D3 JR NZ,Response_YouAreCarrying
Print "You're not carrying anything.".
A6D5 LD HL,$0020 HL=Messaging_YoureNotCarryingAnything.
A6D8 CALL PrintCompressedStringAndNewline Call PrintCompressedStringAndNewline.
A6DB RET Return.
Print "You are carrying:-".
Response_YouAreCarrying A6DC LD HL,$0021 HL=Messaging_YouAreCarrying.
A6DF CALL PrintCompressedStringAndNewline Call PrintCompressedStringAndNewline.
A6E2 LD A,$01 Call PrintObjects with a room ID of 01 which is the players inventory.
A6E4 CALL PrintObjects
A6E7 RET Return.
Prev: A6B1 Up: Map Next: A6E8