![]() |
Routines |
Prev: F5B8 | Up: Map | Next: F5F9 |
|
||||
The player wants to buy meat from the trader using the salt, check if the version of the trader in the current room is the one selling meat.
|
||||
Process_BuyMeatFromTraderWithSalt | F5EB | LD A,$3C | Call ValidateItemPresent with item 3C: "A trader,selling some meat". | |
F5ED | CALL ValidateItemPresent | |||
If "A trader,selling some meat" is not present in the current room then print "You can't.".
|
||||
F5F0 | JP NZ,Response_YouCant_Duplicate | Jump to Response_YouCant_Duplicate if "A trader,selling some meat" is not present in the current room. | ||
The trader selling meat is here, but print "He's not interested.".
|
||||
F5F3 | LD HL,$DCA8 | HL=Messaging_HesNotInterested. | ||
F5F6 | JP PrintStringAndNewline_Duplicate | Jump to PrintStringAndNewline_Duplicate. |
Prev: F5B8 | Up: Map | Next: F5F9 |