pewtermart.asm 413 B

1234567891011121314151617181920212223242526272829
  1. PewterMartScript:
  2. call EnableAutoTextBoxDrawing
  3. ld a, $1
  4. ld [wAutoTextBoxDrawingControl], a
  5. ret
  6. PewterMartTextPointers:
  7. dw PewterCashierText
  8. dw PewterMartText2
  9. dw PewterMartText3
  10. PewterMartText2:
  11. TX_ASM
  12. ld hl, .Text
  13. call PrintText
  14. jp TextScriptEnd
  15. .Text
  16. TX_FAR _PewterMartText2
  17. db "@"
  18. PewterMartText3:
  19. TX_ASM
  20. ld hl, .Text
  21. call PrintText
  22. jp TextScriptEnd
  23. .Text
  24. TX_FAR _PewterMartText3
  25. db "@"