mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
buttonsound
This commit is contained in:
parent
b8dcccd0da
commit
0eb0c40ba7
@ -875,7 +875,7 @@ Special_DayCareMon1: ; 17421
|
|||||||
ld a, [wDaycareLady]
|
ld a, [wDaycareLady]
|
||||||
bit 0, a
|
bit 0, a
|
||||||
jr z, Function1745f
|
jr z, Function1745f
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
ld hl, wBreedMon2Nick
|
ld hl, wBreedMon2Nick
|
||||||
call Function1746c
|
call Function1746c
|
||||||
jp PrintText
|
jp PrintText
|
||||||
@ -888,7 +888,7 @@ Special_DayCareMon2: ; 17440
|
|||||||
ld a, [wDaycareMan]
|
ld a, [wDaycareMan]
|
||||||
bit 0, a
|
bit 0, a
|
||||||
jr z, Function1745f
|
jr z, Function1745f
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
ld hl, wBreedMon1Nick
|
ld hl, wBreedMon1Nick
|
||||||
call Function1746c
|
call Function1746c
|
||||||
jp PrintText
|
jp PrintText
|
||||||
|
@ -18,17 +18,17 @@ BuenaPhoneScript_CheckTimeOfDay1:
|
|||||||
checkday
|
checkday
|
||||||
iftrue .day
|
iftrue .day
|
||||||
writetext UnknownText_0xa0d42
|
writetext UnknownText_0xa0d42
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
.morn:
|
.morn:
|
||||||
writetext UnknownText_0xa0c28
|
writetext UnknownText_0xa0c28
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
.day:
|
.day:
|
||||||
writetext UnknownText_0xa0c72
|
writetext UnknownText_0xa0c72
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
BuenaPhoneScript_AfterMidnight1:
|
BuenaPhoneScript_AfterMidnight1:
|
||||||
@ -43,22 +43,22 @@ BuenaPhoneScript_CheckTimeOfDay2:
|
|||||||
checkday
|
checkday
|
||||||
iftrue .day
|
iftrue .day
|
||||||
writetext UnknownText_0xa0e29
|
writetext UnknownText_0xa0e29
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
.morn:
|
.morn:
|
||||||
writetext UnknownText_0xa0d96
|
writetext UnknownText_0xa0d96
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
.day:
|
.day:
|
||||||
writetext UnknownText_0xa0dcf
|
writetext UnknownText_0xa0dcf
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
BuenaPhoneScript_AfterMidnight2:
|
BuenaPhoneScript_AfterMidnight2:
|
||||||
writetext UnknownText_0xa0e01
|
writetext UnknownText_0xa0e01
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
BuenaPhoneScript_Rocket:
|
BuenaPhoneScript_Rocket:
|
||||||
|
@ -4,7 +4,7 @@ FruitTreeScript:: ; 44000
|
|||||||
copybytetovar CurFruit
|
copybytetovar CurFruit
|
||||||
itemtotext $0, $0
|
itemtotext $0, $0
|
||||||
writetext FruitBearingTreeText
|
writetext FruitBearingTreeText
|
||||||
keeptextopen
|
buttonsound
|
||||||
callasm TryResetFruitTrees
|
callasm TryResetFruitTrees
|
||||||
callasm CheckFruitTree
|
callasm CheckFruitTree
|
||||||
iffalse .fruit
|
iffalse .fruit
|
||||||
@ -17,7 +17,7 @@ FruitTreeScript:: ; 44000
|
|||||||
copybytetovar CurFruit
|
copybytetovar CurFruit
|
||||||
giveitem ITEM_FROM_MEM
|
giveitem ITEM_FROM_MEM
|
||||||
iffalse .packisfull
|
iffalse .packisfull
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext ObtainedFruitText
|
writetext ObtainedFruitText
|
||||||
callasm PickedFruitTree
|
callasm PickedFruitTree
|
||||||
specialsound
|
specialsound
|
||||||
@ -25,7 +25,7 @@ FruitTreeScript:: ; 44000
|
|||||||
jump .end
|
jump .end
|
||||||
|
|
||||||
.packisfull
|
.packisfull
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext FruitPackIsFullText
|
writetext FruitPackIsFullText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -157,7 +157,7 @@ IF _CRYSTAL
|
|||||||
ENDC
|
ENDC
|
||||||
dw Script_jumptext
|
dw Script_jumptext
|
||||||
dw Script_waitbutton
|
dw Script_waitbutton
|
||||||
dw Script_keeptextopen
|
dw Script_buttonsound
|
||||||
dw Script_pokepic
|
dw Script_pokepic
|
||||||
dw Script_closepokepic
|
dw Script_closepokepic
|
||||||
dw Script_interpretmenu
|
dw Script_interpretmenu
|
||||||
@ -438,7 +438,7 @@ Script_waitbutton: ; 96ed9
|
|||||||
jp WaitButton
|
jp WaitButton
|
||||||
; 96edc
|
; 96edc
|
||||||
|
|
||||||
Script_keeptextopen: ; 96edc
|
Script_buttonsound: ; 96edc
|
||||||
; script command 0x55
|
; script command 0x55
|
||||||
|
|
||||||
ld a, [hOAMUpdate]
|
ld a, [hOAMUpdate]
|
||||||
@ -446,7 +446,7 @@ Script_keeptextopen: ; 96edc
|
|||||||
ld a, $1
|
ld a, $1
|
||||||
ld [hOAMUpdate], a
|
ld [hOAMUpdate], a
|
||||||
call WaitBGMap
|
call WaitBGMap
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
pop af
|
pop af
|
||||||
ld [hOAMUpdate], a
|
ld [hOAMUpdate], a
|
||||||
ret
|
ret
|
||||||
@ -583,7 +583,7 @@ GiveItemScript: ; 96f77
|
|||||||
end
|
end
|
||||||
|
|
||||||
.Full
|
.Full
|
||||||
keeptextopen
|
buttonsound
|
||||||
pocketisfull
|
pocketisfull
|
||||||
end
|
end
|
||||||
; 96f89
|
; 96f89
|
||||||
|
@ -68,33 +68,33 @@ PokeCenterNurseScript:
|
|||||||
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
||||||
iftrue .morn_comcenter
|
iftrue .morn_comcenter
|
||||||
farwritetext UnknownText_0x1b0000
|
farwritetext UnknownText_0x1b0000
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
.morn_comcenter
|
.morn_comcenter
|
||||||
farwritetext UnknownText_0x1b008a
|
farwritetext UnknownText_0x1b008a
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
|
|
||||||
.day
|
.day
|
||||||
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
||||||
iftrue .day_comcenter
|
iftrue .day_comcenter
|
||||||
farwritetext UnknownText_0x1b002b
|
farwritetext UnknownText_0x1b002b
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
.day_comcenter
|
.day_comcenter
|
||||||
farwritetext UnknownText_0x1b00d6
|
farwritetext UnknownText_0x1b00d6
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
|
|
||||||
.nite
|
.nite
|
||||||
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
|
||||||
iftrue .nite_comcenter
|
iftrue .nite_comcenter
|
||||||
farwritetext UnknownText_0x1b004f
|
farwritetext UnknownText_0x1b004f
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
.nite_comcenter
|
.nite_comcenter
|
||||||
farwritetext UnknownText_0x1b011b
|
farwritetext UnknownText_0x1b011b
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .ok
|
jump .ok
|
||||||
|
|
||||||
.ok
|
.ok
|
||||||
@ -326,20 +326,20 @@ BugContestResultsScript:
|
|||||||
if_equal 2, BugContestResults_SecondPlace
|
if_equal 2, BugContestResults_SecondPlace
|
||||||
if_equal 3, BugContestResults_ThirdPlace
|
if_equal 3, BugContestResults_ThirdPlace
|
||||||
farwritetext ContestResults_ConsolationPrizeText
|
farwritetext ContestResults_ConsolationPrizeText
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
verbosegiveitem BERRY
|
verbosegiveitem BERRY
|
||||||
iffalse BugContestResults_NoRoomForBerry
|
iffalse BugContestResults_NoRoomForBerry
|
||||||
|
|
||||||
BugContestResults_DidNotWin
|
BugContestResults_DidNotWin
|
||||||
farwritetext ContestResults_DidNotWinText
|
farwritetext ContestResults_DidNotWinText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump BugContestResults_FinishUp
|
jump BugContestResults_FinishUp
|
||||||
; 0xbc2b1
|
; 0xbc2b1
|
||||||
|
|
||||||
BugContestResults_ReturnAfterWinnersPrize ; 0xbc2b1
|
BugContestResults_ReturnAfterWinnersPrize ; 0xbc2b1
|
||||||
farwritetext ContestResults_JoinUsNextTimeText
|
farwritetext ContestResults_JoinUsNextTimeText
|
||||||
keeptextopen
|
buttonsound
|
||||||
|
|
||||||
BugContestResults_FinishUp
|
BugContestResults_FinishUp
|
||||||
checkevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
checkevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
||||||
@ -412,28 +412,28 @@ BugContestResults_ThirdPlace ; 0xbc343
|
|||||||
|
|
||||||
BugContestResults_NoRoomForSunStone ; 0xbc354
|
BugContestResults_NoRoomForSunStone ; 0xbc354
|
||||||
farwritetext UnknownText_0x1b08cc
|
farwritetext UnknownText_0x1b08cc
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
setevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc35f
|
; 0xbc35f
|
||||||
|
|
||||||
BugContestResults_NoRoomForEverstone ; 0xbc35f
|
BugContestResults_NoRoomForEverstone ; 0xbc35f
|
||||||
farwritetext UnknownText_0x1b08cc
|
farwritetext UnknownText_0x1b08cc
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
setevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc36a
|
; 0xbc36a
|
||||||
|
|
||||||
BugContestResults_NoRoomForGoldBerry ; 0xbc36a
|
BugContestResults_NoRoomForGoldBerry ; 0xbc36a
|
||||||
farwritetext UnknownText_0x1b08cc
|
farwritetext UnknownText_0x1b08cc
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
setevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
||||||
jump BugContestResults_ReturnAfterWinnersPrize
|
jump BugContestResults_ReturnAfterWinnersPrize
|
||||||
; 0xbc375
|
; 0xbc375
|
||||||
|
|
||||||
BugContestResults_NoRoomForBerry ; 0xbc375
|
BugContestResults_NoRoomForBerry ; 0xbc375
|
||||||
farwritetext UnknownText_0x1b08cc
|
farwritetext UnknownText_0x1b08cc
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
setevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
||||||
jump BugContestResults_DidNotWin
|
jump BugContestResults_DidNotWin
|
||||||
; 0xbc380
|
; 0xbc380
|
||||||
@ -794,7 +794,7 @@ RegisteredNumberMScript:
|
|||||||
farwritetext RegisteredNumber1Text
|
farwritetext RegisteredNumber1Text
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
NumberAcceptedMScript:
|
NumberAcceptedMScript:
|
||||||
@ -1287,31 +1287,31 @@ GiftMScript:
|
|||||||
|
|
||||||
.Jose
|
.Jose
|
||||||
farwritetext JoseGiftText
|
farwritetext JoseGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Wade
|
.Wade
|
||||||
farwritetext WadeGiftText
|
farwritetext WadeGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Alan
|
.Alan
|
||||||
farwritetext AlanGiftText
|
farwritetext AlanGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Derek
|
.Derek
|
||||||
farwritetext DerekGiftText
|
farwritetext DerekGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Tully
|
.Tully
|
||||||
farwritetext TullyGiftText
|
farwritetext TullyGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Wilton
|
.Wilton
|
||||||
farwritetext WiltonGiftText
|
farwritetext WiltonGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Kenji
|
.Kenji
|
||||||
farwritetext KenjiGiftText
|
farwritetext KenjiGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
PackFullMScript:
|
PackFullMScript:
|
||||||
@ -1394,19 +1394,19 @@ RematchGiftMScript:
|
|||||||
|
|
||||||
.Huey
|
.Huey
|
||||||
farwritetext HueyRematchGiftText
|
farwritetext HueyRematchGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Joey
|
.Joey
|
||||||
farwritetext JoeyRematchGiftText
|
farwritetext JoeyRematchGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Vance
|
.Vance
|
||||||
farwritetext VanceRematchGiftText
|
farwritetext VanceRematchGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Parry
|
.Parry
|
||||||
farwritetext ParryRematchGiftText
|
farwritetext ParryRematchGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
AskNumber1FScript:
|
AskNumber1FScript:
|
||||||
@ -1485,7 +1485,7 @@ RegisteredNumberFScript:
|
|||||||
farwritetext RegisteredNumber2Text
|
farwritetext RegisteredNumber2Text
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
NumberAcceptedFScript: ; 0xbcbd3
|
NumberAcceptedFScript: ; 0xbcbd3
|
||||||
@ -1699,19 +1699,19 @@ GiftFScript:
|
|||||||
|
|
||||||
.Beverly
|
.Beverly
|
||||||
farwritetext BeverlyGiftText
|
farwritetext BeverlyGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Gina
|
.Gina
|
||||||
farwritetext GinaGiftText
|
farwritetext GinaGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Dana
|
.Dana
|
||||||
farwritetext DanaGiftText
|
farwritetext DanaGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
.Tiffany
|
.Tiffany
|
||||||
farwritetext TiffanyGiftText
|
farwritetext TiffanyGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
PackFullFScript:
|
PackFullFScript:
|
||||||
@ -1755,7 +1755,7 @@ RematchGiftFScript:
|
|||||||
.Erin
|
.Erin
|
||||||
loadfont
|
loadfont
|
||||||
farwritetext ErinRematchGiftText
|
farwritetext ErinRematchGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
GymStatue1Script:
|
GymStatue1Script:
|
||||||
@ -1770,7 +1770,7 @@ GymStatue2Script:
|
|||||||
mapnametotext $0
|
mapnametotext $0
|
||||||
loadfont
|
loadfont
|
||||||
farwritetext GymStatue_CityGymText
|
farwritetext GymStatue_CityGymText
|
||||||
keeptextopen
|
buttonsound
|
||||||
farwritetext GymStatue_WinningTrainersText
|
farwritetext GymStatue_WinningTrainersText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -1796,7 +1796,7 @@ GameCornerCoinVendorScript: ; 0xbcdcd
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
farwritetext CoinVendor_WelcomeText
|
farwritetext CoinVendor_WelcomeText
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkitem COIN_CASE
|
checkitem COIN_CASE
|
||||||
iftrue CoinVendor_IntroScript
|
iftrue CoinVendor_IntroScript
|
||||||
farwritetext CoinVendor_NoCoinCaseText
|
farwritetext CoinVendor_NoCoinCaseText
|
||||||
|
@ -392,7 +392,7 @@ SimpleWaitPressAorB:: ; aa5
|
|||||||
ret
|
ret
|
||||||
; aaf
|
; aaf
|
||||||
|
|
||||||
KeepTextOpen:: ; aaf
|
ButtonSound:: ; aaf
|
||||||
ld a, [wLinkMode]
|
ld a, [wLinkMode]
|
||||||
and a
|
and a
|
||||||
jr nz, .link
|
jr nz, .link
|
||||||
|
@ -538,7 +538,7 @@ Paragraph:: ; 12f2
|
|||||||
|
|
||||||
.linkbattle
|
.linkbattle
|
||||||
call Function13b6
|
call Function13b6
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
||||||
lb bc, TEXTBOX_INNERH - 1, TEXTBOX_INNERW
|
lb bc, TEXTBOX_INNERH - 1, TEXTBOX_INNERW
|
||||||
call ClearBox
|
call ClearBox
|
||||||
@ -561,7 +561,7 @@ Char4B:: ; 131f
|
|||||||
call Function13b6
|
call Function13b6
|
||||||
|
|
||||||
push de
|
push de
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
pop de
|
pop de
|
||||||
|
|
||||||
ld a, [wLinkMode]
|
ld a, [wLinkMode]
|
||||||
@ -611,7 +611,7 @@ PromptText:: ; 135a
|
|||||||
|
|
||||||
.ok
|
.ok
|
||||||
call Function13b6
|
call Function13b6
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
ld a, [wLinkMode]
|
ld a, [wLinkMode]
|
||||||
cp LINK_COLOSSEUM
|
cp LINK_COLOSSEUM
|
||||||
jr z, DoneText
|
jr z, DoneText
|
||||||
@ -934,7 +934,7 @@ Text_WAIT_BUTTON:: ; 149f
|
|||||||
push hl
|
push hl
|
||||||
call LoadBlinkingCursor
|
call LoadBlinkingCursor
|
||||||
push bc
|
push bc
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
pop bc
|
pop bc
|
||||||
call UnloadBlinkingCursor
|
call UnloadBlinkingCursor
|
||||||
pop hl
|
pop hl
|
||||||
@ -1101,7 +1101,7 @@ Text_0D:: ; 1562
|
|||||||
; display arrow
|
; display arrow
|
||||||
push hl
|
push hl
|
||||||
push bc
|
push bc
|
||||||
call KeepTextOpen
|
call ButtonSound
|
||||||
pop bc
|
pop bc
|
||||||
pop hl
|
pop hl
|
||||||
ret
|
ret
|
||||||
|
@ -564,9 +564,9 @@ waitbutton: macro
|
|||||||
db waitbutton_command
|
db waitbutton_command
|
||||||
endm
|
endm
|
||||||
|
|
||||||
enum keeptextopen_command
|
enum buttonsound_command
|
||||||
keeptextopen: macro
|
buttonsound: macro
|
||||||
db keeptextopen_command
|
db buttonsound_command
|
||||||
endm
|
endm
|
||||||
|
|
||||||
enum pokepic_command
|
enum pokepic_command
|
||||||
|
4
main.asm
4
main.asm
@ -8658,7 +8658,7 @@ SignpostItemScript:: ; 0x13625
|
|||||||
; 0x1363e
|
; 0x1363e
|
||||||
|
|
||||||
.bag_full: ; 0x1363e
|
.bag_full: ; 0x1363e
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext .no_room_text
|
writetext .no_room_text
|
||||||
waitbutton
|
waitbutton
|
||||||
|
|
||||||
@ -22604,7 +22604,7 @@ Function10424e: ; 10424e (41:424e)
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
Function10425f: ; 10425f (41:425f)
|
Function10425f: ; 10425f (41:425f)
|
||||||
ld c, $7f
|
ld c, " "
|
||||||
jr Function104265
|
jr Function104265
|
||||||
|
|
||||||
Function104263: ; 104263 (41:4263)
|
Function104263: ; 104263 (41:4263)
|
||||||
|
@ -42,7 +42,7 @@ BugsyScript:
|
|||||||
setevent EVENT_BEAT_BUG_CATCHER_AL
|
setevent EVENT_BEAT_BUG_CATCHER_AL
|
||||||
setevent EVENT_BEAT_BUG_CATCHER_JOSH
|
setevent EVENT_BEAT_BUG_CATCHER_JOSH
|
||||||
writetext BugsyText_HiveBadgeSpeech
|
writetext BugsyText_HiveBadgeSpeech
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_FURY_CUTTER
|
verbosegiveitem TM_FURY_CUTTER
|
||||||
iffalse .NoRoomForFuryCutter
|
iffalse .NoRoomForFuryCutter
|
||||||
setevent EVENT_GOT_TM49_FURY_CUTTER
|
setevent EVENT_GOT_TM49_FURY_CUTTER
|
||||||
|
@ -163,10 +163,10 @@ UnknownScript_0x1980e5:
|
|||||||
applymovement PLAYER, MovementData_0x198148
|
applymovement PLAYER, MovementData_0x198148
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x1985df
|
writetext UnknownText_0x1985df
|
||||||
keeptextopen
|
buttonsound
|
||||||
spriteface AZALEATOWN_KURT_OUTSIDE, RIGHT
|
spriteface AZALEATOWN_KURT_OUTSIDE, RIGHT
|
||||||
writetext UnknownText_0x19860b
|
writetext UnknownText_0x19860b
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x198628
|
writetext UnknownText_0x198628
|
||||||
waitbutton
|
waitbutton
|
||||||
verbosegiveitem GS_BALL
|
verbosegiveitem GS_BALL
|
||||||
|
@ -61,7 +61,7 @@ ReceptionistScript_0x9e3e2:
|
|||||||
if_equal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm
|
if_equal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm
|
||||||
loadfont
|
loadfont
|
||||||
writetext Text_BattleTowerWelcomesYou
|
writetext Text_BattleTowerWelcomesYou
|
||||||
keeptextopen
|
buttonsound
|
||||||
writebyte BATTLETOWERACTION_00 ; if new save file: bit 1, [sbe4f]
|
writebyte BATTLETOWERACTION_00 ; if new save file: bit 1, [sbe4f]
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_not_equal $0, Script_Menu_ChallengeExplanationCancel
|
if_not_equal $0, Script_Menu_ChallengeExplanationCancel
|
||||||
|
@ -32,7 +32,7 @@ Script_BattleRoomLoop: ; 0x9f425
|
|||||||
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksIn
|
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksIn
|
||||||
loadfont
|
loadfont
|
||||||
battletowertext 1
|
battletowertext 1
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
special BattleTowerBattle ; calls predef startbattle
|
special BattleTowerBattle ; calls predef startbattle
|
||||||
special FadeOutPalettes
|
special FadeOutPalettes
|
||||||
|
@ -18,7 +18,7 @@ GrampsScript_0x189538:
|
|||||||
checkevent EVENT_MET_BILLS_GRANDPA
|
checkevent EVENT_MET_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x189553
|
iftrue UnknownScript_0x189553
|
||||||
writetext UnknownText_0x1896ce
|
writetext UnknownText_0x1896ce
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_BILLS_GRANDPA
|
setevent EVENT_MET_BILLS_GRANDPA
|
||||||
UnknownScript_0x189553:
|
UnknownScript_0x189553:
|
||||||
checkevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
checkevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
||||||
@ -32,7 +32,7 @@ UnknownScript_0x189553:
|
|||||||
checkevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
checkevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
||||||
iftrue UnknownScript_0x18963b
|
iftrue UnknownScript_0x18963b
|
||||||
writetext UnknownText_0x1898c0
|
writetext UnknownText_0x1898c0
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -46,7 +46,7 @@ UnknownScript_0x189553:
|
|||||||
|
|
||||||
UnknownScript_0x189592:
|
UnknownScript_0x189592:
|
||||||
writetext UnknownText_0x1898ff
|
writetext UnknownText_0x1898ff
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -60,7 +60,7 @@ UnknownScript_0x189592:
|
|||||||
|
|
||||||
UnknownScript_0x1895b3:
|
UnknownScript_0x1895b3:
|
||||||
writetext UnknownText_0x189953
|
writetext UnknownText_0x189953
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -76,7 +76,7 @@ UnknownScript_0x1895d4:
|
|||||||
checkver
|
checkver
|
||||||
iftrue UnknownScript_0x1895f9
|
iftrue UnknownScript_0x1895f9
|
||||||
writetext UnknownText_0x1899fe
|
writetext UnknownText_0x1899fe
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -90,7 +90,7 @@ UnknownScript_0x1895d4:
|
|||||||
|
|
||||||
UnknownScript_0x1895f9:
|
UnknownScript_0x1895f9:
|
||||||
writetext UnknownText_0x189a57
|
writetext UnknownText_0x189a57
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -104,7 +104,7 @@ UnknownScript_0x1895f9:
|
|||||||
|
|
||||||
UnknownScript_0x18961a:
|
UnknownScript_0x18961a:
|
||||||
writetext UnknownText_0x189ab1
|
writetext UnknownText_0x189ab1
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x189732
|
writetext UnknownText_0x189732
|
||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x1896aa
|
iffalse UnknownScript_0x1896aa
|
||||||
@ -170,7 +170,7 @@ UnknownScript_0x189697:
|
|||||||
|
|
||||||
UnknownScript_0x1896a5:
|
UnknownScript_0x1896a5:
|
||||||
writetext UnknownText_0x189760
|
writetext UnknownText_0x189760
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x1896aa:
|
UnknownScript_0x1896aa:
|
||||||
@ -181,12 +181,12 @@ UnknownScript_0x1896aa:
|
|||||||
|
|
||||||
UnknownScript_0x1896b0:
|
UnknownScript_0x1896b0:
|
||||||
writetext UnknownText_0x1897a6
|
writetext UnknownText_0x1897a6
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x1896b5:
|
UnknownScript_0x1896b5:
|
||||||
writetext UnknownText_0x1897e1
|
writetext UnknownText_0x1897e1
|
||||||
keeptextopen
|
buttonsound
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x1896ba:
|
UnknownScript_0x1896ba:
|
||||||
|
@ -99,11 +99,11 @@ SantosScript:
|
|||||||
checkevent EVENT_MET_SANTOS_OF_SATURDAY
|
checkevent EVENT_MET_SANTOS_OF_SATURDAY
|
||||||
iftrue .MetSantos
|
iftrue .MetSantos
|
||||||
writetext MeetSantosText
|
writetext MeetSantosText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_SANTOS_OF_SATURDAY
|
setevent EVENT_MET_SANTOS_OF_SATURDAY
|
||||||
.MetSantos
|
.MetSantos
|
||||||
writetext SantosGivesGiftText
|
writetext SantosGivesGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem SPELL_TAG
|
verbosegiveitem SPELL_TAG
|
||||||
iffalse SantosDoneScript
|
iffalse SantosDoneScript
|
||||||
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
||||||
|
@ -68,7 +68,7 @@ UnknownScript_0x194e69:
|
|||||||
checkevent EVENT_GOT_TM24_DRAGONBREATH
|
checkevent EVENT_GOT_TM24_DRAGONBREATH
|
||||||
iftrue UnknownScript_0x194e94
|
iftrue UnknownScript_0x194e94
|
||||||
writetext UnknownText_0x195196
|
writetext UnknownText_0x195196
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem TM_DRAGONBREATH
|
giveitem TM_DRAGONBREATH
|
||||||
iffalse UnknownScript_0x194e8e
|
iffalse UnknownScript_0x194e8e
|
||||||
itemtotext TM_DRAGONBREATH, $0
|
itemtotext TM_DRAGONBREATH, $0
|
||||||
@ -78,7 +78,7 @@ UnknownScript_0x194e69:
|
|||||||
itemnotify
|
itemnotify
|
||||||
setevent EVENT_GOT_TM24_DRAGONBREATH
|
setevent EVENT_GOT_TM24_DRAGONBREATH
|
||||||
writetext UnknownText_0x1951d1
|
writetext UnknownText_0x1951d1
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump UnknownScript_0x194e94
|
jump UnknownScript_0x194e94
|
||||||
|
|
||||||
UnknownScript_0x194e8e:
|
UnknownScript_0x194e8e:
|
||||||
|
@ -41,7 +41,7 @@ UnknownScript_0x19b0de:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x19b296
|
writetext UnknownText_0x19b296
|
||||||
special PlayCurMonCry
|
special PlayCurMonCry
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x19b2aa
|
writetext UnknownText_0x19b2aa
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -109,7 +109,7 @@ CeladonCafeTrashcan:
|
|||||||
loadfont
|
loadfont
|
||||||
itemtotext LEFTOVERS, $0
|
itemtotext LEFTOVERS, $0
|
||||||
writetext FoundLeftoversText
|
writetext FoundLeftoversText
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext NoRoomForLeftoversText
|
writetext NoRoomForLeftoversText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -68,7 +68,7 @@ CeladonVendingMachine:
|
|||||||
pause 10
|
pause 10
|
||||||
playsound SFX_ENTER_DOOR
|
playsound SFX_ENTER_DOOR
|
||||||
writetext CeladonClangText
|
writetext CeladonClangText
|
||||||
keeptextopen
|
buttonsound
|
||||||
itemnotify
|
itemnotify
|
||||||
jump .Start
|
jump .Start
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ FisherScript_0x72144:
|
|||||||
checkevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON
|
checkevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON
|
||||||
iftrue .UnknownScript_0x72169
|
iftrue .UnknownScript_0x72169
|
||||||
writetext UnknownText_0x722dc
|
writetext UnknownText_0x722dc
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkitem COIN_CASE
|
checkitem COIN_CASE
|
||||||
iffalse UnknownScript_0x7217b
|
iffalse UnknownScript_0x7217b
|
||||||
checkcoins 9998
|
checkcoins 9998
|
||||||
|
@ -39,7 +39,7 @@ ErikaScript_0x72a6a:
|
|||||||
checkevent EVENT_GOT_TM19_GIGA_DRAIN
|
checkevent EVENT_GOT_TM19_GIGA_DRAIN
|
||||||
iftrue UnknownScript_0x72aae
|
iftrue UnknownScript_0x72aae
|
||||||
writetext UnknownText_0x72cb0
|
writetext UnknownText_0x72cb0
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_GIGA_DRAIN
|
verbosegiveitem TM_GIGA_DRAIN
|
||||||
iffalse UnknownScript_0x72aae
|
iffalse UnknownScript_0x72aae
|
||||||
setevent EVENT_GOT_TM19_GIGA_DRAIN
|
setevent EVENT_GOT_TM19_GIGA_DRAIN
|
||||||
|
@ -22,12 +22,12 @@ CooltrainerMScript_0x71670:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x7167e:
|
UnknownScript_0x7167e:
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x71725
|
writetext UnknownText_0x71725
|
||||||
playsound SFX_DEX_FANFARE_230_PLUS
|
playsound SFX_DEX_FANFARE_230_PLUS
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x71760
|
writetext UnknownText_0x71760
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Diploma
|
special Diploma
|
||||||
writetext UnknownText_0x71763
|
writetext UnknownText_0x71763
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -14,7 +14,7 @@ PharmacistScript_0x71afd:
|
|||||||
checkevent EVENT_GOT_TM03_CURSE
|
checkevent EVENT_GOT_TM03_CURSE
|
||||||
iftrue UnknownScript_0x71b21
|
iftrue UnknownScript_0x71b21
|
||||||
writetext UnknownText_0x71b27
|
writetext UnknownText_0x71b27
|
||||||
keeptextopen
|
buttonsound
|
||||||
checknite
|
checknite
|
||||||
iftrue UnknownScript_0x71b14
|
iftrue UnknownScript_0x71b14
|
||||||
writetext UnknownText_0x71b4a
|
writetext UnknownText_0x71b4a
|
||||||
@ -24,7 +24,7 @@ PharmacistScript_0x71afd:
|
|||||||
|
|
||||||
UnknownScript_0x71b14:
|
UnknownScript_0x71b14:
|
||||||
writetext UnknownText_0x71ba3
|
writetext UnknownText_0x71ba3
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_CURSE
|
verbosegiveitem TM_CURSE
|
||||||
iffalse UnknownScript_0x71b25
|
iffalse UnknownScript_0x71b25
|
||||||
setevent EVENT_GOT_TM03_CURSE
|
setevent EVENT_GOT_TM03_CURSE
|
||||||
|
@ -28,7 +28,7 @@ SuperNerdScript_0x71e2e:
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x71f22
|
writetext UnknownText_0x71f22
|
||||||
keeptextopen
|
buttonsound
|
||||||
writebyte SUICUNE
|
writebyte SUICUNE
|
||||||
special SpecialMonCheck
|
special SpecialMonCheck
|
||||||
iffalse UnknownScript_0x71e46
|
iffalse UnknownScript_0x71e46
|
||||||
|
@ -48,7 +48,7 @@ CharcoalKilnApprentice:
|
|||||||
|
|
||||||
.Thanks
|
.Thanks
|
||||||
writetext CharcoalKilnApprenticeText2
|
writetext CharcoalKilnApprenticeText2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem CHARCOAL
|
verbosegiveitem CHARCOAL
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN
|
setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN
|
||||||
|
@ -72,12 +72,12 @@ CherrygroveCityGuideGent:
|
|||||||
spriteface PLAYER, RIGHT
|
spriteface PLAYER, RIGHT
|
||||||
loadfont
|
loadfont
|
||||||
writetext GuideGentGiftText
|
writetext GuideGentGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
stringtotext .mapcardname, $1
|
stringtotext .mapcardname, $1
|
||||||
scall .UnknownScript_0x19c097
|
scall .UnknownScript_0x19c097
|
||||||
setflag ENGINE_MAP_CARD
|
setflag ENGINE_MAP_CARD
|
||||||
writetext GotMapCardText
|
writetext GotMapCardText
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext GuideGentPokegearText
|
writetext GuideGentPokegearText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -219,7 +219,7 @@ MysticWaterGuy:
|
|||||||
checkevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
checkevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
||||||
iftrue UnknownScript_0x19c183
|
iftrue UnknownScript_0x19c183
|
||||||
writetext UnknownText_0x19c766
|
writetext UnknownText_0x19c766
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem MYSTIC_WATER
|
verbosegiveitem MYSTIC_WATER
|
||||||
iffalse UnknownScript_0x19c187
|
iffalse UnknownScript_0x19c187
|
||||||
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
|
||||||
|
@ -92,7 +92,7 @@ PokefanFScript_0x1a0084:
|
|||||||
checkevent EVENT_GOT_HM02_FLY
|
checkevent EVENT_GOT_HM02_FLY
|
||||||
iftrue UnknownScript_0x1a00ad
|
iftrue UnknownScript_0x1a00ad
|
||||||
writetext UnknownText_0x1a00f1
|
writetext UnknownText_0x1a00f1
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkevent EVENT_BEAT_CHUCK
|
checkevent EVENT_BEAT_CHUCK
|
||||||
iftrue UnknownScript_0x1a009c
|
iftrue UnknownScript_0x1a009c
|
||||||
writetext UnknownText_0x1a0163
|
writetext UnknownText_0x1a0163
|
||||||
@ -102,12 +102,12 @@ PokefanFScript_0x1a0084:
|
|||||||
|
|
||||||
UnknownScript_0x1a009c:
|
UnknownScript_0x1a009c:
|
||||||
writetext UnknownText_0x1a01e3
|
writetext UnknownText_0x1a01e3
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem HM_FLY
|
verbosegiveitem HM_FLY
|
||||||
iffalse UnknownScript_0x1a00b1
|
iffalse UnknownScript_0x1a00b1
|
||||||
setevent EVENT_GOT_HM02_FLY
|
setevent EVENT_GOT_HM02_FLY
|
||||||
writetext UnknownText_0x1a021d
|
writetext UnknownText_0x1a021d
|
||||||
keeptextopen
|
buttonsound
|
||||||
UnknownScript_0x1a00ad:
|
UnknownScript_0x1a00ad:
|
||||||
writetext UnknownText_0x1a0277
|
writetext UnknownText_0x1a0277
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -59,7 +59,7 @@ ChuckScript_0x9d60f:
|
|||||||
setevent EVENT_BEAT_BLACKBELT_NOB
|
setevent EVENT_BEAT_BLACKBELT_NOB
|
||||||
setevent EVENT_BEAT_BLACKBELT_LUNG
|
setevent EVENT_BEAT_BLACKBELT_LUNG
|
||||||
writetext UnknownText_0x9d84d
|
writetext UnknownText_0x9d84d
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_DYNAMICPUNCH
|
verbosegiveitem TM_DYNAMICPUNCH
|
||||||
iffalse UnknownScript_0x9d67f
|
iffalse UnknownScript_0x9d67f
|
||||||
setevent EVENT_GOT_TM01_DYNAMICPUNCH
|
setevent EVENT_GOT_TM01_DYNAMICPUNCH
|
||||||
|
@ -22,7 +22,7 @@ CianwoodPharmacist:
|
|||||||
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
||||||
iffalse .Mart
|
iffalse .Mart
|
||||||
writetext PharmacistGiveSecretpotionText
|
writetext PharmacistGiveSecretpotionText
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem SECRETPOTION
|
giveitem SECRETPOTION
|
||||||
writetext ReceivedSecretpotionText
|
writetext ReceivedSecretpotionText
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
|
@ -113,7 +113,7 @@ Copycat:
|
|||||||
.Part12
|
.Part12
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x18b17f
|
writetext UnknownText_0x18b17f
|
||||||
keeptextopen
|
buttonsound
|
||||||
takeitem LOST_ITEM
|
takeitem LOST_ITEM
|
||||||
setevent EVENT_RETURNED_LOST_ITEM_TO_COPYCAT
|
setevent EVENT_RETURNED_LOST_ITEM_TO_COPYCAT
|
||||||
clearevent EVENT_COPYCATS_HOUSE_2F_DOLL
|
clearevent EVENT_COPYCATS_HOUSE_2F_DOLL
|
||||||
@ -123,7 +123,7 @@ Copycat:
|
|||||||
loadfont
|
loadfont
|
||||||
.Part14
|
.Part14
|
||||||
writetext UnknownText_0x18b1e2
|
writetext UnknownText_0x18b1e2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem PASS
|
verbosegiveitem PASS
|
||||||
iffalse .Part22
|
iffalse .Part22
|
||||||
setevent EVENT_GOT_PASS_FROM_COPYCAT
|
setevent EVENT_GOT_PASS_FROM_COPYCAT
|
||||||
@ -179,7 +179,7 @@ CopycatsDodrio:
|
|||||||
loadfont
|
loadfont
|
||||||
writetext CopycatsDodrioText1
|
writetext CopycatsDodrioText1
|
||||||
cry DODRIO
|
cry DODRIO
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext CopycatsDodrioText2
|
writetext CopycatsDodrioText2
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -75,7 +75,7 @@ GentlemanScript_0x994c6:
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x9980a
|
writetext UnknownText_0x9980a
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkevent EVENT_GOT_HM03_SURF
|
checkevent EVENT_GOT_HM03_SURF
|
||||||
iftrue UnknownScript_0x99515
|
iftrue UnknownScript_0x99515
|
||||||
checkevent EVENT_BEAT_KIMONO_GIRL_NAOKO
|
checkevent EVENT_BEAT_KIMONO_GIRL_NAOKO
|
||||||
@ -106,7 +106,7 @@ UnknownScript_0x994ff:
|
|||||||
|
|
||||||
UnknownScript_0x99505:
|
UnknownScript_0x99505:
|
||||||
writetext UnknownText_0x9991a
|
writetext UnknownText_0x9991a
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem HM_SURF
|
verbosegiveitem HM_SURF
|
||||||
setevent EVENT_GOT_HM03_SURF
|
setevent EVENT_GOT_HM03_SURF
|
||||||
writetext UnknownText_0x9999b
|
writetext UnknownText_0x9999b
|
||||||
|
@ -16,7 +16,7 @@ PharmacistScript_0x18c720:
|
|||||||
checkevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
checkevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
||||||
iftrue UnknownScript_0x18c735
|
iftrue UnknownScript_0x18c735
|
||||||
writetext UnknownText_0x18c73f
|
writetext UnknownText_0x18c73f
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem BLACKGLASSES
|
verbosegiveitem BLACKGLASSES
|
||||||
iffalse UnknownScript_0x18c739
|
iffalse UnknownScript_0x18c739
|
||||||
setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
|
||||||
|
@ -31,7 +31,7 @@ GrampsScript_0x62f8f:
|
|||||||
checkevent EVENT_GOT_ODD_EGG
|
checkevent EVENT_GOT_ODD_EGG
|
||||||
iftrue UnknownScript_0x62fbd
|
iftrue UnknownScript_0x62fbd
|
||||||
writetext UnknownText_0x630ce
|
writetext UnknownText_0x630ce
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal $6, UnknownScript_0x62fb6
|
if_equal $6, UnknownScript_0x62fb6
|
||||||
|
@ -27,11 +27,11 @@ DragonShrineTestScript:
|
|||||||
applymovement DRAGONSHRINE_ELDER1, MovementData_0x18d2c7
|
applymovement DRAGONSHRINE_ELDER1, MovementData_0x18d2c7
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x18d2ea
|
writetext UnknownText_0x18d2ea
|
||||||
keeptextopen
|
buttonsound
|
||||||
.Question1:
|
.Question1:
|
||||||
setevent EVENT_RECEIVED_BALLS_FROM_KURT
|
setevent EVENT_RECEIVED_BALLS_FROM_KURT
|
||||||
writetext UnknownText_0x18d3bc
|
writetext UnknownText_0x18d3bc
|
||||||
keeptextopen
|
buttonsound
|
||||||
loadmenudata MenuDataHeader_0x18d215
|
loadmenudata MenuDataHeader_0x18d215
|
||||||
interpretmenu2
|
interpretmenu2
|
||||||
writebackup
|
writebackup
|
||||||
@ -43,7 +43,7 @@ DragonShrineTestScript:
|
|||||||
.Question2:
|
.Question2:
|
||||||
setevent EVENT_DRAGON_SHRINE_QUESTION_2
|
setevent EVENT_DRAGON_SHRINE_QUESTION_2
|
||||||
writetext UnknownText_0x18d3d3
|
writetext UnknownText_0x18d3d3
|
||||||
keeptextopen
|
buttonsound
|
||||||
loadmenudata MenuDataHeader_0x18d234
|
loadmenudata MenuDataHeader_0x18d234
|
||||||
interpretmenu2
|
interpretmenu2
|
||||||
writebackup
|
writebackup
|
||||||
@ -53,7 +53,7 @@ DragonShrineTestScript:
|
|||||||
.Question3:
|
.Question3:
|
||||||
setevent EVENT_DRAGON_SHRINE_QUESTION_3
|
setevent EVENT_DRAGON_SHRINE_QUESTION_3
|
||||||
writetext UnknownText_0x18d3f3
|
writetext UnknownText_0x18d3f3
|
||||||
keeptextopen
|
buttonsound
|
||||||
loadmenudata MenuDataHeader_0x18d258
|
loadmenudata MenuDataHeader_0x18d258
|
||||||
interpretmenu2
|
interpretmenu2
|
||||||
writebackup
|
writebackup
|
||||||
@ -63,7 +63,7 @@ DragonShrineTestScript:
|
|||||||
.Question4:
|
.Question4:
|
||||||
setevent EVENT_DRAGON_SHRINE_QUESTION_4
|
setevent EVENT_DRAGON_SHRINE_QUESTION_4
|
||||||
writetext UnknownText_0x18d420
|
writetext UnknownText_0x18d420
|
||||||
keeptextopen
|
buttonsound
|
||||||
loadmenudata MenuDataHeader_0x18d283
|
loadmenudata MenuDataHeader_0x18d283
|
||||||
interpretmenu2
|
interpretmenu2
|
||||||
writebackup
|
writebackup
|
||||||
@ -73,7 +73,7 @@ DragonShrineTestScript:
|
|||||||
.Question5:
|
.Question5:
|
||||||
setevent EVENT_DRAGON_SHRINE_QUESTION_5
|
setevent EVENT_DRAGON_SHRINE_QUESTION_5
|
||||||
writetext UnknownText_0x18d44a
|
writetext UnknownText_0x18d44a
|
||||||
keeptextopen
|
buttonsound
|
||||||
loadmenudata MenuDataHeader_0x18d2a5
|
loadmenudata MenuDataHeader_0x18d2a5
|
||||||
interpretmenu2
|
interpretmenu2
|
||||||
writebackup
|
writebackup
|
||||||
@ -84,7 +84,7 @@ DragonShrineTestScript:
|
|||||||
checkevent EVENT_DRAGON_SHRINE_QUESTION_5
|
checkevent EVENT_DRAGON_SHRINE_QUESTION_5
|
||||||
iftrue .PassedTheTest
|
iftrue .PassedTheTest
|
||||||
writetext UnknownText_0x18d82d
|
writetext UnknownText_0x18d82d
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkevent EVENT_DRAGON_SHRINE_QUESTION_4
|
checkevent EVENT_DRAGON_SHRINE_QUESTION_4
|
||||||
iftrue .Question5
|
iftrue .Question5
|
||||||
checkevent EVENT_DRAGON_SHRINE_QUESTION_3
|
checkevent EVENT_DRAGON_SHRINE_QUESTION_3
|
||||||
@ -170,7 +170,7 @@ DragonShrineTestScript:
|
|||||||
dotrigger $1
|
dotrigger $1
|
||||||
domaptrigger DRAGONS_DEN_B1F, $1
|
domaptrigger DRAGONS_DEN_B1F, $1
|
||||||
writetext UnknownText_0x18d9f2
|
writetext UnknownText_0x18d9f2
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x18da0b
|
writetext UnknownText_0x18da0b
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -59,7 +59,7 @@ UnknownScript_0x18c8b8:
|
|||||||
applymovement DRAGONSDENB1F_CLAIR, MovementData_0x18c9ae
|
applymovement DRAGONSDENB1F_CLAIR, MovementData_0x18c9ae
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x18c9bf
|
writetext UnknownText_0x18c9bf
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem TM_DRAGONBREATH
|
giveitem TM_DRAGONBREATH
|
||||||
iffalse UnknownScript_0x18c8f4
|
iffalse UnknownScript_0x18c8f4
|
||||||
itemtotext TM_DRAGONBREATH, $0
|
itemtotext TM_DRAGONBREATH, $0
|
||||||
@ -69,7 +69,7 @@ UnknownScript_0x18c8b8:
|
|||||||
itemnotify
|
itemnotify
|
||||||
setevent EVENT_GOT_TM24_DRAGONBREATH
|
setevent EVENT_GOT_TM24_DRAGONBREATH
|
||||||
writetext UnknownText_0x18ca0d
|
writetext UnknownText_0x18ca0d
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x18caf1
|
writetext UnknownText_0x18caf1
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -149,7 +149,7 @@ UnknownScript_0x18c970:
|
|||||||
loadfont
|
loadfont
|
||||||
itemtotext DRAGON_FANG, $0
|
itemtotext DRAGON_FANG, $0
|
||||||
writetext UnknownText_0x18cf41
|
writetext UnknownText_0x18cf41
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x18cf51
|
writetext UnknownText_0x18cf51
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -56,7 +56,7 @@ MortyScript_0x99d58:
|
|||||||
setevent EVENT_BEAT_MEDIUM_MARTHA
|
setevent EVENT_BEAT_MEDIUM_MARTHA
|
||||||
setevent EVENT_BEAT_MEDIUM_GRACE
|
setevent EVENT_BEAT_MEDIUM_GRACE
|
||||||
writetext UnknownText_0x9a059
|
writetext UnknownText_0x9a059
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_SHADOW_BALL
|
verbosegiveitem TM_SHADOW_BALL
|
||||||
iffalse UnknownScript_0x99db5
|
iffalse UnknownScript_0x99db5
|
||||||
setevent EVENT_GOT_TM30_SHADOW_BALL
|
setevent EVENT_GOT_TM30_SHADOW_BALL
|
||||||
|
@ -18,7 +18,7 @@ CooltrainerMScript_0x9a5fb:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x9a61a
|
iffalse UnknownScript_0x9a61a
|
||||||
writetext UnknownText_0x9a6b5
|
writetext UnknownText_0x9a6b5
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem ITEMFINDER
|
verbosegiveitem ITEMFINDER
|
||||||
setevent EVENT_GOT_ITEMFINDER
|
setevent EVENT_GOT_ITEMFINDER
|
||||||
UnknownScript_0x9a614:
|
UnknownScript_0x9a614:
|
||||||
|
@ -42,7 +42,7 @@ UnknownScript_0x98e64:
|
|||||||
pause 10
|
pause 10
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x98ed8
|
writetext UnknownText_0x98ed8
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump UnknownScript_0x98e95
|
jump UnknownScript_0x98e95
|
||||||
|
|
||||||
UnknownScript_0x98e95:
|
UnknownScript_0x98e95:
|
||||||
|
2848
maps/ElmsLab.asm
2848
maps/ElmsLab.asm
File diff suppressed because it is too large
Load Diff
@ -83,7 +83,7 @@ UnknownScript_0x7678d:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x76799:
|
UnknownScript_0x76799:
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x7696d
|
writetext UnknownText_0x7696d
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -79,7 +79,7 @@ UnknownScript_0x75f09:
|
|||||||
applymovement FASTSHIPCABINS_SE_SSE_CAPTAINSCABIN_GENTLEMAN, MovementData_0x76010
|
applymovement FASTSHIPCABINS_SE_SSE_CAPTAINSCABIN_GENTLEMAN, MovementData_0x76010
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x76143
|
writetext UnknownText_0x76143
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_VERMILION_PORT_SAILOR_AT_GANGWAY
|
setevent EVENT_VERMILION_PORT_SAILOR_AT_GANGWAY
|
||||||
domaptrigger FAST_SHIP_1F, $0
|
domaptrigger FAST_SHIP_1F, $0
|
||||||
jump UnknownScript_0x75f37
|
jump UnknownScript_0x75f37
|
||||||
@ -99,7 +99,7 @@ GentlemanScript_0x75f1f:
|
|||||||
|
|
||||||
UnknownScript_0x75f37:
|
UnknownScript_0x75f37:
|
||||||
writetext UnknownText_0x7619b
|
writetext UnknownText_0x7619b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem METAL_COAT
|
verbosegiveitem METAL_COAT
|
||||||
iffalse UnknownScript_0x75f44
|
iffalse UnknownScript_0x75f44
|
||||||
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
||||||
@ -118,7 +118,7 @@ UnknownScript_0x75f44:
|
|||||||
|
|
||||||
UnknownScript_0x75f58:
|
UnknownScript_0x75f58:
|
||||||
writetext UnknownText_0x7619b
|
writetext UnknownText_0x7619b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem METAL_COAT
|
verbosegiveitem METAL_COAT
|
||||||
iffalse UnknownScript_0x75f65
|
iffalse UnknownScript_0x75f65
|
||||||
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
|
||||||
|
@ -49,7 +49,7 @@ UnknownScript_0x195e02:
|
|||||||
checkevent EVENT_GOT_TM06_TOXIC
|
checkevent EVENT_GOT_TM06_TOXIC
|
||||||
iftrue UnknownScript_0x195e15
|
iftrue UnknownScript_0x195e15
|
||||||
writetext UnknownText_0x196002
|
writetext UnknownText_0x196002
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_TOXIC
|
verbosegiveitem TM_TOXIC
|
||||||
iffalse UnknownScript_0x195e15
|
iffalse UnknownScript_0x195e15
|
||||||
setevent EVENT_GOT_TM06_TOXIC
|
setevent EVENT_GOT_TM06_TOXIC
|
||||||
|
@ -20,7 +20,7 @@ ClerkScript_0x54750:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x5477b
|
iffalse UnknownScript_0x5477b
|
||||||
writetext UnknownText_0x547f8
|
writetext UnknownText_0x547f8
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
giveitem BICYCLE
|
giveitem BICYCLE
|
||||||
writetext UnknownText_0x54848
|
writetext UnknownText_0x54848
|
||||||
|
@ -19,7 +19,7 @@ BillsHouseBill:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x54c19
|
iffalse UnknownScript_0x54c19
|
||||||
writetext UnknownText_0x54d3f
|
writetext UnknownText_0x54d3f
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal $6, UnknownScript_0x54c13
|
if_equal $6, UnknownScript_0x54c13
|
||||||
@ -81,7 +81,7 @@ BillsSister:
|
|||||||
writetext UnknownText_0x54fd9
|
writetext UnknownText_0x54fd9
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
UnknownScript_0x54c58: ;0x54c58
|
UnknownScript_0x54c58: ;0x54c58
|
||||||
writetext UnknownText_0x55069
|
writetext UnknownText_0x55069
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -96,7 +96,7 @@ UnknownScript_0x54c5e:
|
|||||||
|
|
||||||
UnknownScript_0x54c64:
|
UnknownScript_0x54c64:
|
||||||
writetext UnknownText_0x55046
|
writetext UnknownText_0x55046
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump UnknownScript_0x54c5e
|
jump UnknownScript_0x54c5e
|
||||||
|
|
||||||
BillsHouseBookshelf1:
|
BillsHouseBookshelf1:
|
||||||
|
@ -127,7 +127,7 @@ MoveTutor:
|
|||||||
|
|
||||||
.TeachMove:
|
.TeachMove:
|
||||||
writetext UnknownText_0x19913a
|
writetext UnknownText_0x19913a
|
||||||
keeptextopen
|
buttonsound
|
||||||
takecoins 4000
|
takecoins 4000
|
||||||
waitsfx
|
waitsfx
|
||||||
playsound SFX_TRANSACTION
|
playsound SFX_TRANSACTION
|
||||||
@ -212,7 +212,7 @@ GrampsScript_0x198a17:
|
|||||||
RocketScript_0x198a1a:
|
RocketScript_0x198a1a:
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x198d0d
|
writetext UnknownText_0x198d0d
|
||||||
keeptextopen
|
buttonsound
|
||||||
faceplayer
|
faceplayer
|
||||||
writetext UnknownText_0x198d2a
|
writetext UnknownText_0x198d2a
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -70,14 +70,14 @@ ReceptionistScript_0x560ce:
|
|||||||
iftrue .EventIsOver
|
iftrue .EventIsOver
|
||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
writetext UnknownText_0x56143
|
writetext UnknownText_0x56143
|
||||||
keeptextopen
|
buttonsound
|
||||||
if_greater_than $95, .VeryHappy
|
if_greater_than $95, .VeryHappy
|
||||||
if_greater_than $31, .SomewhatHappy
|
if_greater_than $31, .SomewhatHappy
|
||||||
jump .NotVeryHappy
|
jump .NotVeryHappy
|
||||||
|
|
||||||
.VeryHappy:
|
.VeryHappy:
|
||||||
writetext UnknownText_0x5615a
|
writetext UnknownText_0x5615a
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_RETURN
|
verbosegiveitem TM_RETURN
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
||||||
@ -92,7 +92,7 @@ ReceptionistScript_0x560ce:
|
|||||||
|
|
||||||
.NotVeryHappy:
|
.NotVeryHappy:
|
||||||
writetext UnknownText_0x561d8
|
writetext UnknownText_0x561d8
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_FRUSTRATION
|
verbosegiveitem TM_FRUSTRATION
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
setflag ENGINE_GOLDENROD_MALL_5F_HAPPINESS_EVENT
|
||||||
|
@ -54,7 +54,7 @@ GoldenrodVendingMachine:
|
|||||||
pause 10
|
pause 10
|
||||||
playsound SFX_ENTER_DOOR
|
playsound SFX_ENTER_DOOR
|
||||||
writetext GoldenrodClangText
|
writetext GoldenrodClangText
|
||||||
keeptextopen
|
buttonsound
|
||||||
itemnotify
|
itemnotify
|
||||||
jump .Start
|
jump .Start
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ FlowerShopTeacherScript:
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x554c2
|
writetext UnknownText_0x554c2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem SQUIRTBOTTLE
|
verbosegiveitem SQUIRTBOTTLE
|
||||||
setevent EVENT_GOT_SQUIRTBOTTLE
|
setevent EVENT_GOT_SQUIRTBOTTLE
|
||||||
closetext
|
closetext
|
||||||
|
@ -57,7 +57,7 @@ WhitneyScript_0x5400c:
|
|||||||
checkflag ENGINE_PLAINBADGE
|
checkflag ENGINE_PLAINBADGE
|
||||||
iftrue UnknownScript_0x54064
|
iftrue UnknownScript_0x54064
|
||||||
writetext UnknownText_0x54222
|
writetext UnknownText_0x54222
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x54273
|
writetext UnknownText_0x54273
|
||||||
playsound SFX_GET_BADGE
|
playsound SFX_GET_BADGE
|
||||||
@ -67,7 +67,7 @@ WhitneyScript_0x5400c:
|
|||||||
scall GoldenrodGymTriggerRockets
|
scall GoldenrodGymTriggerRockets
|
||||||
UnknownScript_0x54064:
|
UnknownScript_0x54064:
|
||||||
writetext UnknownText_0x5428b
|
writetext UnknownText_0x5428b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_ATTRACT
|
verbosegiveitem TM_ATTRACT
|
||||||
iffalse UnknownScript_0x5407b
|
iffalse UnknownScript_0x5407b
|
||||||
setevent EVENT_GOT_TM45_ATTRACT
|
setevent EVENT_GOT_TM45_ATTRACT
|
||||||
|
@ -15,7 +15,7 @@ TeacherScript_0x54953:
|
|||||||
loadfont
|
loadfont
|
||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
writetext UnknownText_0x549a3
|
writetext UnknownText_0x549a3
|
||||||
keeptextopen
|
buttonsound
|
||||||
if_greater_than $f9, UnknownScript_0x54973
|
if_greater_than $f9, UnknownScript_0x54973
|
||||||
if_greater_than $c7, UnknownScript_0x54979
|
if_greater_than $c7, UnknownScript_0x54979
|
||||||
if_greater_than $95, UnknownScript_0x5497f
|
if_greater_than $95, UnknownScript_0x5497f
|
||||||
|
@ -122,7 +122,7 @@ IlexForestFarfetchdScript:
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
writetext Text_ItsTheMissingPokemon
|
writetext Text_ItsTheMissingPokemon
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext Text_Kwaaaa
|
writetext Text_Kwaaaa
|
||||||
cry FARFETCH_D
|
cry FARFETCH_D
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -353,7 +353,7 @@ BlackBeltScript_0x6edae:
|
|||||||
checkevent EVENT_GOT_HM01_CUT
|
checkevent EVENT_GOT_HM01_CUT
|
||||||
iftrue .AlreadyGotCut
|
iftrue .AlreadyGotCut
|
||||||
writetext UnknownText_0x6f099
|
writetext UnknownText_0x6f099
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem HM_CUT
|
verbosegiveitem HM_CUT
|
||||||
setevent EVENT_GOT_HM01_CUT
|
setevent EVENT_GOT_HM01_CUT
|
||||||
writetext UnknownText_0x6f141
|
writetext UnknownText_0x6f141
|
||||||
@ -379,7 +379,7 @@ RockerScript_0x6edde:
|
|||||||
checkevent EVENT_GOT_TM02_HEADBUTT
|
checkevent EVENT_GOT_TM02_HEADBUTT
|
||||||
iftrue UnknownScript_0x6edf3
|
iftrue UnknownScript_0x6edf3
|
||||||
writetext UnknownText_0x6f21b
|
writetext UnknownText_0x6f21b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_HEADBUTT
|
verbosegiveitem TM_HEADBUTT
|
||||||
iffalse UnknownScript_0x6edf7
|
iffalse UnknownScript_0x6edf7
|
||||||
setevent EVENT_GOT_TM02_HEADBUTT
|
setevent EVENT_GOT_TM02_HEADBUTT
|
||||||
|
@ -39,7 +39,7 @@ UnknownScript_0x7a4f2:
|
|||||||
UnknownScript_0x7a4f6:
|
UnknownScript_0x7a4f6:
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x7a604
|
writetext UnknownText_0x7a604
|
||||||
keeptextopen
|
buttonsound
|
||||||
stringtotext GearName, $1
|
stringtotext GearName, $1
|
||||||
scall UnknownScript_0x7a57e
|
scall UnknownScript_0x7a57e
|
||||||
setflag ENGINE_POKEGEAR
|
setflag ENGINE_POKEGEAR
|
||||||
@ -49,7 +49,7 @@ UnknownScript_0x7a4f6:
|
|||||||
setevent EVENT_KRISS_HOUSE_MOM_1
|
setevent EVENT_KRISS_HOUSE_MOM_1
|
||||||
clearevent EVENT_KRISS_HOUSE_MOM_2
|
clearevent EVENT_KRISS_HOUSE_MOM_2
|
||||||
writetext UnknownText_0x7a6bd
|
writetext UnknownText_0x7a6bd
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Special_SetDayOfWeek
|
special Special_SetDayOfWeek
|
||||||
UnknownScript_0x7a519:
|
UnknownScript_0x7a519:
|
||||||
writetext UnknownText_0x7a742
|
writetext UnknownText_0x7a742
|
||||||
@ -72,12 +72,12 @@ UnknownScript_0x7a531:
|
|||||||
|
|
||||||
UnknownScript_0x7a53b:
|
UnknownScript_0x7a53b:
|
||||||
writetext UnknownText_0x7a7cb
|
writetext UnknownText_0x7a7cb
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump UnknownScript_0x7a549
|
jump UnknownScript_0x7a549
|
||||||
|
|
||||||
UnknownScript_0x7a542:
|
UnknownScript_0x7a542:
|
||||||
writetext UnknownText_0x7a807
|
writetext UnknownText_0x7a807
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump UnknownScript_0x7a549
|
jump UnknownScript_0x7a549
|
||||||
|
|
||||||
UnknownScript_0x7a549:
|
UnknownScript_0x7a549:
|
||||||
@ -166,17 +166,17 @@ NeighborScript:
|
|||||||
|
|
||||||
.MornScript
|
.MornScript
|
||||||
writetext NeighborMornIntroText
|
writetext NeighborMornIntroText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .Main
|
jump .Main
|
||||||
|
|
||||||
.DayScript
|
.DayScript
|
||||||
writetext NeighborDayIntroText
|
writetext NeighborDayIntroText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .Main
|
jump .Main
|
||||||
|
|
||||||
.NiteScript
|
.NiteScript
|
||||||
writetext NeighborNiteIntroText
|
writetext NeighborNiteIntroText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .Main
|
jump .Main
|
||||||
|
|
||||||
.Main
|
.Main
|
||||||
|
@ -72,7 +72,7 @@ KurtScript_0x18e178:
|
|||||||
|
|
||||||
.ClearedSlowpokeWell:
|
.ClearedSlowpokeWell:
|
||||||
writetext UnknownText_0x18e615
|
writetext UnknownText_0x18e615
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem LURE_BALL
|
verbosegiveitem LURE_BALL
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
setevent EVENT_KURT_GAVE_YOU_LURE_BALL
|
setevent EVENT_KURT_GAVE_YOU_LURE_BALL
|
||||||
@ -132,7 +132,7 @@ KurtScript_0x18e178:
|
|||||||
|
|
||||||
.AskApricorn:
|
.AskApricorn:
|
||||||
writetext UnknownText_0x18e736
|
writetext UnknownText_0x18e736
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_DRAGON_SHRINE_QUESTION_2
|
setevent EVENT_DRAGON_SHRINE_QUESTION_2
|
||||||
special Special_SelectApricornForKurt
|
special Special_SelectApricornForKurt
|
||||||
if_equal $0, .Cancel
|
if_equal $0, .Cancel
|
||||||
@ -198,7 +198,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 LEVEL_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 LEVEL_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_RED_APRICORN
|
clearevent EVENT_GAVE_KURT_RED_APRICORN
|
||||||
@ -208,7 +208,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 LURE_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 LURE_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_BLU_APRICORN
|
clearevent EVENT_GAVE_KURT_BLU_APRICORN
|
||||||
@ -218,7 +218,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 MOON_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 MOON_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_YLW_APRICORN
|
clearevent EVENT_GAVE_KURT_YLW_APRICORN
|
||||||
@ -228,7 +228,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 FRIEND_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 FRIEND_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_GRN_APRICORN
|
clearevent EVENT_GAVE_KURT_GRN_APRICORN
|
||||||
@ -238,7 +238,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 FAST_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 FAST_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_WHT_APRICORN
|
clearevent EVENT_GAVE_KURT_WHT_APRICORN
|
||||||
@ -248,7 +248,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 HEAVY_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 HEAVY_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_BLK_APRICORN
|
clearevent EVENT_GAVE_KURT_BLK_APRICORN
|
||||||
@ -258,7 +258,7 @@ KurtScript_0x18e178:
|
|||||||
checkflag ENGINE_KURT_MAKING_BALLS
|
checkflag ENGINE_KURT_MAKING_BALLS
|
||||||
iftrue KurtMakingBallsScript
|
iftrue KurtMakingBallsScript
|
||||||
writetext UnknownText_0x18e7fb
|
writetext UnknownText_0x18e7fb
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem2 LOVE_BALL, VAR_KURT_APRICORNS
|
verbosegiveitem2 LOVE_BALL, VAR_KURT_APRICORNS
|
||||||
iffalse .NoRoomForBall
|
iffalse .NoRoomForBall
|
||||||
clearevent EVENT_GAVE_KURT_PNK_APRICORN
|
clearevent EVENT_GAVE_KURT_PNK_APRICORN
|
||||||
|
@ -53,7 +53,7 @@ LanceScript_0x70022:
|
|||||||
iftrue UnknownScript_0x70057
|
iftrue UnknownScript_0x70057
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x70157
|
writetext UnknownText_0x70157
|
||||||
keeptextopen
|
buttonsound
|
||||||
faceplayer
|
faceplayer
|
||||||
writetext UnknownText_0x701b4
|
writetext UnknownText_0x701b4
|
||||||
yesorno
|
yesorno
|
||||||
@ -145,7 +145,7 @@ MapLakeofRageSignpost1Script:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x700b8:
|
UnknownScript_0x700b8:
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Special_MagikarpHouseSign
|
special Special_MagikarpHouseSign
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
@ -204,11 +204,11 @@ WesleyScript:
|
|||||||
checkevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
checkevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
||||||
iftrue .MetWesley
|
iftrue .MetWesley
|
||||||
writetext MeetWesleyText
|
writetext MeetWesleyText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
setevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
||||||
.MetWesley
|
.MetWesley
|
||||||
writetext WesleyGivesGiftText
|
writetext WesleyGivesGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem BLACKBELT
|
verbosegiveitem BLACKBELT
|
||||||
iffalse WesleyDoneScript
|
iffalse WesleyDoneScript
|
||||||
setevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
setevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
||||||
|
@ -14,7 +14,7 @@ HiddenPowerGuy:
|
|||||||
checkevent EVENT_GOT_TM10_HIDDEN_POWER
|
checkevent EVENT_GOT_TM10_HIDDEN_POWER
|
||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext HiddenPowerGuyText1
|
writetext HiddenPowerGuyText1
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_HIDDEN_POWER
|
verbosegiveitem TM_HIDDEN_POWER
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM10_HIDDEN_POWER
|
setevent EVENT_GOT_TM10_HIDDEN_POWER
|
||||||
|
@ -52,7 +52,7 @@ UnknownScript_0x19a6e0:
|
|||||||
|
|
||||||
UnknownScript_0x19a6fe:
|
UnknownScript_0x19a6fe:
|
||||||
writetext UnknownText_0x19a977
|
writetext UnknownText_0x19a977
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem ELIXER
|
verbosegiveitem ELIXER
|
||||||
iffalse UnknownScript_0x19a711
|
iffalse UnknownScript_0x19a711
|
||||||
writetext UnknownText_0x19a9c3
|
writetext UnknownText_0x19a9c3
|
||||||
|
@ -35,7 +35,7 @@ GentlemanScript_0x7ee6c:
|
|||||||
|
|
||||||
.UnknownScript_0x7ee80:
|
.UnknownScript_0x7ee80:
|
||||||
writetext UnknownText_0x7f0a1
|
writetext UnknownText_0x7f0a1
|
||||||
keeptextopen
|
buttonsound
|
||||||
stringtotext .expncardname, $1
|
stringtotext .expncardname, $1
|
||||||
scall .UnknownScript_0x7ee94
|
scall .UnknownScript_0x7ee94
|
||||||
setflag ENGINE_EXPN_CARD
|
setflag ENGINE_EXPN_CARD
|
||||||
|
@ -43,7 +43,7 @@ PryceScript_0x199a9e:
|
|||||||
setevent EVENT_BEAT_BOARDER_BRAD
|
setevent EVENT_BEAT_BOARDER_BRAD
|
||||||
setevent EVENT_BEAT_BOARDER_DOUGLAS
|
setevent EVENT_BEAT_BOARDER_DOUGLAS
|
||||||
writetext UnknownText_0x199d55
|
writetext UnknownText_0x199d55
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_ICY_WIND
|
verbosegiveitem TM_ICY_WIND
|
||||||
iffalse UnknownScript_0x199af4
|
iffalse UnknownScript_0x199af4
|
||||||
setevent EVENT_GOT_TM16_ICY_WIND
|
setevent EVENT_GOT_TM16_ICY_WIND
|
||||||
|
@ -21,7 +21,7 @@ ManiaScript:
|
|||||||
special SpecialGiveShuckle
|
special SpecialGiveShuckle
|
||||||
iffalse .partyfull
|
iffalse .partyfull
|
||||||
writetext ManiaText_TakeCareOfShuckle
|
writetext ManiaText_TakeCareOfShuckle
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext ManiaText_GotShuckle
|
writetext ManiaText_GotShuckle
|
||||||
playsound SFX_KEY_ITEM
|
playsound SFX_KEY_ITEM
|
||||||
|
@ -32,7 +32,7 @@ BlackBeltScript_0x7e1f6:
|
|||||||
loadfont
|
loadfont
|
||||||
UnknownScript_0x7e217:
|
UnknownScript_0x7e217:
|
||||||
writetext UnknownText_0x7e2c0
|
writetext UnknownText_0x7e2c0
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal $6, UnknownScript_0x7e237
|
if_equal $6, UnknownScript_0x7e237
|
||||||
|
@ -30,7 +30,7 @@ UnknownScript_0x196e56:
|
|||||||
applymovement PLAYER, MovementData_0x196f5a
|
applymovement PLAYER, MovementData_0x196f5a
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x196fa8
|
writetext UnknownText_0x196fa8
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
giveitem MYSTERY_EGG
|
giveitem MYSTERY_EGG
|
||||||
writetext UnknownText_0x196fd2
|
writetext UnknownText_0x196fd2
|
||||||
@ -40,10 +40,10 @@ UnknownScript_0x196e56:
|
|||||||
setevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON
|
setevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON
|
||||||
blackoutmod CHERRYGROVE_CITY
|
blackoutmod CHERRYGROVE_CITY
|
||||||
writetext UnknownText_0x196feb
|
writetext UnknownText_0x196feb
|
||||||
keeptextopen
|
buttonsound
|
||||||
spriteface MRPOKEMONSHOUSE_GENTLEMAN, RIGHT
|
spriteface MRPOKEMONSHOUSE_GENTLEMAN, RIGHT
|
||||||
writetext UnknownText_0x197092
|
writetext UnknownText_0x197092
|
||||||
keeptextopen
|
buttonsound
|
||||||
spriteface MRPOKEMONSHOUSE_GENTLEMAN, DOWN
|
spriteface MRPOKEMONSHOUSE_GENTLEMAN, DOWN
|
||||||
spriteface MRPOKEMONSHOUSE_OAK, LEFT
|
spriteface MRPOKEMONSHOUSE_OAK, LEFT
|
||||||
writetext UnknownText_0x1970b7
|
writetext UnknownText_0x1970b7
|
||||||
@ -91,7 +91,7 @@ UnknownScript_0x196ec9:
|
|||||||
spriteface PLAYER, RIGHT
|
spriteface PLAYER, RIGHT
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x197185
|
writetext UnknownText_0x197185
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x1973cc
|
writetext UnknownText_0x1973cc
|
||||||
playsound SFX_ITEM
|
playsound SFX_ITEM
|
||||||
|
@ -14,7 +14,7 @@ MrPsychic:
|
|||||||
checkevent EVENT_GOT_TM29_PSYCHIC
|
checkevent EVENT_GOT_TM29_PSYCHIC
|
||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext MrPsychicText1
|
writetext MrPsychicText1
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_PSYCHIC
|
verbosegiveitem TM_PSYCHIC
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM29_PSYCHIC
|
setevent EVENT_GOT_TM29_PSYCHIC
|
||||||
|
@ -33,7 +33,7 @@ TeacherScript_0x5c008:
|
|||||||
checkevent EVENT_GOT_QUICK_CLAW
|
checkevent EVENT_GOT_QUICK_CLAW
|
||||||
iftrue UnknownScript_0x5c01d
|
iftrue UnknownScript_0x5c01d
|
||||||
writetext UnknownText_0x5c265
|
writetext UnknownText_0x5c265
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem QUICK_CLAW
|
verbosegiveitem QUICK_CLAW
|
||||||
iffalse UnknownScript_0x5c021
|
iffalse UnknownScript_0x5c021
|
||||||
setevent EVENT_GOT_QUICK_CLAW
|
setevent EVENT_GOT_QUICK_CLAW
|
||||||
@ -85,7 +85,7 @@ SchoolboyJack1Script:
|
|||||||
checkevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x5c071
|
iftrue UnknownScript_0x5c071
|
||||||
writetext UnknownText_0x5c4f3
|
writetext UnknownText_0x5c4f3
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x5c0fc
|
scall UnknownScript_0x5c0fc
|
||||||
jump UnknownScript_0x5c074
|
jump UnknownScript_0x5c074
|
||||||
@ -215,7 +215,7 @@ PokefanfBeverly1Script:
|
|||||||
checkevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x5c160
|
iftrue UnknownScript_0x5c160
|
||||||
writetext UnknownText_0x5c5bd
|
writetext UnknownText_0x5c5bd
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x5c18f
|
scall UnknownScript_0x5c18f
|
||||||
jump UnknownScript_0x5c163
|
jump UnknownScript_0x5c163
|
||||||
|
@ -22,7 +22,7 @@ Oak:
|
|||||||
checkevent EVENT_TALKED_TO_OAK_IN_KANTO
|
checkevent EVENT_TALKED_TO_OAK_IN_KANTO
|
||||||
iftrue .CheckBadges
|
iftrue .CheckBadges
|
||||||
writetext OakWelcomeKantoText
|
writetext OakWelcomeKantoText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_TALKED_TO_OAK_IN_KANTO
|
setevent EVENT_TALKED_TO_OAK_IN_KANTO
|
||||||
.CheckBadges
|
.CheckBadges
|
||||||
checkcode VAR_BADGES
|
checkcode VAR_BADGES
|
||||||
@ -41,18 +41,18 @@ Oak:
|
|||||||
|
|
||||||
.OpenMtSilver
|
.OpenMtSilver
|
||||||
writetext OakOpenMtSilverText
|
writetext OakOpenMtSilverText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_OPENED_MT_SILVER
|
setevent EVENT_OPENED_MT_SILVER
|
||||||
jump .CheckPokedex
|
jump .CheckPokedex
|
||||||
|
|
||||||
.Complain
|
.Complain
|
||||||
writetext OakNoKantoBadgesText
|
writetext OakNoKantoBadgesText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .CheckPokedex
|
jump .CheckPokedex
|
||||||
|
|
||||||
.AhGood
|
.AhGood
|
||||||
writetext OakYesKantoBadgesText
|
writetext OakYesKantoBadgesText
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump .CheckPokedex
|
jump .CheckPokedex
|
||||||
|
|
||||||
ScientistScript_0x19b40f:
|
ScientistScript_0x19b40f:
|
||||||
|
@ -16,7 +16,7 @@ SailorScript_0x9c8c1:
|
|||||||
checkevent EVENT_GOT_HM04_STRENGTH
|
checkevent EVENT_GOT_HM04_STRENGTH
|
||||||
iftrue UnknownScript_0x9c8d3
|
iftrue UnknownScript_0x9c8d3
|
||||||
writetext UnknownText_0x9c8df
|
writetext UnknownText_0x9c8df
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem HM_STRENGTH
|
verbosegiveitem HM_STRENGTH
|
||||||
setevent EVENT_GOT_HM04_STRENGTH
|
setevent EVENT_GOT_HM04_STRENGTH
|
||||||
UnknownScript_0x9c8d3:
|
UnknownScript_0x9c8d3:
|
||||||
|
@ -17,7 +17,7 @@ GoodRodGuru:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .DontWantIt
|
iffalse .DontWantIt
|
||||||
writetext GiveGoodRodText
|
writetext GiveGoodRodText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem GOOD_ROD
|
verbosegiveitem GOOD_ROD
|
||||||
writetext GaveGoodRodText
|
writetext GaveGoodRodText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -33,7 +33,7 @@ JasmineScript_0x9c12f:
|
|||||||
checkevent EVENT_GOT_TM23_IRON_TAIL
|
checkevent EVENT_GOT_TM23_IRON_TAIL
|
||||||
iftrue UnknownScript_0x9c172
|
iftrue UnknownScript_0x9c172
|
||||||
writetext UnknownText_0x9c354
|
writetext UnknownText_0x9c354
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_IRON_TAIL
|
verbosegiveitem TM_IRON_TAIL
|
||||||
iffalse UnknownScript_0x9c176
|
iffalse UnknownScript_0x9c176
|
||||||
setevent EVENT_GOT_TM23_IRON_TAIL
|
setevent EVENT_GOT_TM23_IRON_TAIL
|
||||||
|
@ -18,7 +18,7 @@ JasmineScript_0x60b91:
|
|||||||
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
||||||
iftrue UnknownScript_0x60ba5
|
iftrue UnknownScript_0x60ba5
|
||||||
writetext UnknownText_0x60c81
|
writetext UnknownText_0x60c81
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
setevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
|
||||||
UnknownScript_0x60ba5:
|
UnknownScript_0x60ba5:
|
||||||
writetext UnknownText_0x60d64
|
writetext UnknownText_0x60d64
|
||||||
@ -31,7 +31,7 @@ UnknownScript_0x60bab:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x60c25
|
iffalse UnknownScript_0x60c25
|
||||||
writetext UnknownText_0x60dc3
|
writetext UnknownText_0x60dc3
|
||||||
keeptextopen
|
buttonsound
|
||||||
takeitem SECRETPOTION
|
takeitem SECRETPOTION
|
||||||
writetext UnknownText_0x60dea
|
writetext UnknownText_0x60dea
|
||||||
waitbutton
|
waitbutton
|
||||||
@ -43,7 +43,7 @@ UnknownScript_0x60bab:
|
|||||||
playmusic MUSIC_HEAL
|
playmusic MUSIC_HEAL
|
||||||
writetext UnknownText_0x60e44
|
writetext UnknownText_0x60e44
|
||||||
pause 60
|
pause 60
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
special RestartMapMusic
|
special RestartMapMusic
|
||||||
cry AMPHAROS
|
cry AMPHAROS
|
||||||
@ -110,7 +110,7 @@ MonsterScript_0x60c3a:
|
|||||||
writetext UnknownText_0x60f03
|
writetext UnknownText_0x60f03
|
||||||
writebyte AMPHAROS
|
writebyte AMPHAROS
|
||||||
special PlaySlowCry
|
special PlaySlowCry
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x60f19
|
writetext UnknownText_0x60f19
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@ -97,7 +97,7 @@ UnknownScript_0x7494e:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x74992
|
iffalse UnknownScript_0x74992
|
||||||
writetext UnknownText_0x74ada
|
writetext UnknownText_0x74ada
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkitem S_S_TICKET
|
checkitem S_S_TICKET
|
||||||
iffalse UnknownScript_0x7496d
|
iffalse UnknownScript_0x7496d
|
||||||
writetext UnknownText_0x74b11
|
writetext UnknownText_0x74b11
|
||||||
@ -162,7 +162,7 @@ UnknownScript_0x749c0:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x7498c
|
iffalse UnknownScript_0x7498c
|
||||||
writetext UnknownText_0x74ada
|
writetext UnknownText_0x74ada
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkitem S_S_TICKET
|
checkitem S_S_TICKET
|
||||||
iffalse UnknownScript_0x749ec
|
iffalse UnknownScript_0x749ec
|
||||||
writetext UnknownText_0x74b11
|
writetext UnknownText_0x74b11
|
||||||
|
@ -31,7 +31,7 @@ GrampsScript_0x18c00f:
|
|||||||
checkevent EVENT_GOT_SILVER_WING
|
checkevent EVENT_GOT_SILVER_WING
|
||||||
iftrue UnknownScript_0x18c023
|
iftrue UnknownScript_0x18c023
|
||||||
writetext UnknownText_0x18c0c6
|
writetext UnknownText_0x18c0c6
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem SILVER_WING
|
verbosegiveitem SILVER_WING
|
||||||
setevent EVENT_GOT_SILVER_WING
|
setevent EVENT_GOT_SILVER_WING
|
||||||
closetext
|
closetext
|
||||||
|
@ -600,7 +600,7 @@ OfficerScript_0x192c9a:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .RefusedGift
|
iffalse .RefusedGift
|
||||||
writetext Text_MysteryGiftDeliveryGuy_HereYouGo
|
writetext Text_MysteryGiftDeliveryGuy_HereYouGo
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
special Special_GetMysteryGiftItem
|
special Special_GetMysteryGiftItem
|
||||||
iffalse .BagIsFull
|
iffalse .BagIsFull
|
||||||
|
@ -24,10 +24,10 @@ GentlemanScript_0x1917e9:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x19181b
|
iffalse UnknownScript_0x19181b
|
||||||
writetext UnknownText_0x191911
|
writetext UnknownText_0x191911
|
||||||
keeptextopen
|
buttonsound
|
||||||
UnknownScript_0x191802:
|
UnknownScript_0x191802:
|
||||||
writetext UnknownText_0x191a3d
|
writetext UnknownText_0x191a3d
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem RARE_CANDY
|
verbosegiveitem RARE_CANDY
|
||||||
iffalse UnknownScript_0x19181f
|
iffalse UnknownScript_0x19181f
|
||||||
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
|
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
|
||||||
@ -73,9 +73,9 @@ UnknownScript_0x191838:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x191844:
|
UnknownScript_0x191844:
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x191c5a
|
writetext UnknownText_0x191c5a
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
giveitem LOST_ITEM
|
giveitem LOST_ITEM
|
||||||
iffalse UnknownScript_0x191865
|
iffalse UnknownScript_0x191865
|
||||||
|
@ -162,7 +162,7 @@ UnknownScript_0x188e8d:
|
|||||||
|
|
||||||
UnknownScript_0x188e93:
|
UnknownScript_0x188e93:
|
||||||
writetext UnknownText_0x18936e
|
writetext UnknownText_0x18936e
|
||||||
keeptextopen
|
buttonsound
|
||||||
takeitem MACHINE_PART
|
takeitem MACHINE_PART
|
||||||
setevent EVENT_RETURNED_MACHINE_PART
|
setevent EVENT_RETURNED_MACHINE_PART
|
||||||
clearevent EVENT_SAFFRON_TRAIN_STATION_POPULATION
|
clearevent EVENT_SAFFRON_TRAIN_STATION_POPULATION
|
||||||
@ -174,7 +174,7 @@ UnknownScript_0x188eac:
|
|||||||
checkevent EVENT_GOT_TM07_ZAP_CANNON
|
checkevent EVENT_GOT_TM07_ZAP_CANNON
|
||||||
iftrue UnknownScript_0x188ec5
|
iftrue UnknownScript_0x188ec5
|
||||||
writetext UnknownText_0x1893c4
|
writetext UnknownText_0x1893c4
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_ZAP_CANNON
|
verbosegiveitem TM_ZAP_CANNON
|
||||||
iffalse UnknownScript_0x188ec3
|
iffalse UnknownScript_0x188ec3
|
||||||
setevent EVENT_GOT_TM07_ZAP_CANNON
|
setevent EVENT_GOT_TM07_ZAP_CANNON
|
||||||
|
@ -33,7 +33,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
faceplayer
|
faceplayer
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x5ceba
|
writetext UnknownText_0x5ceba
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Special_CheckLuckyNumberShowFlag
|
special Special_CheckLuckyNumberShowFlag
|
||||||
iffalse .skip
|
iffalse .skip
|
||||||
special Special_ResetLuckyNumberShowFlag
|
special Special_ResetLuckyNumberShowFlag
|
||||||
@ -42,17 +42,17 @@ GentlemanScript_0x5cd3d:
|
|||||||
checkflag ENGINE_LUCKY_NUMBER_SHOW
|
checkflag ENGINE_LUCKY_NUMBER_SHOW
|
||||||
iftrue .GameOver
|
iftrue .GameOver
|
||||||
writetext UnknownText_0x5cf3a
|
writetext UnknownText_0x5cf3a
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce71
|
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce71
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x5cf5a
|
writetext UnknownText_0x5cf5a
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x5cf79
|
writetext UnknownText_0x5cf79
|
||||||
playsound SFX_DEX_FANFARE_20_49
|
playsound SFX_DEX_FANFARE_20_49
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Special_CheckForLuckyNumberWinners
|
special Special_CheckForLuckyNumberWinners
|
||||||
closetext
|
closetext
|
||||||
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce74
|
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce74
|
||||||
@ -72,7 +72,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
writetext UnknownText_0x5cfb5
|
writetext UnknownText_0x5cfb5
|
||||||
playsound SFX_1ST_PLACE
|
playsound SFX_1ST_PLACE
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem MASTER_BALL
|
giveitem MASTER_BALL
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
@ -83,7 +83,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
writetext UnknownText_0x5d023
|
writetext UnknownText_0x5d023
|
||||||
playsound SFX_2ND_PLACE
|
playsound SFX_2ND_PLACE
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem EXP_SHARE
|
giveitem EXP_SHARE
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
@ -94,7 +94,7 @@ GentlemanScript_0x5cd3d:
|
|||||||
writetext UnknownText_0x5d076
|
writetext UnknownText_0x5d076
|
||||||
playsound SFX_3RD_PLACE
|
playsound SFX_3RD_PLACE
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
giveitem PP_UP
|
giveitem PP_UP
|
||||||
iffalse .BagFull
|
iffalse .BagFull
|
||||||
itemnotify
|
itemnotify
|
||||||
@ -147,11 +147,11 @@ CooltrainerFScript_0x5cdd5:
|
|||||||
playsound SFX_ELEVATOR_END
|
playsound SFX_ELEVATOR_END
|
||||||
waitsfx
|
waitsfx
|
||||||
writetext UnknownText_0x5d37b
|
writetext UnknownText_0x5d37b
|
||||||
keeptextopen
|
buttonsound
|
||||||
stringtotext RadioCardText, $1
|
stringtotext RadioCardText, $1
|
||||||
scall UnknownScript_0x5ce3e
|
scall UnknownScript_0x5ce3e
|
||||||
writetext UnknownText_0x5d3c0
|
writetext UnknownText_0x5d3c0
|
||||||
keeptextopen
|
buttonsound
|
||||||
setflag ENGINE_RADIO_CARD
|
setflag ENGINE_RADIO_CARD
|
||||||
UnknownScript_0x5ce2d:
|
UnknownScript_0x5ce2d:
|
||||||
writetext UnknownText_0x5d3e5
|
writetext UnknownText_0x5d3e5
|
||||||
|
@ -162,7 +162,7 @@ UnknownScript_0x5d7be:
|
|||||||
|
|
||||||
UnknownScript_0x5d800:
|
UnknownScript_0x5d800:
|
||||||
writetext UnknownText_0x5dcf4
|
writetext UnknownText_0x5dcf4
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_BUENA
|
setevent EVENT_MET_BUENA
|
||||||
verbosegiveitem BLUE_CARD
|
verbosegiveitem BLUE_CARD
|
||||||
UnknownScript_0x5d80a:
|
UnknownScript_0x5d80a:
|
||||||
@ -286,7 +286,7 @@ UnknownScript_0x5d8d0:
|
|||||||
writetext UnknownText_0x5e2f3
|
writetext UnknownText_0x5e2f3
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x5e310
|
writetext UnknownText_0x5e310
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -315,14 +315,14 @@ ReceptionistScript_0x5d8ff:
|
|||||||
checkitem BLUE_CARD
|
checkitem BLUE_CARD
|
||||||
iffalse UnknownScript_0x5d90f
|
iffalse UnknownScript_0x5d90f
|
||||||
writetext UnknownText_0x5e392
|
writetext UnknownText_0x5e392
|
||||||
keeptextopen
|
buttonsound
|
||||||
special SpecialBuenaPrize
|
special SpecialBuenaPrize
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x5d90f:
|
UnknownScript_0x5d90f:
|
||||||
writetext UnknownText_0x5e3d8
|
writetext UnknownText_0x5e3d8
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ UnknownScript_0x5e584:
|
|||||||
|
|
||||||
UnknownScript_0x5e58a:
|
UnknownScript_0x5e58a:
|
||||||
writetext UnknownText_0x5e7e2
|
writetext UnknownText_0x5e7e2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_SUNNY_DAY
|
verbosegiveitem TM_SUNNY_DAY
|
||||||
iffalse UnknownScript_0x5e5a1
|
iffalse UnknownScript_0x5e5a1
|
||||||
writetext UnknownText_0x5e821
|
writetext UnknownText_0x5e821
|
||||||
|
@ -31,7 +31,7 @@ TeacherScript_0x5eb85:
|
|||||||
|
|
||||||
UnknownScript_0x5eb99:
|
UnknownScript_0x5eb99:
|
||||||
writetext UnknownText_0x5ecab
|
writetext UnknownText_0x5ecab
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem PINK_BOW
|
verbosegiveitem PINK_BOW
|
||||||
iffalse UnknownScript_0x5ebb0
|
iffalse UnknownScript_0x5ebb0
|
||||||
writetext UnknownText_0x5ecef
|
writetext UnknownText_0x5ecef
|
||||||
|
@ -46,7 +46,7 @@ UnknownScript_0x60011:
|
|||||||
returnafterbattle
|
returnafterbattle
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x60246
|
writetext UnknownText_0x60246
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem BASEMENT_KEY
|
verbosegiveitem BASEMENT_KEY
|
||||||
closetext
|
closetext
|
||||||
dotrigger $1
|
dotrigger $1
|
||||||
@ -123,7 +123,7 @@ UnknownScript_0x6006e:
|
|||||||
spriteface PLAYER, RIGHT
|
spriteface PLAYER, RIGHT
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x605b2
|
writetext UnknownText_0x605b2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem CLEAR_BELL
|
verbosegiveitem CLEAR_BELL
|
||||||
writetext UnknownText_0x6062c
|
writetext UnknownText_0x6062c
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -17,7 +17,7 @@ FishingGuruScript_0x7f484:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x7f4a6
|
iffalse UnknownScript_0x7f4a6
|
||||||
writetext UnknownText_0x7f52f
|
writetext UnknownText_0x7f52f
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem SUPER_ROD
|
verbosegiveitem SUPER_ROD
|
||||||
iffalse UnknownScript_0x7f4aa
|
iffalse UnknownScript_0x7f4aa
|
||||||
setevent EVENT_GOT_SUPER_ROD
|
setevent EVENT_GOT_SUPER_ROD
|
||||||
|
@ -23,7 +23,7 @@ RocketScript_0x1adbfa:
|
|||||||
playmusic MUSIC_ROCKET_ENCOUNTER
|
playmusic MUSIC_ROCKET_ENCOUNTER
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x1addc0
|
writetext UnknownText_0x1addc0
|
||||||
keeptextopen
|
buttonsound
|
||||||
special Special_RotatePalettesRightMusic
|
special Special_RotatePalettesRightMusic
|
||||||
writetext UnknownText_0x1adee1
|
writetext UnknownText_0x1adee1
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -165,7 +165,7 @@ CooltrainerMScript_0x19efac:
|
|||||||
checkevent EVENT_CLEARED_NUGGET_BRIDGE
|
checkevent EVENT_CLEARED_NUGGET_BRIDGE
|
||||||
iftrue UnknownScript_0x19efc7
|
iftrue UnknownScript_0x19efc7
|
||||||
writetext UnknownText_0x19f43b
|
writetext UnknownText_0x19f43b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem NUGGET
|
verbosegiveitem NUGGET
|
||||||
iffalse UnknownScript_0x19efde
|
iffalse UnknownScript_0x19efde
|
||||||
setevent EVENT_CLEARED_NUGGET_BRIDGE
|
setevent EVENT_CLEARED_NUGGET_BRIDGE
|
||||||
|
@ -40,7 +40,7 @@ CooltrainermGaven3Script:
|
|||||||
checkevent EVENT_GAVEN_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_GAVEN_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1a4d62
|
iftrue UnknownScript_0x1a4d62
|
||||||
writetext UnknownText_0x1a4fe4
|
writetext UnknownText_0x1a4fe4
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_GAVEN_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_GAVEN_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1a4dbf
|
scall UnknownScript_0x1a4dbf
|
||||||
jump UnknownScript_0x1a4d65
|
jump UnknownScript_0x1a4d65
|
||||||
@ -144,7 +144,7 @@ CooltrainerfBeth1Script:
|
|||||||
checkevent EVENT_BETH_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_BETH_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1a4e1e
|
iftrue UnknownScript_0x1a4e1e
|
||||||
writetext UnknownText_0x1a51d9
|
writetext UnknownText_0x1a51d9
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_BETH_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_BETH_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1a4e7b
|
scall UnknownScript_0x1a4e7b
|
||||||
jump UnknownScript_0x1a4e21
|
jump UnknownScript_0x1a4e21
|
||||||
|
@ -40,7 +40,7 @@ UnknownScript_0x1a088c:
|
|||||||
spriteface PLAYER, RIGHT
|
spriteface PLAYER, RIGHT
|
||||||
loadfont
|
loadfont
|
||||||
writetext UnknownText_0x1a0a6b
|
writetext UnknownText_0x1a0a6b
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x1a0a71
|
writetext UnknownText_0x1a0a71
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@ -77,7 +77,7 @@ Bird_keeperJose2Script:
|
|||||||
checkevent EVENT_JOSE_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_JOSE_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1a08e8
|
iftrue UnknownScript_0x1a08e8
|
||||||
writetext UnknownText_0x1a0e42
|
writetext UnknownText_0x1a0e42
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_JOSE_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_JOSE_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1a0957
|
scall UnknownScript_0x1a0957
|
||||||
jump UnknownScript_0x1a08eb
|
jump UnknownScript_0x1a08eb
|
||||||
@ -210,7 +210,7 @@ CooltrainerfReena1Script:
|
|||||||
checkevent EVENT_REENA_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_REENA_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1a09d2
|
iftrue UnknownScript_0x1a09d2
|
||||||
writetext UnknownText_0x1a0c35
|
writetext UnknownText_0x1a0c35
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_REENA_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_REENA_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1a0a2f
|
scall UnknownScript_0x1a0a2f
|
||||||
jump UnknownScript_0x1a09d5
|
jump UnknownScript_0x1a09d5
|
||||||
|
@ -15,13 +15,13 @@ SandstormHouseWoman:
|
|||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
writetext SandstormHouseWomanText1
|
writetext SandstormHouseWomanText1
|
||||||
keeptextopen
|
buttonsound
|
||||||
if_greater_than $95, .Loyal
|
if_greater_than $95, .Loyal
|
||||||
jump .Disloyal
|
jump .Disloyal
|
||||||
|
|
||||||
.Loyal
|
.Loyal
|
||||||
writetext SandstormHouseWomanLoyalText
|
writetext SandstormHouseWomanLoyalText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_SANDSTORM
|
verbosegiveitem TM_SANDSTORM
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM37_SANDSTORM
|
setevent EVENT_GOT_TM37_SANDSTORM
|
||||||
|
@ -21,7 +21,7 @@ Celebrity:
|
|||||||
checkevent EVENT_GOT_TM47_STEEL_WING
|
checkevent EVENT_GOT_TM47_STEEL_WING
|
||||||
iftrue .AlreadyGotItem
|
iftrue .AlreadyGotItem
|
||||||
writetext CelebrityText1
|
writetext CelebrityText1
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_STEEL_WING
|
verbosegiveitem TM_STEEL_WING
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_TM47_STEEL_WING
|
setevent EVENT_GOT_TM47_STEEL_WING
|
||||||
|
@ -181,11 +181,11 @@ TuscanyScript:
|
|||||||
checkevent EVENT_MET_TUSCANY_OF_TUESDAY
|
checkevent EVENT_MET_TUSCANY_OF_TUESDAY
|
||||||
iftrue .MetTuscany
|
iftrue .MetTuscany
|
||||||
writetext MeetTuscanyText
|
writetext MeetTuscanyText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_TUSCANY_OF_TUESDAY
|
setevent EVENT_MET_TUSCANY_OF_TUESDAY
|
||||||
.MetTuscany
|
.MetTuscany
|
||||||
writetext TuscanyGivesGiftText
|
writetext TuscanyGivesGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem PINK_BOW
|
verbosegiveitem PINK_BOW
|
||||||
iffalse TuscanyDoneScript
|
iffalse TuscanyDoneScript
|
||||||
setevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
setevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
||||||
|
@ -14,7 +14,7 @@ FisherScript_0x9b847:
|
|||||||
checkevent EVENT_GOT_NUGGET_FROM_GUY
|
checkevent EVENT_GOT_NUGGET_FROM_GUY
|
||||||
iftrue .GotItem
|
iftrue .GotItem
|
||||||
writetext UnknownText_0x9b865
|
writetext UnknownText_0x9b865
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem NUGGET
|
verbosegiveitem NUGGET
|
||||||
iffalse .Done
|
iffalse .Done
|
||||||
setevent EVENT_GOT_NUGGET_FROM_GUY
|
setevent EVENT_GOT_NUGGET_FROM_GUY
|
||||||
|
@ -52,7 +52,7 @@ YoungsterJoey1Script:
|
|||||||
checkevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1a16c9
|
iftrue UnknownScript_0x1a16c9
|
||||||
writetext UnknownText_0x1a18c2
|
writetext UnknownText_0x1a18c2
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_JOEY_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1a1783
|
scall UnknownScript_0x1a1783
|
||||||
jump UnknownScript_0x1a16cc
|
jump UnknownScript_0x1a16cc
|
||||||
|
@ -14,7 +14,7 @@ PokefanMScript_0x196d64:
|
|||||||
checkevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
checkevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
||||||
iftrue UnknownScript_0x196d79
|
iftrue UnknownScript_0x196d79
|
||||||
writetext UnknownText_0x196d82
|
writetext UnknownText_0x196d82
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem BERRY
|
verbosegiveitem BERRY
|
||||||
iffalse UnknownScript_0x196d7d
|
iffalse UnknownScript_0x196d7d
|
||||||
setevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
setevent EVENT_GOT_BERRY_FROM_ROUTE_30_HOUSE
|
||||||
|
@ -199,16 +199,16 @@ FisherScript_0x1a5570:
|
|||||||
|
|
||||||
.TryGiveKenya:
|
.TryGiveKenya:
|
||||||
writetext UnknownText_0x1a5761
|
writetext UnknownText_0x1a5761
|
||||||
keeptextopen
|
buttonsound
|
||||||
checkpokeitem ReceivedSpearowMailText
|
checkpokeitem ReceivedSpearowMailText
|
||||||
if_equal $0, .WrongMail
|
if_equal $0, .WrongMail
|
||||||
if_equal $2, .Refused
|
if_equal $2, .Refused
|
||||||
if_equal $3, .NoMail
|
if_equal $3, .NoMail
|
||||||
if_equal $4, .LastMon
|
if_equal $4, .LastMon
|
||||||
writetext UnknownText_0x1a5790
|
writetext UnknownText_0x1a5790
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x1a57ba
|
writetext UnknownText_0x1a57ba
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_GAVE_KENYA
|
setevent EVENT_GAVE_KENYA
|
||||||
verbosegiveitem TM_NIGHTMARE
|
verbosegiveitem TM_NIGHTMARE
|
||||||
iffalse .NoRoomForItems
|
iffalse .NoRoomForItems
|
||||||
|
@ -72,7 +72,7 @@ UnknownScript_0x190489:
|
|||||||
|
|
||||||
UnknownScript_0x19048f:
|
UnknownScript_0x19048f:
|
||||||
writetext UnknownText_0x190925
|
writetext UnknownText_0x190925
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem MIRACLE_SEED
|
verbosegiveitem MIRACLE_SEED
|
||||||
iffalse UnknownScript_0x1904a9
|
iffalse UnknownScript_0x1904a9
|
||||||
setevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
|
setevent EVENT_GOT_MIRACLE_SEED_IN_ROUTE_32
|
||||||
@ -113,7 +113,7 @@ FisherScript_0x1904ce:
|
|||||||
checkevent EVENT_GOT_TM05_ROAR
|
checkevent EVENT_GOT_TM05_ROAR
|
||||||
iftrue UnknownScript_0x1904e3
|
iftrue UnknownScript_0x1904e3
|
||||||
writetext UnknownText_0x191133
|
writetext UnknownText_0x191133
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_ROAR
|
verbosegiveitem TM_ROAR
|
||||||
iffalse UnknownScript_0x1904e7
|
iffalse UnknownScript_0x1904e7
|
||||||
setevent EVENT_GOT_TM05_ROAR
|
setevent EVENT_GOT_TM05_ROAR
|
||||||
@ -186,7 +186,7 @@ FisherRalph1Script:
|
|||||||
checkevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x190566
|
iftrue UnknownScript_0x190566
|
||||||
writetext UnknownText_0x190bf8
|
writetext UnknownText_0x190bf8
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_RALPH_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1905f7
|
scall UnknownScript_0x1905f7
|
||||||
jump UnknownScript_0x190569
|
jump UnknownScript_0x190569
|
||||||
@ -320,7 +320,7 @@ PicnickerLiz1Script:
|
|||||||
checkevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x190656
|
iftrue UnknownScript_0x190656
|
||||||
writetext UnknownText_0x191060
|
writetext UnknownText_0x191060
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_LIZ_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1906e1
|
scall UnknownScript_0x1906e1
|
||||||
jump UnknownScript_0x190659
|
jump UnknownScript_0x190659
|
||||||
@ -466,11 +466,11 @@ FriedaScript:
|
|||||||
checkevent EVENT_MET_FRIEDA_OF_FRIDAY
|
checkevent EVENT_MET_FRIEDA_OF_FRIDAY
|
||||||
iftrue .MetFrieda
|
iftrue .MetFrieda
|
||||||
writetext MeetFriedaText
|
writetext MeetFriedaText
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_MET_FRIEDA_OF_FRIDAY
|
setevent EVENT_MET_FRIEDA_OF_FRIDAY
|
||||||
.MetFrieda
|
.MetFrieda
|
||||||
writetext FriedaGivesGiftText
|
writetext FriedaGivesGiftText
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem POISON_BARB
|
verbosegiveitem POISON_BARB
|
||||||
iffalse FriedaDoneScript
|
iffalse FriedaDoneScript
|
||||||
setevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
|
setevent EVENT_GOT_POISON_BARB_FROM_FRIEDA
|
||||||
|
@ -22,7 +22,7 @@ FishingGuruScript_0x69b55:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x69b74
|
iffalse UnknownScript_0x69b74
|
||||||
writetext UnknownText_0x69be8
|
writetext UnknownText_0x69be8
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem OLD_ROD
|
verbosegiveitem OLD_ROD
|
||||||
writetext UnknownText_0x69c1b
|
writetext UnknownText_0x69c1b
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@ -29,7 +29,7 @@ HikerAnthony2Script:
|
|||||||
checkevent EVENT_ANTHONY_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_ANTHONY_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x1ac03a
|
iftrue UnknownScript_0x1ac03a
|
||||||
writetext UnknownText_0x1ac153
|
writetext UnknownText_0x1ac153
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_ANTHONY_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_ANTHONY_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x1ac0cb
|
scall UnknownScript_0x1ac0cb
|
||||||
jump UnknownScript_0x1ac03d
|
jump UnknownScript_0x1ac03d
|
||||||
|
@ -106,7 +106,7 @@ CamperTodd1Script:
|
|||||||
checkevent EVENT_TODD_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_TODD_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x780a6
|
iftrue UnknownScript_0x780a6
|
||||||
writetext UnknownText_0x784f0
|
writetext UnknownText_0x784f0
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_TODD_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_TODD_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x78137
|
scall UnknownScript_0x78137
|
||||||
jump UnknownScript_0x780a9
|
jump UnknownScript_0x780a9
|
||||||
@ -231,7 +231,7 @@ PicnickerGina1Script:
|
|||||||
checkevent EVENT_GINA_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_GINA_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x78188
|
iftrue UnknownScript_0x78188
|
||||||
writetext UnknownText_0x785b8
|
writetext UnknownText_0x785b8
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_GINA_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_GINA_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x78228
|
scall UnknownScript_0x78228
|
||||||
jump UnknownScript_0x7818b
|
jump UnknownScript_0x7818b
|
||||||
@ -464,7 +464,7 @@ CooltrainerfKateScript:
|
|||||||
checkevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
checkevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
||||||
iftrue UnknownScript_0x78319
|
iftrue UnknownScript_0x78319
|
||||||
writetext UnknownText_0x788e2
|
writetext UnknownText_0x788e2
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem SOFT_SAND
|
verbosegiveitem SOFT_SAND
|
||||||
iffalse UnknownScript_0x7831d
|
iffalse UnknownScript_0x7831d
|
||||||
setevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
setevent EVENT_GOT_SOFT_SAND_FROM_KATE
|
||||||
|
@ -53,7 +53,7 @@ TeacherScript_0x62d63:
|
|||||||
checkevent EVENT_GOT_TM12_SWEET_SCENT
|
checkevent EVENT_GOT_TM12_SWEET_SCENT
|
||||||
iftrue UnknownScript_0x62d7e
|
iftrue UnknownScript_0x62d7e
|
||||||
writetext UnknownText_0x62d9d
|
writetext UnknownText_0x62d9d
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem TM_SWEET_SCENT
|
verbosegiveitem TM_SWEET_SCENT
|
||||||
iffalse UnknownScript_0x62d82
|
iffalse UnknownScript_0x62d82
|
||||||
setevent EVENT_GOT_TM12_SWEET_SCENT
|
setevent EVENT_GOT_TM12_SWEET_SCENT
|
||||||
@ -66,7 +66,7 @@ UnknownScript_0x62d82:
|
|||||||
|
|
||||||
UnknownScript_0x62d84:
|
UnknownScript_0x62d84:
|
||||||
writetext UnknownText_0x62e41
|
writetext UnknownText_0x62e41
|
||||||
keeptextopen
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ JugglerIrwin1Script:
|
|||||||
checkevent EVENT_IRWIN_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_IRWIN_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x19c8ec
|
iftrue UnknownScript_0x19c8ec
|
||||||
writetext UnknownText_0x19cd5a
|
writetext UnknownText_0x19cd5a
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_IRWIN_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_IRWIN_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x19c903
|
scall UnknownScript_0x19c903
|
||||||
jump UnknownScript_0x19c8ef
|
jump UnknownScript_0x19c8ef
|
||||||
@ -144,7 +144,7 @@ Bug_catcherArnie1Script:
|
|||||||
checkevent EVENT_ARNIE_ASKED_FOR_PHONE_NUMBER
|
checkevent EVENT_ARNIE_ASKED_FOR_PHONE_NUMBER
|
||||||
iftrue UnknownScript_0x19c9a4
|
iftrue UnknownScript_0x19c9a4
|
||||||
writetext UnknownText_0x19cdf6
|
writetext UnknownText_0x19cdf6
|
||||||
keeptextopen
|
buttonsound
|
||||||
setevent EVENT_ARNIE_ASKED_FOR_PHONE_NUMBER
|
setevent EVENT_ARNIE_ASKED_FOR_PHONE_NUMBER
|
||||||
scall UnknownScript_0x19c903
|
scall UnknownScript_0x19c903
|
||||||
jump UnknownScript_0x19c9a7
|
jump UnknownScript_0x19c9a7
|
||||||
|
@ -23,7 +23,7 @@ OfficerScript_0x69d37:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .refused
|
iffalse .refused
|
||||||
writetext UnknownText_0x69e48
|
writetext UnknownText_0x69e48
|
||||||
keeptextopen
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, .partyfull
|
if_equal PARTY_LENGTH, .partyfull
|
||||||
@ -53,7 +53,7 @@ OfficerScript_0x69d37:
|
|||||||
|
|
||||||
.questcomplete:
|
.questcomplete:
|
||||||
writetext UnknownText_0x69f8b
|
writetext UnknownText_0x69f8b
|
||||||
keeptextopen
|
buttonsound
|
||||||
verbosegiveitem HP_UP
|
verbosegiveitem HP_UP
|
||||||
iffalse .bagfull
|
iffalse .bagfull
|
||||||
setevent EVENT_GOT_HP_UP_FROM_RANDY
|
setevent EVENT_GOT_HP_UP_FROM_RANDY
|
||||||
|
@ -107,7 +107,7 @@ Route35NationalParkgate_OkayToProceed:
|
|||||||
setflag ENGINE_BUG_CONTEST_TIMER
|
setflag ENGINE_BUG_CONTEST_TIMER
|
||||||
special PlayMapMusic
|
special PlayMapMusic
|
||||||
writetext UnknownText_0x6a39d
|
writetext UnknownText_0x6a39d
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x6a3c7
|
writetext UnknownText_0x6a3c7
|
||||||
playsound SFX_ITEM
|
playsound SFX_ITEM
|
||||||
waitsfx
|
waitsfx
|
||||||
@ -149,11 +149,11 @@ Route35NationalParkgate_LessThanFullParty: ; 6a27d
|
|||||||
iftrue Route35NationalParkgate_FirstMonIsFainted
|
iftrue Route35NationalParkgate_FirstMonIsFainted
|
||||||
setevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
setevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
||||||
writetext UnknownText_0x6a537
|
writetext UnknownText_0x6a537
|
||||||
keeptextopen
|
buttonsound
|
||||||
writetext UnknownText_0x6a56b
|
writetext UnknownText_0x6a56b
|
||||||
playsound SFX_GOT_SAFARI_BALLS
|
playsound SFX_GOT_SAFARI_BALLS
|
||||||
waitsfx
|
waitsfx
|
||||||
keeptextopen
|
buttonsound
|
||||||
jump Route35NationalParkgate_OkayToProceed
|
jump Route35NationalParkgate_OkayToProceed
|
||||||
|
|
||||||
Route35NationalParkgate_DeclinedToParticipate:
|
Route35NationalParkgate_DeclinedToParticipate:
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user