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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
SSAnneCaptainsRoom_Script:
call SSAnne7Script_6189b
jp EnableAutoTextBoxDrawing
SSAnne7Script_6189b:
CheckEvent EVENT_RUBBED_CAPTAINS_BACK
ret nz
ld hl, wd72d
set 5, [hl]
ret
SSAnneCaptainsRoom_TextPointers:
dw SSAnne7Text1
dw SSAnne7Text2
dw SSAnne7Text3
SSAnne7Text1:
text_asm
CheckEvent EVENT_GOT_HM01
jr nz, .got_item
ld hl, SSAnne7RubText
call PrintText
ld hl, ReceivingHM01Text
call PrintText
lb bc, HM_CUT, 1
call GiveItem
jr nc, .bag_full
ld hl, ReceivedHM01Text
call PrintText
SetEvent EVENT_GOT_HM01
jr .done
.bag_full
ld hl, HM01NoRoomText
call PrintText
ld hl, wd72d
set 5, [hl]
jr .done
.got_item
ld hl, SSAnne7Text_61932
call PrintText
.done
jp TextScriptEnd
SSAnne7RubText:
text_far _SSAnne7RubText
text_asm
ld a, [wAudioROMBank]
cp BANK("Audio Engine 3")
ld [wAudioSavedROMBank], a
jr nz, .asm_61908
ld a, SFX_STOP_ALL_MUSIC
ld [wNewSoundID], a
call PlaySound
ld a, BANK(Music_PkmnHealed)
ld [wAudioROMBank], a
.asm_61908
ld a, MUSIC_PKMN_HEALED
ld [wNewSoundID], a
call PlaySound
.asm_61910
ld a, [wChannelSoundIDs]
cp MUSIC_PKMN_HEALED
jr z, .asm_61910
call PlayDefaultMusic
SetEvent EVENT_RUBBED_CAPTAINS_BACK
ld hl, wd72d
res 5, [hl]
jp TextScriptEnd
ReceivingHM01Text:
text_far _ReceivingHM01Text
text_end
ReceivedHM01Text:
text_far _ReceivedHM01Text
sound_get_key_item
text_end
SSAnne7Text_61932:
text_far _SSAnne7Text_61932
text_end
HM01NoRoomText:
text_far _HM01NoRoomText
text_end
SSAnne7Text2:
text_far _SSAnne7Text2
text_end
SSAnne7Text3:
text_far _SSAnne7Text3
text_end
|