blob: 49a91977e2dba200198c2df19c6d5df8666fdf4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
PewterMart_Script:
call EnableAutoTextBoxDrawing
ld a, 1 << BIT_NO_AUTO_TEXT_BOX
ld [wAutoTextBoxDrawingControl], a
ret
PewterMart_TextPointers:
def_text_pointers
dw_const PewterMartClerkText, TEXT_PEWTERMART_CLERK
dw_const PewterMartYoungsterText, TEXT_PEWTERMART_YOUNGSTER
dw_const PewterMartSuperNerdText, TEXT_PEWTERMART_SUPER_NERD
PewterMartYoungsterText:
text_asm
ld hl, .Text
call PrintText
jp TextScriptEnd
.Text:
text_far _PewterMartYoungsterText
text_end
PewterMartSuperNerdText:
text_asm
ld hl, .Text
call PrintText
jp TextScriptEnd
.Text:
text_far _PewterMartSuperNerdText
text_end
|