Prev: 42673 Up: Map Next: 42728
42703: Response: "You're Not Carrying Anything"
Used by the routine at 43944.
Response_YoureNotCarryingAnything 42703 LD A,(41170) Jump to Response_YouAreCarrying if *Count_InventoryItems is not 0.
42706 AND A
42707 JR NZ,Response_YouAreCarrying
Print "You're not carrying anything.".
42709 LD HL,32 HL=Messaging_YoureNotCarryingAnything.
42712 CALL PrintCompressedStringAndNewline Call PrintCompressedStringAndNewline.
42715 RET Return.
Print "You are carrying:-".
Response_YouAreCarrying 42716 LD HL,33 HL=Messaging_YouAreCarrying.
42719 CALL PrintCompressedStringAndNewline Call PrintCompressedStringAndNewline.
42722 LD A,1 Call PrintObjects with a room ID of 1 which is the players inventory.
42724 CALL PrintObjects
42727 RET Return.
Prev: 42673 Up: Map Next: 42728