Rename buttonsound to promptbutton

This commit is contained in:
Rangi 2019-11-03 12:48:54 -05:00
parent 5134266b9a
commit 4aeab6b879
149 changed files with 804 additions and 801 deletions

View File

@ -94,7 +94,7 @@ _GrewToLevelText::
text_decimal wCurPartyLevel, 1, 3 text_decimal wCurPartyLevel, 1, 3
text "!@" text "!@"
sound_dex_fanfare_50_79 ; plays SFX_DEX_FANFARE_50_79, identical to SFX_LEVEL_UP sound_dex_fanfare_50_79 ; plays SFX_DEX_FANFARE_50_79, identical to SFX_LEVEL_UP
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1343,7 +1343,7 @@ _ReceiveItemText::
text_ram wStringBuffer1 text_ram wStringBuffer1
text "!@" text "!@"
sound_item sound_item
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused

View File

@ -314,7 +314,7 @@ _CutNothingText::
_BlindingFlashText:: _BlindingFlashText::
text "A blinding FLASH" text "A blinding FLASH"
line "lights the area!@" line "lights the area!@"
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -794,7 +794,7 @@ _BreedEggHatchText::
text " came" text " came"
line "out of its EGG!@" line "out of its EGG!@"
sound_caught_mon sound_caught_mon
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1055,7 +1055,7 @@ _KarpGuruRecordText::
text " caught by" text " caught by"
line "@" line "@"
text_ram wMagikarpRecordHoldersName text_ram wMagikarpRecordHoldersName
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1551,7 +1551,7 @@ _OakText2::
text_end text_end
_OakText3:: _OakText3::
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused

View File

@ -959,7 +959,7 @@ _LearnedMoveText::
text_ram wStringBuffer2 text_ram wStringBuffer2
text "!@" text "!@"
sound_dex_fanfare_50_79 sound_dex_fanfare_50_79
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1244,7 +1244,7 @@ Text_BallCaught::
text_end ; unused text_end ; unused
_WaitButtonText:: _WaitButtonText::
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1261,7 +1261,7 @@ _NewDexDataText::
line "was newly added to" line "was newly added to"
cont "the #DEX.@" cont "the #DEX.@"
sound_slot_machine_start sound_slot_machine_start
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused
@ -1308,7 +1308,7 @@ _FluteWakeUpText::
Text_PlayedPokeFlute:: Text_PlayedPokeFlute::
text "<PLAYER> played the" text "<PLAYER> played the"
line "# FLUTE.@" line "# FLUTE.@"
text_waitbutton text_promptbutton
text_end text_end
text_end ; unused text_end ; unused

View File

@ -298,7 +298,7 @@ If <code><i>item_id</i></code> = `USE_SCRIPT_VAR`, then it uses `[wScriptVar]` i
## `$54`: `waitbutton` ## `$54`: `waitbutton`
## `$55`: `buttonsound` ## `$55`: `promptbutton`
## `$56`: <code>pokepic <i>mon_id</i></code> ## `$56`: <code>pokepic <i>mon_id</i></code>

View File

@ -35,7 +35,7 @@ Draw a box.
Write text at (1, 16). Write text at (1, 16).
## `$06`: `text_waitbutton` ## `$06`: `text_promptbutton`
Wait for button press; show arrow. Wait for button press; show arrow.
@ -71,7 +71,7 @@ Play `SFX_DEX_FANFARE_50_79`.
Print *n* `"…"`s, pausing for 10 frames after each; interrupt if A or B is pressed. Print *n* `"…"`s, pausing for 10 frames after each; interrupt if A or B is pressed.
## `$0D`: `text_linkwaitbutton` ## `$0D`: `text_linkpromptbutton`
Wait for button press; show arrow. Wait for button press; show arrow.

View File

@ -4,7 +4,7 @@ FruitTreeScript::
readmem wCurFruit readmem wCurFruit
getitemname STRING_BUFFER_3, USE_SCRIPT_VAR getitemname STRING_BUFFER_3, USE_SCRIPT_VAR
writetext FruitBearingTreeText writetext FruitBearingTreeText
buttonsound promptbutton
callasm TryResetFruitTrees callasm TryResetFruitTrees
callasm CheckFruitTree callasm CheckFruitTree
iffalse .fruit iffalse .fruit
@ -17,7 +17,7 @@ FruitTreeScript::
readmem wCurFruit readmem wCurFruit
giveitem ITEM_FROM_MEM giveitem ITEM_FROM_MEM
iffalse .packisfull iffalse .packisfull
buttonsound promptbutton
writetext ObtainedFruitText writetext ObtainedFruitText
callasm PickedFruitTree callasm PickedFruitTree
specialsound specialsound
@ -25,7 +25,7 @@ FruitTreeScript::
sjump .end sjump .end
.packisfull .packisfull
buttonsound promptbutton
writetext FruitPackIsFullText writetext FruitPackIsFullText
waitbutton waitbutton

View File

@ -22,7 +22,7 @@ HiddenItemScript::
sjump .finish sjump .finish
.bag_full .bag_full
buttonsound promptbutton
writetext .ButNoSpaceText writetext .ButNoSpaceText
waitbutton waitbutton

View File

@ -69,33 +69,33 @@ PokecenterNurseScript:
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
iftrue .morn_comcenter iftrue .morn_comcenter
farwritetext NurseMornText farwritetext NurseMornText
buttonsound promptbutton
sjump .ok sjump .ok
.morn_comcenter .morn_comcenter
farwritetext PokeComNurseMornText farwritetext PokeComNurseMornText
buttonsound promptbutton
sjump .ok sjump .ok
.day .day
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
iftrue .day_comcenter iftrue .day_comcenter
farwritetext NurseDayText farwritetext NurseDayText
buttonsound promptbutton
sjump .ok sjump .ok
.day_comcenter .day_comcenter
farwritetext PokeComNurseDayText farwritetext PokeComNurseDayText
buttonsound promptbutton
sjump .ok sjump .ok
.nite .nite
checkevent EVENT_WELCOMED_TO_POKECOM_CENTER checkevent EVENT_WELCOMED_TO_POKECOM_CENTER
iftrue .nite_comcenter iftrue .nite_comcenter
farwritetext NurseNiteText farwritetext NurseNiteText
buttonsound promptbutton
sjump .ok sjump .ok
.nite_comcenter .nite_comcenter
farwritetext PokeComNurseNiteText farwritetext PokeComNurseNiteText
buttonsound promptbutton
sjump .ok sjump .ok
.ok .ok
@ -326,19 +326,19 @@ BugContestResultsScript:
ifequal 2, BugContestResults_SecondPlace ifequal 2, BugContestResults_SecondPlace
ifequal 3, BugContestResults_ThirdPlace ifequal 3, BugContestResults_ThirdPlace
farwritetext ContestResults_ConsolationPrizeText farwritetext ContestResults_ConsolationPrizeText
buttonsound promptbutton
waitsfx waitsfx
verbosegiveitem BERRY verbosegiveitem BERRY
iffalse BugContestResults_NoRoomForBerry iffalse BugContestResults_NoRoomForBerry
BugContestResults_DidNotWin: BugContestResults_DidNotWin:
farwritetext ContestResults_DidNotWinText farwritetext ContestResults_DidNotWinText
buttonsound promptbutton
sjump BugContestResults_FinishUp sjump BugContestResults_FinishUp
BugContestResults_ReturnAfterWinnersPrize: BugContestResults_ReturnAfterWinnersPrize:
farwritetext ContestResults_JoinUsNextTimeText farwritetext ContestResults_JoinUsNextTimeText
buttonsound promptbutton
BugContestResults_FinishUp: BugContestResults_FinishUp:
checkevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER checkevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
@ -408,25 +408,25 @@ BugContestResults_ThirdPlace:
BugContestResults_NoRoomForSunStone: BugContestResults_NoRoomForSunStone:
farwritetext BugContestPrizeNoRoomText farwritetext BugContestPrizeNoRoomText
buttonsound promptbutton
setevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE setevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
sjump BugContestResults_ReturnAfterWinnersPrize sjump BugContestResults_ReturnAfterWinnersPrize
BugContestResults_NoRoomForEverstone: BugContestResults_NoRoomForEverstone:
farwritetext BugContestPrizeNoRoomText farwritetext BugContestPrizeNoRoomText
buttonsound promptbutton
setevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE setevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
sjump BugContestResults_ReturnAfterWinnersPrize sjump BugContestResults_ReturnAfterWinnersPrize
BugContestResults_NoRoomForGoldBerry: BugContestResults_NoRoomForGoldBerry:
farwritetext BugContestPrizeNoRoomText farwritetext BugContestPrizeNoRoomText
buttonsound promptbutton
setevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY setevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
sjump BugContestResults_ReturnAfterWinnersPrize sjump BugContestResults_ReturnAfterWinnersPrize
BugContestResults_NoRoomForBerry: BugContestResults_NoRoomForBerry:
farwritetext BugContestPrizeNoRoomText farwritetext BugContestPrizeNoRoomText
buttonsound promptbutton
setevent EVENT_CONTEST_OFFICER_HAS_BERRY setevent EVENT_CONTEST_OFFICER_HAS_BERRY
sjump BugContestResults_DidNotWin sjump BugContestResults_DidNotWin
@ -786,7 +786,7 @@ RegisteredNumberMScript:
farwritetext RegisteredNumber1Text farwritetext RegisteredNumber1Text
playsound SFX_REGISTER_PHONE_NUMBER playsound SFX_REGISTER_PHONE_NUMBER
waitsfx waitsfx
buttonsound promptbutton
end end
NumberAcceptedMScript: NumberAcceptedMScript:
@ -1279,31 +1279,31 @@ GiftMScript:
.Jose: .Jose:
farwritetext JoseGiftText farwritetext JoseGiftText
buttonsound promptbutton
end end
.Wade: .Wade:
farwritetext WadeGiftText farwritetext WadeGiftText
buttonsound promptbutton
end end
.Alan: .Alan:
farwritetext AlanGiftText farwritetext AlanGiftText
buttonsound promptbutton
end end
.Derek: .Derek:
farwritetext DerekGiftText farwritetext DerekGiftText
buttonsound promptbutton
end end
.Tully: .Tully:
farwritetext TullyGiftText farwritetext TullyGiftText
buttonsound promptbutton
end end
.Wilton: .Wilton:
farwritetext WiltonGiftText farwritetext WiltonGiftText
buttonsound promptbutton
end end
.Kenji: .Kenji:
farwritetext KenjiGiftText farwritetext KenjiGiftText
buttonsound promptbutton
end end
PackFullMScript: PackFullMScript:
@ -1386,19 +1386,19 @@ RematchGiftMScript:
.Huey: .Huey:
farwritetext HueyRematchGiftText farwritetext HueyRematchGiftText
buttonsound promptbutton
end end
.Joey: .Joey:
farwritetext JoeyRematchGiftText farwritetext JoeyRematchGiftText
buttonsound promptbutton
end end
.Vance: .Vance:
farwritetext VanceRematchGiftText farwritetext VanceRematchGiftText
buttonsound promptbutton
end end
.Parry: .Parry:
farwritetext ParryRematchGiftText farwritetext ParryRematchGiftText
buttonsound promptbutton
end end
AskNumber1FScript: AskNumber1FScript:
@ -1477,7 +1477,7 @@ RegisteredNumberFScript:
farwritetext RegisteredNumber2Text farwritetext RegisteredNumber2Text
playsound SFX_REGISTER_PHONE_NUMBER playsound SFX_REGISTER_PHONE_NUMBER
waitsfx waitsfx
buttonsound promptbutton
end end
NumberAcceptedFScript: NumberAcceptedFScript:
@ -1691,19 +1691,19 @@ GiftFScript:
.Beverly: .Beverly:
farwritetext BeverlyGiftText farwritetext BeverlyGiftText
buttonsound promptbutton
end end
.Gina: .Gina:
farwritetext GinaGiftText farwritetext GinaGiftText
buttonsound promptbutton
end end
.Dana: .Dana:
farwritetext DanaGiftText farwritetext DanaGiftText
buttonsound promptbutton
end end
.Tiffany: .Tiffany:
farwritetext TiffanyGiftText farwritetext TiffanyGiftText
buttonsound promptbutton
end end
PackFullFScript: PackFullFScript:
@ -1747,7 +1747,7 @@ RematchGiftFScript:
.Erin: .Erin:
opentext opentext
farwritetext ErinRematchGiftText farwritetext ErinRematchGiftText
buttonsound promptbutton
end end
GymStatue1Script: GymStatue1Script:
@ -1762,7 +1762,7 @@ GymStatue2Script:
getcurlandmarkname STRING_BUFFER_3 getcurlandmarkname STRING_BUFFER_3
opentext opentext
farwritetext GymStatue_CityGymText farwritetext GymStatue_CityGymText
buttonsound promptbutton
farwritetext GymStatue_WinningTrainersText farwritetext GymStatue_WinningTrainersText
waitbutton waitbutton
closetext closetext
@ -1786,7 +1786,7 @@ GameCornerCoinVendorScript:
faceplayer faceplayer
opentext opentext
farwritetext CoinVendor_WelcomeText farwritetext CoinVendor_WelcomeText
buttonsound promptbutton
checkitem COIN_CASE checkitem COIN_CASE
iftrue CoinVendor_IntroScript iftrue CoinVendor_IntroScript
farwritetext CoinVendor_NoCoinCaseText farwritetext CoinVendor_NoCoinCaseText

View File

@ -148,7 +148,7 @@ ScriptCommandTable:
dw Script_farjumptext ; 52 dw Script_farjumptext ; 52
dw Script_jumptext ; 53 dw Script_jumptext ; 53
dw Script_waitbutton ; 54 dw Script_waitbutton ; 54
dw Script_buttonsound ; 55 dw Script_promptbutton ; 55
dw Script_pokepic ; 56 dw Script_pokepic ; 56
dw Script_closepokepic ; 57 dw Script_closepokepic ; 57
dw Script__2dmenu ; 58 dw Script__2dmenu ; 58
@ -398,7 +398,7 @@ Script_waitbutton:
jp WaitButton jp WaitButton
Script_buttonsound: Script_promptbutton:
; script command 0x55 ; script command 0x55
ldh a, [hOAMUpdate] ldh a, [hOAMUpdate]
@ -406,7 +406,7 @@ Script_buttonsound:
ld a, $1 ld a, $1
ldh [hOAMUpdate], a ldh [hOAMUpdate], a
call WaitBGMap call WaitBGMap
call ButtonSound call PromptButton
pop af pop af
ldh [hOAMUpdate], a ldh [hOAMUpdate], a
ret ret
@ -525,7 +525,7 @@ GiveItemScript:
end end
.Full: .Full:
buttonsound promptbutton
pocketisfull pocketisfull
end end

View File

@ -4,22 +4,22 @@ BillPhoneCalleeScript:
checktime NITE checktime NITE
iftrue .nitegreet iftrue .nitegreet
farwritetext BillPhoneMornGreetingText farwritetext BillPhoneMornGreetingText
buttonsound promptbutton
sjump .main sjump .main
.daygreet .daygreet
farwritetext BillPhoneDayGreetingText farwritetext BillPhoneDayGreetingText
buttonsound promptbutton
sjump .main sjump .main
.nitegreet .nitegreet
farwritetext BillPhoneNiteGreetingText farwritetext BillPhoneNiteGreetingText
buttonsound promptbutton
sjump .main sjump .main
.main .main
farwritetext BillPhoneGenericText farwritetext BillPhoneGenericText
buttonsound promptbutton
readvar VAR_BOXSPACE readvar VAR_BOXSPACE
getnum STRING_BUFFER_3 getnum STRING_BUFFER_3
ifequal 0, .full ifequal 0, .full

View File

@ -13,50 +13,50 @@ BrentBillTriviaScript:
.Father: .Father:
farwritetext BrentFatherGossipText farwritetext BrentFatherGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Grandpa: .Grandpa:
farwritetext BrentGrandpaGossipText farwritetext BrentGrandpaGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Goldenrod: .Goldenrod:
farwritetext BrentGoldenrodGossipText farwritetext BrentGoldenrodGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Route25: .Route25:
farwritetext BrentRoute25GossipText farwritetext BrentRoute25GossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Abra: .Abra:
farwritetext BrentAbraGossipText farwritetext BrentAbraGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Sister: .Sister:
farwritetext BrentSisterGossipText farwritetext BrentSisterGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Milk: .Milk:
farwritetext BrentMilkGossipText farwritetext BrentMilkGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Battling: .Battling:
farwritetext BrentBattlingGossipText farwritetext BrentBattlingGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.FlowerShop: .FlowerShop:
farwritetext BrentFlowerShopGossipText farwritetext BrentFlowerShopGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.KimonoGirl: .KimonoGirl:
farwritetext BrentKimonoGirlGossipText farwritetext BrentKimonoGirlGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -18,17 +18,17 @@ BuenaPhoneScript_CheckTimeOfDayCallee:
checktime DAY checktime DAY
iftrue .day iftrue .day
writetext BuenaPhoneNiteAnswerText writetext BuenaPhoneNiteAnswerText
buttonsound promptbutton
end end
.morn .morn
writetext BuenaPhoneMorningAnswerText writetext BuenaPhoneMorningAnswerText
buttonsound promptbutton
end end
.day .day
writetext BuenaPhoneDayAnswerText writetext BuenaPhoneDayAnswerText
buttonsound promptbutton
end end
BuenaPhoneScript_AfterMidnightCallee: BuenaPhoneScript_AfterMidnightCallee:
@ -43,22 +43,22 @@ BuenaPhoneScript_CheckTimeOfDayCaller:
checktime DAY checktime DAY
iftrue .day iftrue .day
writetext BuenaPhoneNiteText writetext BuenaPhoneNiteText
buttonsound promptbutton
end end
.morn .morn
writetext BuenaPhoneMorningText writetext BuenaPhoneMorningText
buttonsound promptbutton
end end
.day .day
writetext BuenaPhoneDayText writetext BuenaPhoneDayText
buttonsound promptbutton
end end
BuenaPhoneScript_AfterMidnightCaller: BuenaPhoneScript_AfterMidnightCaller:
writetext BuenaPhoneMidnightText writetext BuenaPhoneMidnightText
buttonsound promptbutton
end end
BuenaPhoneScript_Rocket: BuenaPhoneScript_Rocket:

View File

@ -13,50 +13,50 @@ ChadOakGossipScript:
.Blue: .Blue:
farwritetext ChadBlueGossipText farwritetext ChadBlueGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Daisy: .Daisy:
farwritetext ChadDaisyGossipText farwritetext ChadDaisyGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.ProfElm: .ProfElm:
farwritetext ChadProfElmGossipText farwritetext ChadProfElmGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Dream: .Dream:
farwritetext ChadProfOaksDreamGossipText farwritetext ChadProfOaksDreamGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Kurt: .Kurt:
farwritetext ChadKurtGossipText farwritetext ChadKurtGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.League: .League:
farwritetext ChadLeagueGossipText farwritetext ChadLeagueGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.RadioShow: .RadioShow:
farwritetext ChadPokemonTalkGossipText farwritetext ChadPokemonTalkGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Battling: .Battling:
farwritetext ChadProfOakTrainerGossipText farwritetext ChadProfOakTrainerGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.DaisyTea: .DaisyTea:
farwritetext ChadDaisyTeaGossipText farwritetext ChadDaisyTeaGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Traveled: .Traveled:
farwritetext ChadProfOakTravelingGossipText farwritetext ChadProfOakTravelingGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

File diff suppressed because it is too large Load Diff

View File

@ -76,87 +76,87 @@ Phone_WhosBragging_Male:
.Jack: .Jack:
farwritetext JackIntelligenceKeepsRisingText farwritetext JackIntelligenceKeepsRisingText
buttonsound promptbutton
end end
.Gaven: .Gaven:
farwritetext GavenMonGreaterThanImaginedText farwritetext GavenMonGreaterThanImaginedText
buttonsound promptbutton
end end
.Jose: .Jose:
farwritetext JoseMonsStickHasADeliciousAromaText farwritetext JoseMonsStickHasADeliciousAromaText
buttonsound promptbutton
end end
.Joey: .Joey:
farwritetext JoeyMonLookingSharperText farwritetext JoeyMonLookingSharperText
buttonsound promptbutton
end end
.Wade: .Wade:
farwritetext WadeAreYourMonGrowingText farwritetext WadeAreYourMonGrowingText
buttonsound promptbutton
end end
.Ralph: .Ralph:
farwritetext RalphNeglectingKidsText farwritetext RalphNeglectingKidsText
buttonsound promptbutton
end end
.Anthony: .Anthony:
farwritetext AnthonyMonAteSomeBerriesText farwritetext AnthonyMonAteSomeBerriesText
buttonsound promptbutton
end end
.Todd: .Todd:
farwritetext ToddLooksCuteLikeMeText farwritetext ToddLooksCuteLikeMeText
buttonsound promptbutton
end end
.Arnie: .Arnie:
farwritetext ArnieMonIsSoCuteText farwritetext ArnieMonIsSoCuteText
buttonsound promptbutton
end end
.Alan: .Alan:
farwritetext AlanGettingStrongerText farwritetext AlanGettingStrongerText
buttonsound promptbutton
end end
.Chad: .Chad:
farwritetext ChadObservingWildText farwritetext ChadObservingWildText
buttonsound promptbutton
end end
.Derek: .Derek:
farwritetext DerekCheekPinchingText farwritetext DerekCheekPinchingText
buttonsound promptbutton
end end
.Tully: .Tully:
farwritetext TullyMonHasGrownText farwritetext TullyMonHasGrownText
buttonsound promptbutton
end end
.Brent: .Brent:
farwritetext BrentRareTradeText farwritetext BrentRareTradeText
buttonsound promptbutton
end end
.Vance: .Vance:
farwritetext VanceMonHasBecomeTougherText farwritetext VanceMonHasBecomeTougherText
buttonsound promptbutton
end end
.Wilton: .Wilton:
farwritetext WiltonMonHasGrownText farwritetext WiltonMonHasGrownText
buttonsound promptbutton
end end
.Parry: .Parry:
farwritetext ParryNothingCanMatchText farwritetext ParryNothingCanMatchText
buttonsound promptbutton
end end
Phone_WhosBragging_Female: Phone_WhosBragging_Female:
@ -172,42 +172,42 @@ Phone_WhosBragging_Female:
.Beverly: .Beverly:
farwritetext BeverlyMadeMonEvenCuterText farwritetext BeverlyMadeMonEvenCuterText
buttonsound promptbutton
end end
.Beth: .Beth:
farwritetext BethExhilaratingRideText farwritetext BethExhilaratingRideText
buttonsound promptbutton
end end
.Reena: .Reena:
farwritetext ReenaMonsIsAPerfectMatchText farwritetext ReenaMonsIsAPerfectMatchText
buttonsound promptbutton
end end
.Liz: .Liz:
farwritetext LizMonAlwaysWantsToNuzzleText farwritetext LizMonAlwaysWantsToNuzzleText
buttonsound promptbutton
end end
.Gina: .Gina:
farwritetext GinaGettingInSyncWithMonText farwritetext GinaGettingInSyncWithMonText
buttonsound promptbutton
end end
.Dana: .Dana:
farwritetext DanaTakingPhotosText farwritetext DanaTakingPhotosText
buttonsound promptbutton
end end
.Tiffany: .Tiffany:
farwritetext TiffanyMonIsAdorableText farwritetext TiffanyMonIsAdorableText
buttonsound promptbutton
end end
.Erin: .Erin:
farwritetext ErinMonIsMuchStrongerText farwritetext ErinMonIsMuchStrongerText
buttonsound promptbutton
end end
Phone_WhoDefeatedMon_Male: Phone_WhoDefeatedMon_Male:
@ -232,87 +232,87 @@ Phone_WhoDefeatedMon_Male:
.Jack: .Jack:
farwritetext JackDefeatedMonText farwritetext JackDefeatedMonText
buttonsound promptbutton
end end
.Gaven: .Gaven:
farwritetext GavenDefeatedMonText farwritetext GavenDefeatedMonText
buttonsound promptbutton
end end
.Jose: .Jose:
farwritetext JoseDefeatedMonText farwritetext JoseDefeatedMonText
buttonsound promptbutton
end end
.Joey: .Joey:
farwritetext JoeyDefeatedMonText farwritetext JoeyDefeatedMonText
buttonsound promptbutton
end end
.Wade: .Wade:
farwritetext WadeDefeatedMonText farwritetext WadeDefeatedMonText
buttonsound promptbutton
end end
.Ralph: .Ralph:
farwritetext RalphDefeatedMonText farwritetext RalphDefeatedMonText
buttonsound promptbutton
end end
.Anthony: .Anthony:
farwritetext AnthonyDefeatedMonText farwritetext AnthonyDefeatedMonText
buttonsound promptbutton
end end
.Todd: .Todd:
farwritetext ToddDefeatedMonText farwritetext ToddDefeatedMonText
buttonsound promptbutton
end end
.Arnie: .Arnie:
farwritetext ArnieDefeatedMonText farwritetext ArnieDefeatedMonText
buttonsound promptbutton
end end
.Alan: .Alan:
farwritetext AlanDefeatedMonText farwritetext AlanDefeatedMonText
buttonsound promptbutton
end end
.Chad: .Chad:
farwritetext ChadDefeatedMonText farwritetext ChadDefeatedMonText
buttonsound promptbutton
end end
.Derek: .Derek:
farwritetext DerekDefeatedMonText farwritetext DerekDefeatedMonText
buttonsound promptbutton
end end
.Tully: .Tully:
farwritetext TullyDefeatedMonText farwritetext TullyDefeatedMonText
buttonsound promptbutton
end end
.Brent: .Brent:
farwritetext BrentDefeatedMonText farwritetext BrentDefeatedMonText
buttonsound promptbutton
end end
.Vance: .Vance:
farwritetext VanceDefeatedMonText farwritetext VanceDefeatedMonText
buttonsound promptbutton
end end
.Wilton: .Wilton:
farwritetext WiltonDefeatedMonText farwritetext WiltonDefeatedMonText
buttonsound promptbutton
end end
.Parry: .Parry:
farwritetext ParryDefeatedMonText farwritetext ParryDefeatedMonText
buttonsound promptbutton
end end
Phone_WhoDefeatedMon_Female: Phone_WhoDefeatedMon_Female:
@ -328,42 +328,42 @@ Phone_WhoDefeatedMon_Female:
.Beverly: .Beverly:
farwritetext BeverlyDefeatedMonText farwritetext BeverlyDefeatedMonText
buttonsound promptbutton
end end
.Beth: .Beth:
farwritetext BethDefeatedMonText farwritetext BethDefeatedMonText
buttonsound promptbutton
end end
.Reena: .Reena:
farwritetext ReenaDefeatedMonText farwritetext ReenaDefeatedMonText
buttonsound promptbutton
end end
.Liz: .Liz:
farwritetext LizDefeatedMonText farwritetext LizDefeatedMonText
buttonsound promptbutton
end end
.Gina: .Gina:
farwritetext GinaDefeatedMonText farwritetext GinaDefeatedMonText
buttonsound promptbutton
end end
.Dana: .Dana:
farwritetext DanaDefeatedMonText farwritetext DanaDefeatedMonText
buttonsound promptbutton
end end
.Tiffany: .Tiffany:
farwritetext TiffanyDefeatedMonText farwritetext TiffanyDefeatedMonText
buttonsound promptbutton
end end
.Erin: .Erin:
farwritetext ErinDefeatedMonText farwritetext ErinDefeatedMonText
buttonsound promptbutton
end end
Phone_WhoLostAMon_Male: Phone_WhoLostAMon_Male:
@ -388,87 +388,87 @@ Phone_WhoLostAMon_Male:
.Jack: .Jack:
farwritetext JackLostAMonText farwritetext JackLostAMonText
buttonsound promptbutton
end end
.Gaven: .Gaven:
farwritetext GavenLostAMonText farwritetext GavenLostAMonText
buttonsound promptbutton
end end
.Jose: .Jose:
farwritetext JoseLostAMonText farwritetext JoseLostAMonText
buttonsound promptbutton
end end
.Joey: .Joey:
farwritetext JoeyLostAMonText farwritetext JoeyLostAMonText
buttonsound promptbutton
end end
.Wade: .Wade:
farwritetext WadeLostAMonText farwritetext WadeLostAMonText
buttonsound promptbutton
end end
.Ralph: .Ralph:
farwritetext RalphLostAMonText farwritetext RalphLostAMonText
buttonsound promptbutton
end end
.Anthony: .Anthony:
farwritetext AnthonyLostAMonText farwritetext AnthonyLostAMonText
buttonsound promptbutton
end end
.Todd: .Todd:
farwritetext ToddLostAMonText farwritetext ToddLostAMonText
buttonsound promptbutton
end end
.Arnie: .Arnie:
farwritetext ArnieLostAMonText farwritetext ArnieLostAMonText
buttonsound promptbutton
end end
.Alan: .Alan:
farwritetext AlanLostAMonText farwritetext AlanLostAMonText
buttonsound promptbutton
end end
.Chad: .Chad:
farwritetext ChadLostAMonText farwritetext ChadLostAMonText
buttonsound promptbutton
end end
.Derek: .Derek:
farwritetext DerekLostAMonText farwritetext DerekLostAMonText
buttonsound promptbutton
end end
.Tully: .Tully:
farwritetext TullyLostAMonText farwritetext TullyLostAMonText
buttonsound promptbutton
end end
.Brent: .Brent:
farwritetext BrentLostAMonText farwritetext BrentLostAMonText
buttonsound promptbutton
end end
.Vance: .Vance:
farwritetext VanceLostAMonText farwritetext VanceLostAMonText
buttonsound promptbutton
end end
.Wilton: .Wilton:
farwritetext WiltonLostAMonText farwritetext WiltonLostAMonText
buttonsound promptbutton
end end
.Parry: .Parry:
farwritetext ParryLostAMonText farwritetext ParryLostAMonText
buttonsound promptbutton
end end
Phone_WhoLostAMon_Female: Phone_WhoLostAMon_Female:
@ -484,42 +484,42 @@ Phone_WhoLostAMon_Female:
.Beverly: .Beverly:
farwritetext BeverlyLostAMonText farwritetext BeverlyLostAMonText
buttonsound promptbutton
end end
.Beth: .Beth:
farwritetext BethLostAMonText farwritetext BethLostAMonText
buttonsound promptbutton
end end
.Reena: .Reena:
farwritetext ReenaLostAMonText farwritetext ReenaLostAMonText
buttonsound promptbutton
end end
.Liz: .Liz:
farwritetext LizLostAMonText farwritetext LizLostAMonText
buttonsound promptbutton
end end
.Gina: .Gina:
farwritetext GinaLostAMonText farwritetext GinaLostAMonText
buttonsound promptbutton
end end
.Dana: .Dana:
farwritetext DanaLostAMonText farwritetext DanaLostAMonText
buttonsound promptbutton
end end
.Tiffany: .Tiffany:
farwritetext TiffanyLostAMonText farwritetext TiffanyLostAMonText
buttonsound promptbutton
end end
.Erin: .Erin:
farwritetext ErinLostAMonText farwritetext ErinLostAMonText
buttonsound promptbutton
end end
PhoneScript_WantsToBattle_Male: PhoneScript_WantsToBattle_Male:
@ -552,87 +552,87 @@ PhoneScript_RematchText_Male:
.Jack: .Jack:
farwritetext JackBattleRematchText farwritetext JackBattleRematchText
buttonsound promptbutton
end end
.Huey: .Huey:
farwritetext HueyBattleRematchText farwritetext HueyBattleRematchText
buttonsound promptbutton
end end
.Gaven: .Gaven:
farwritetext GavenBattleRematchText farwritetext GavenBattleRematchText
buttonsound promptbutton
end end
.Jose: .Jose:
farwritetext JoseBattleRematchText farwritetext JoseBattleRematchText
buttonsound promptbutton
end end
.Joey: .Joey:
farwritetext JoeyBattleRematchText farwritetext JoeyBattleRematchText
buttonsound promptbutton
end end
.Wade: .Wade:
farwritetext WadeBattleRematchText farwritetext WadeBattleRematchText
buttonsound promptbutton
end end
.Ralph: .Ralph:
farwritetext RalphBattleRematchText farwritetext RalphBattleRematchText
buttonsound promptbutton
end end
.Anthony: .Anthony:
farwritetext AnthonyBattleRematchText farwritetext AnthonyBattleRematchText
buttonsound promptbutton
end end
.Todd: .Todd:
farwritetext ToddBattleRematchText farwritetext ToddBattleRematchText
buttonsound promptbutton
end end
.Arnie: .Arnie:
farwritetext ArnieBattleRematchText farwritetext ArnieBattleRematchText
buttonsound promptbutton
end end
.Alan: .Alan:
farwritetext AlanBattleRematchText farwritetext AlanBattleRematchText
buttonsound promptbutton
end end
.Chad: .Chad:
farwritetext ChadBattleRematchText farwritetext ChadBattleRematchText
buttonsound promptbutton
end end
.Tully: .Tully:
farwritetext TullyBattleRematchText farwritetext TullyBattleRematchText
buttonsound promptbutton
end end
.Brent: .Brent:
farwritetext BrentBattleRematchText farwritetext BrentBattleRematchText
buttonsound promptbutton
end end
.Vance: .Vance:
farwritetext VanceBattleRematchText farwritetext VanceBattleRematchText
buttonsound promptbutton
end end
.Wilton: .Wilton:
farwritetext WiltonBattleRematchText farwritetext WiltonBattleRematchText
buttonsound promptbutton
end end
.Parry: .Parry:
farwritetext ParryBattleRematchText farwritetext ParryBattleRematchText
buttonsound promptbutton
end end
PhoneScript_RematchText_Female: PhoneScript_RematchText_Female:
@ -647,37 +647,37 @@ PhoneScript_RematchText_Female:
.Beth: .Beth:
farwritetext BethBattleRematchText farwritetext BethBattleRematchText
buttonsound promptbutton
end end
.Reena: .Reena:
farwritetext ReenaBattleRematchText farwritetext ReenaBattleRematchText
buttonsound promptbutton
end end
.Liz: .Liz:
farwritetext LizBattleRematchText farwritetext LizBattleRematchText
buttonsound promptbutton
end end
.Gina: .Gina:
farwritetext GinaBattleRematchText farwritetext GinaBattleRematchText
buttonsound promptbutton
end end
.Dana: .Dana:
farwritetext DanaBattleRematchText farwritetext DanaBattleRematchText
buttonsound promptbutton
end end
.Tiffany: .Tiffany:
farwritetext TiffanyBattleRematchText farwritetext TiffanyBattleRematchText
buttonsound promptbutton
end end
.Erin: .Erin:
farwritetext ErinBattleRematchText farwritetext ErinBattleRematchText
buttonsound promptbutton
end end
LizWrongNumberScript: LizWrongNumberScript:
@ -861,37 +861,37 @@ PhoneScript_BugCatchingContest:
.Wade: .Wade:
farwritetext WadeBugCatchingContestText farwritetext WadeBugCatchingContestText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Derek: .Derek:
farwritetext DerekBugCatchingContestText farwritetext DerekBugCatchingContestText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
IrwinRocketRumorScript: IrwinRocketRumorScript:
farwritetext IrwinRocketTakeoverRumorText farwritetext IrwinRocketTakeoverRumorText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
GinaRocketRumorScript: GinaRocketRumorScript:
farwritetext GinaRocketTakeoverRumorText farwritetext GinaRocketTakeoverRumorText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
ArnieSwarmScript: ArnieSwarmScript:
farwritetext ArnieSwarmText farwritetext ArnieSwarmText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
RalphItemScript: RalphItemScript:
farwritetext RalphItemText farwritetext RalphItemText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
AnthonySwarmScript: AnthonySwarmScript:
farwritetext AnthonySwarmText farwritetext AnthonySwarmText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
PhoneScript_FoundItem_Male: PhoneScript_FoundItem_Male:
@ -952,10 +952,10 @@ PhoneScript_FoundItem_Female:
ToddItemScript: ToddItemScript:
farwritetext ToddDepartmentStoreBargainSaleText farwritetext ToddDepartmentStoreBargainSaleText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
KenjiCallingPhoneScript: KenjiCallingPhoneScript:
farwritetext KenjiRemainDedicatedText farwritetext KenjiRemainDedicatedText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -1,131 +1,131 @@
JackPhoneTipsScript: JackPhoneTipsScript:
farwritetext JackHeardSomeGreatTipsText farwritetext JackHeardSomeGreatTipsText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
BeverlyHangUpScript: BeverlyHangUpScript:
farwritetext BeverlyLetsChatAboutMonAgainText farwritetext BeverlyLetsChatAboutMonAgainText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
HueyHangUpScript: HueyHangUpScript:
farwritetext HueyWeHaveToBattleAgainSometimeText farwritetext HueyWeHaveToBattleAgainSometimeText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
GavenHangUpNotThursdayScript: GavenHangUpNotThursdayScript:
farwritetext GavenHangUpNotThursdayText farwritetext GavenHangUpNotThursdayText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
BethHangUpScript: BethHangUpScript:
farwritetext BethLetsBattleAgainSometimeText farwritetext BethLetsBattleAgainSometimeText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
JoseHangUpScript: JoseHangUpScript:
farwritetext JoseHaventGottenItemYetText farwritetext JoseHaventGottenItemYetText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
ReenaForwardScript: ReenaForwardScript:
farwritetext ReenaForwardText farwritetext ReenaForwardText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
JoeyHangUpScript: JoeyHangUpScript:
farwritetext JoeyDevisingStrategiesText farwritetext JoeyDevisingStrategiesText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
WadeNoBerriesScript: WadeNoBerriesScript:
farwritetext WadeNoBerriesText farwritetext WadeNoBerriesText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
RalphNoItemScript: RalphNoItemScript:
farwritetext RalphNoItemText farwritetext RalphNoItemText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
LizHangUpScript: LizHangUpScript:
farwritetext LizFawningOverMonText farwritetext LizFawningOverMonText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
AnthonyHangUpScript: AnthonyHangUpScript:
farwritetext AnthonyWasntPayingAttentionText farwritetext AnthonyWasntPayingAttentionText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
ToddNoItemScript: ToddNoItemScript:
farwritetext ToddSavingUpForBargainSaleText farwritetext ToddSavingUpForBargainSaleText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
GinaHangUpScript: GinaHangUpScript:
farwritetext GinaHaventFoundAnythingYetText farwritetext GinaHaventFoundAnythingYetText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
ArnieHangUpScript: ArnieHangUpScript:
farwritetext ArnieHaventSeenRareMonText farwritetext ArnieHaventSeenRareMonText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
AlanHangUpScript: AlanHangUpScript:
farwritetext AlanHaventPickedUpAnythingText farwritetext AlanHaventPickedUpAnythingText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
DanaHangUpScript: DanaHangUpScript:
farwritetext DanaCanYouWaitABitLongerText farwritetext DanaCanYouWaitABitLongerText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
ChadHangUpScript: ChadHangUpScript:
farwritetext ChadGoingToStudyHardText farwritetext ChadGoingToStudyHardText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
DerekHangUpScript: DerekHangUpScript:
farwritetext DerekLetsGetTogetherText farwritetext DerekLetsGetTogetherText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
TullyNoItemScript: TullyNoItemScript:
farwritetext TullyNoItemText farwritetext TullyNoItemText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
BrentHangUpScript: BrentHangUpScript:
farwritetext BrentSorryImTooBusyText farwritetext BrentSorryImTooBusyText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
TiffanyNoItemScript: TiffanyNoItemScript:
farwritetext TiffanyNoItemText farwritetext TiffanyNoItemText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
VanceLookingForwardScript: VanceLookingForwardScript:
farwritetext VanceLookingForwardText farwritetext VanceLookingForwardText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
WiltonHaventFoundAnythingScript: WiltonHaventFoundAnythingScript:
farwritetext WiltonHaventFoundAnythingText farwritetext WiltonHaventFoundAnythingText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
ParryBattleWithMeScript: ParryBattleWithMeScript:
farwritetext ParryBattleWithMeText farwritetext ParryBattleWithMeText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
ErinWorkingHardScript: ErinWorkingHardScript:
farwritetext ErinWorkingHardText farwritetext ErinWorkingHardText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
IrwinRandomTextScript: IrwinRandomTextScript:
@ -136,17 +136,17 @@ IrwinRandomTextScript:
IrwinEscapadeScript: IrwinEscapadeScript:
farwritetext IrwinYourEscapadesRockText farwritetext IrwinYourEscapadesRockText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
IrwinGoodMatchScript: IrwinGoodMatchScript:
farwritetext IrwinGoodMatchText farwritetext IrwinGoodMatchText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
IrwinSoMuchToChatAboutScript: IrwinSoMuchToChatAboutScript:
farwritetext IrwinSoMuchToChatAboutText farwritetext IrwinSoMuchToChatAboutText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
KenjiAnswerPhoneScript: KenjiAnswerPhoneScript:
@ -154,12 +154,12 @@ KenjiAnswerPhoneScript:
ifequal 2, .Training ifequal 2, .Training
ifequal 1, .OnBreak ifequal 1, .OnBreak
farwritetext KenjiCallMeBackAnotherTimeText farwritetext KenjiCallMeBackAnotherTimeText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Training: .Training:
farwritetext KenjiIllHaveTimeToChatTomorrowText farwritetext KenjiIllHaveTimeToChatTomorrowText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.OnBreak: .OnBreak:
@ -169,15 +169,15 @@ KenjiAnswerPhoneScript:
iftrue .Night iftrue .Night
setevent EVENT_KENJI_ON_BREAK setevent EVENT_KENJI_ON_BREAK
farwritetext KenjiTakingABreakText farwritetext KenjiTakingABreakText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Morning: .Morning:
farwritetext KenjiHangUpMorningText farwritetext KenjiHangUpMorningText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Night: .Night:
farwritetext KenjiHangUpNightText farwritetext KenjiHangUpNightText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -1,49 +1,49 @@
BeverlyComePickUpScript: BeverlyComePickUpScript:
farwritetext BeverlyComePickUpText farwritetext BeverlyComePickUpText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
JoseComePickUpScript: JoseComePickUpScript:
farwritetext JoseComePickUpText farwritetext JoseComePickUpText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
WadeComeQuickScript: WadeComeQuickScript:
farwritetext WadeComeQuickText farwritetext WadeComeQuickText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
GinaComePickUpScript: GinaComePickUpScript:
farwritetext GinaComePickUpText farwritetext GinaComePickUpText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
AlanComePickUpScript: AlanComePickUpScript:
farwritetext AlanComePickUpGiftText farwritetext AlanComePickUpGiftText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
DanaComePickUpScript: DanaComePickUpScript:
farwritetext DanaComePickUpText farwritetext DanaComePickUpText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
DerekComePickUpScript: DerekComePickUpScript:
farwritetext DerekComePickUpText farwritetext DerekComePickUpText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
TullyHurryScript: TullyHurryScript:
farwritetext TullyHurryText farwritetext TullyHurryText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
TiffanyHurryScript: TiffanyHurryScript:
farwritetext TiffanyHurryText farwritetext TiffanyHurryText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
WiltonWantThisScript: WiltonWantThisScript:
farwritetext WiltonWantThisText farwritetext WiltonWantThisText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -24,65 +24,65 @@ IrwinRumorScript:
checkflag ENGINE_PLAINBADGE checkflag ENGINE_PLAINBADGE
iftrue .PlainBadge iftrue .PlainBadge
farwritetext IrwinCalledRightAwayText farwritetext IrwinCalledRightAwayText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.PlainBadge: .PlainBadge:
farwritetext IrwinPlainBadgeGossipText farwritetext IrwinPlainBadgeGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.JasmineReturned: .JasmineReturned:
farwritetext IrwinJasmineReturnedGossipText farwritetext IrwinJasmineReturnedGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.RocketHideout: .RocketHideout:
farwritetext IrwinRocketHideoutGossipText farwritetext IrwinRocketHideoutGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.RadioTower: .RadioTower:
farwritetext IrwinRadioTowerGossipText farwritetext IrwinRadioTowerGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.RisingBadge: .RisingBadge:
farwritetext IrwinRisingBadgeGossipText farwritetext IrwinRisingBadgeGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.EliteFour: .EliteFour:
farwritetext IrwinEliteFourGossipText farwritetext IrwinEliteFourGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.VermilionCity: .VermilionCity:
farwritetext IrwinVermilionCityGossipText farwritetext IrwinVermilionCityGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.TrainPass: .TrainPass:
farwritetext IrwinTrainPassGossipText farwritetext IrwinTrainPassGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Snorlax: .Snorlax:
farwritetext IrwinSnorlaxGossipText farwritetext IrwinSnorlaxGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.MtSilver: .MtSilver:
farwritetext IrwinMtSilverGossipText farwritetext IrwinMtSilverGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.FogBadge: .FogBadge:
farwritetext IrwinFogBadgeGossipText farwritetext IrwinFogBadgeGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.MarshBadge: .MarshBadge:
farwritetext IrwinMarshBadgeGossipText farwritetext IrwinMarshBadgeGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -14,55 +14,55 @@ JackTriviaScript:
.Thunder: .Thunder:
farwritetext JackThunderTriviaText farwritetext JackThunderTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Rollout: .Rollout:
farwritetext JackRolloutTriviaText farwritetext JackRolloutTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Solarbeam: .Solarbeam:
farwritetext JackSolarbeamTriviaText farwritetext JackSolarbeamTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Stomp: .Stomp:
farwritetext JackStompTriviaText farwritetext JackStompTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Gust: .Gust:
farwritetext JackGustTriviaText farwritetext JackGustTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Twister: .Twister:
farwritetext JackTwisterTriviaText farwritetext JackTwisterTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Earthquake: .Earthquake:
farwritetext JackEarthquakeTriviaText farwritetext JackEarthquakeTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Magnitude: .Magnitude:
farwritetext JackMagnitudeTriviaText farwritetext JackMagnitudeTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.Sandstorm: .Sandstorm:
farwritetext JackSandstormTriviaText farwritetext JackSandstormTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.SunnyDay: .SunnyDay:
farwritetext JackSunnyDayTriviaText farwritetext JackSunnyDayTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male
.RainDance: .RainDance:
farwritetext JackRainDanceTriviaText farwritetext JackRainDanceTriviaText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Male sjump PhoneScript_HangUpText_Male

View File

@ -13,50 +13,50 @@ LizGossipRandomScript:
.RuinsOfAlph: .RuinsOfAlph:
farwritetext LizRuinsOfAlphGossipText farwritetext LizRuinsOfAlphGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.Falkner: .Falkner:
farwritetext LizFalknerGossipText farwritetext LizFalknerGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.Earl: .Earl:
farwritetext LizEarlGossipText farwritetext LizEarlGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.SurfPikachu: .SurfPikachu:
farwritetext LizSurfPikachuGossipText farwritetext LizSurfPikachuGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.MooMooMilk: .MooMooMilk:
farwritetext LizMooMooMilkGossipText farwritetext LizMooMooMilkGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.Salon: .Salon:
farwritetext LizSalonGossipText farwritetext LizSalonGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.Whitney: .Whitney:
farwritetext LizWhitneyGossipText farwritetext LizWhitneyGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.BugCatchingContest: .BugCatchingContest:
farwritetext LizBugCatchingContestGossipText farwritetext LizBugCatchingContestGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.BeautifulMon: .BeautifulMon:
farwritetext LizBeautifulMonGossipText farwritetext LizBeautifulMonGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female
.Forgot: .Forgot:
farwritetext LizForgotGossipText farwritetext LizForgotGossipText
buttonsound promptbutton
sjump PhoneScript_HangUpText_Female sjump PhoneScript_HangUpText_Female

View File

@ -13,7 +13,7 @@ MomPhoneCalleeScript:
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_8 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_8
iftrue MomPhoneHangUpScript iftrue MomPhoneHangUpScript
farwritetext MomPhoneGreetingText farwritetext MomPhoneGreetingText
buttonsound promptbutton
getcurlandmarkname STRING_BUFFER_3 getcurlandmarkname STRING_BUFFER_3
readvar VAR_ROOFPALETTE readvar VAR_ROOFPALETTE
ifequal 1, MomPhonePalette1 ifequal 1, MomPhonePalette1
@ -22,7 +22,7 @@ MomPhoneCalleeScript:
MomPhoneLandmark: MomPhoneLandmark:
farwritetext MomPhoneLandmarkText farwritetext MomPhoneLandmarkText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
MomPhonePalette1: MomPhonePalette1:
@ -33,17 +33,17 @@ MomPhonePalette1:
ifequal GROUP_AZALEA_TOWN, .azalea ifequal GROUP_AZALEA_TOWN, .azalea
ifequal GROUP_GOLDENROD_CITY, .goldenrod ifequal GROUP_GOLDENROD_CITY, .goldenrod
farwritetext MomPhoneGenericAreaText farwritetext MomPhoneGenericAreaText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
.newbark .newbark
farwritetext MomPhoneNewBarkText farwritetext MomPhoneNewBarkText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
.cherrygrove .cherrygrove
farwritetext MomPhoneCherrygroveText farwritetext MomPhoneCherrygroveText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
.violet .violet
@ -58,12 +58,12 @@ MomPhonePalette1:
MomPhonePalette2: MomPhonePalette2:
farwritetext MomOtherAreaText farwritetext MomOtherAreaText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
MomPhoneOther: MomPhoneOther:
farwritetext MomDeterminedText farwritetext MomDeterminedText
buttonsound promptbutton
sjump MomSavingMoney sjump MomSavingMoney
MomSavingMoney: MomSavingMoney:
@ -107,13 +107,13 @@ MomSavingMoney:
MomPhoneSaveMoneyScript: MomPhoneSaveMoneyScript:
setflag ENGINE_MOM_SAVING_MONEY setflag ENGINE_MOM_SAVING_MONEY
farwritetext MomOKIllSaveText farwritetext MomOKIllSaveText
buttonsound promptbutton
sjump MomPhoneHangUpScript sjump MomPhoneHangUpScript
MomPhoneWontSaveMoneyScript: MomPhoneWontSaveMoneyScript:
clearflag ENGINE_MOM_SAVING_MONEY clearflag ENGINE_MOM_SAVING_MONEY
farwritetext MomPhoneWontSaveMoneyText farwritetext MomPhoneWontSaveMoneyText
buttonsound promptbutton
sjump MomPhoneHangUpScript sjump MomPhoneHangUpScript
MomPhoneHangUpScript: MomPhoneHangUpScript:

View File

@ -869,7 +869,7 @@ DayCareMon1:
ld a, [wDayCareLady] ld a, [wDayCareLady]
bit DAYCARELADY_HAS_MON_F, a bit DAYCARELADY_HAS_MON_F, a
jr z, DayCareMonCursor jr z, DayCareMonCursor
call ButtonSound call PromptButton
ld hl, wBreedMon2Nick ld hl, wBreedMon2Nick
call DayCareMonCompatibilityText call DayCareMonCompatibilityText
jp PrintText jp PrintText
@ -882,7 +882,7 @@ DayCareMon2:
ld a, [wDayCareMan] ld a, [wDayCareMan]
bit DAYCAREMAN_HAS_MON_F, a bit DAYCAREMAN_HAS_MON_F, a
jr z, DayCareMonCursor jr z, DayCareMonCursor
call ButtonSound call PromptButton
ld hl, wBreedMon1Nick ld hl, wBreedMon1Nick
call DayCareMonCompatibilityText call DayCareMonCompatibilityText
jp PrintText jp PrintText

View File

@ -372,7 +372,7 @@ SimpleWaitPressAorB::
jr z, .loop jr z, .loop
ret ret
ButtonSound:: PromptButton::
ld a, [wLinkMode] ld a, [wLinkMode]
and a and a
jr nz, .link jr nz, .link

View File

@ -478,7 +478,7 @@ Paragraph::
.linkbattle .linkbattle
call Text_WaitBGMap call Text_WaitBGMap
call ButtonSound call PromptButton
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
@ -499,7 +499,7 @@ _ContText::
call Text_WaitBGMap call Text_WaitBGMap
push de push de
call ButtonSound call PromptButton
pop de pop de
ld a, [wLinkMode] ld a, [wLinkMode]
@ -545,7 +545,7 @@ PromptText::
.ok .ok
call Text_WaitBGMap call Text_WaitBGMap
call ButtonSound call PromptButton
ld a, [wLinkMode] ld a, [wLinkMode]
cp LINK_COLOSSEUM cp LINK_COLOSSEUM
jr z, DoneText jr z, DoneText
@ -686,29 +686,29 @@ DoTextUntilTerminator::
TextCommands:: TextCommands::
; entries correspond to TX_* constants (see macros/scripts/text.asm) ; entries correspond to TX_* constants (see macros/scripts/text.asm)
dw TextCommand_START ; TX_START dw TextCommand_START ; TX_START
dw TextCommand_RAM ; TX_RAM dw TextCommand_RAM ; TX_RAM
dw TextCommand_BCD ; TX_BCD dw TextCommand_BCD ; TX_BCD
dw TextCommand_MOVE ; TX_MOVE dw TextCommand_MOVE ; TX_MOVE
dw TextCommand_BOX ; TX_BOX dw TextCommand_BOX ; TX_BOX
dw TextCommand_LOW ; TX_LOW dw TextCommand_LOW ; TX_LOW
dw TextCommand_WAIT_BUTTON ; TX_WAIT_BUTTON dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON
dw TextCommand_SCROLL ; TX_SCROLL dw TextCommand_SCROLL ; TX_SCROLL
dw TextCommand_START_ASM ; TX_START_ASM dw TextCommand_START_ASM ; TX_START_ASM
dw TextCommand_NUM ; TX_NUM dw TextCommand_NUM ; TX_NUM
dw TextCommand_PAUSE ; TX_PAUSE dw TextCommand_PAUSE ; TX_PAUSE
dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_50_79 dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_50_79
dw TextCommand_DOTS ; TX_DOTS dw TextCommand_DOTS ; TX_DOTS
dw TextCommand_LINK_WAIT_BUTTON ; TX_LINK_WAIT_BUTTON dw TextCommand_LINK_PROMPT_BUTTON ; TX_LINK_PROMPT_BUTTON
dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_20_49 dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_20_49
dw TextCommand_SOUND ; TX_SOUND_ITEM dw TextCommand_SOUND ; TX_SOUND_ITEM
dw TextCommand_SOUND ; TX_SOUND_CAUGHT_MON dw TextCommand_SOUND ; TX_SOUND_CAUGHT_MON
dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_80_109 dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_80_109
dw TextCommand_SOUND ; TX_SOUND_FANFARE dw TextCommand_SOUND ; TX_SOUND_FANFARE
dw TextCommand_SOUND ; TX_SOUND_SLOT_MACHINE_START dw TextCommand_SOUND ; TX_SOUND_SLOT_MACHINE_START
dw TextCommand_STRINGBUFFER ; TX_STRINGBUFFER dw TextCommand_STRINGBUFFER ; TX_STRINGBUFFER
dw TextCommand_DAY ; TX_DAY dw TextCommand_DAY ; TX_DAY
dw TextCommand_FAR ; TX_FAR dw TextCommand_FAR ; TX_FAR
TextCommand_START:: TextCommand_START::
; text_start ; text_start
@ -834,22 +834,22 @@ TextCommand_LOW::
bccoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2 bccoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
ret ret
TextCommand_WAIT_BUTTON:: TextCommand_PROMPT_BUTTON::
; text_waitbutton ; text_promptbutton
; wait for button press ; wait for button press
; show arrow ; show arrow
; [06] ; [06]
ld a, [wLinkMode] ld a, [wLinkMode]
cp LINK_COLOSSEUM cp LINK_COLOSSEUM
jp z, TextCommand_LINK_WAIT_BUTTON jp z, TextCommand_LINK_PROMPT_BUTTON
cp LINK_MOBILE cp LINK_MOBILE
jp z, TextCommand_LINK_WAIT_BUTTON jp z, TextCommand_LINK_PROMPT_BUTTON
push hl push hl
call LoadBlinkingCursor call LoadBlinkingCursor
push bc push bc
call ButtonSound call PromptButton
pop bc pop bc
call UnloadBlinkingCursor call UnloadBlinkingCursor
pop hl pop hl
@ -1005,13 +1005,13 @@ TextCommand_DOTS::
pop hl pop hl
ret ret
TextCommand_LINK_WAIT_BUTTON:: TextCommand_LINK_PROMPT_BUTTON::
; text_linkwaitbutton ; text_linkpromptbutton
; wait for key down ; wait for key down
; display arrow ; display arrow
push hl push hl
push bc push bc
call ButtonSound call PromptButton
pop bc pop bc
pop hl pop hl
ret ret

View File

@ -96,6 +96,7 @@ loadmenuheader EQUS "loadmenu"
writebackup EQUS "closewindow" writebackup EQUS "closewindow"
interpretmenu EQUS "_2dmenu" interpretmenu EQUS "_2dmenu"
interpretmenu2 EQUS "verticalmenu" interpretmenu2 EQUS "verticalmenu"
buttonsound EQUS "promptbutton"
battlecheck EQUS "randomwildmon" battlecheck EQUS "randomwildmon"
loadtrainerdata EQUS "loadtemptrainer" loadtrainerdata EQUS "loadtemptrainer"
loadpokedata EQUS "loadwildmon" loadpokedata EQUS "loadwildmon"
@ -231,7 +232,9 @@ start_asm EQUS "text_asm"
deciram EQUS "text_decimal" deciram EQUS "text_decimal"
interpret_data EQUS "text_pause" interpret_data EQUS "text_pause"
limited_interpret_data EQUS "text_dots" limited_interpret_data EQUS "text_dots"
link_wait_button EQUS "text_linkwaitbutton" text_waitbutton EQUS "text_promptbutton"
link_wait_button EQUS "text_linkpromptbutton"
text_linkwaitbutton EQUS "text_linkpromptbutton"
current_day EQUS "text_today" current_day EQUS "text_today"
text_jump EQUS "text_far" text_jump EQUS "text_far"

View File

@ -553,9 +553,9 @@ waitbutton: MACRO
db waitbutton_command db waitbutton_command
ENDM ENDM
enum buttonsound_command ; $55 enum promptbutton_command ; $55
buttonsound: MACRO promptbutton: MACRO
db buttonsound_command db promptbutton_command
ENDM ENDM
enum pokepic_command ; $56 enum pokepic_command ; $56

View File

@ -46,9 +46,9 @@ text_low: MACRO
db TX_LOW db TX_LOW
ENDM ENDM
enum TX_WAIT_BUTTON ; $06 enum TX_PROMPT_BUTTON ; $06
text_waitbutton: MACRO text_promptbutton: MACRO
db TX_WAIT_BUTTON db TX_PROMPT_BUTTON
ENDM ENDM
enum TX_SCROLL ; $07 enum TX_SCROLL ; $07
@ -84,9 +84,9 @@ text_dots: MACRO
db \1 db \1
ENDM ENDM
enum TX_LINK_WAIT_BUTTON ; $0d enum TX_LINK_PROMPT_BUTTON ; $0d
text_linkwaitbutton: MACRO text_linkpromptbutton: MACRO
db TX_LINK_WAIT_BUTTON db TX_LINK_PROMPT_BUTTON
ENDM ENDM
enum TX_SOUND_DEX_FANFARE_20_49 ; $0e enum TX_SOUND_DEX_FANFARE_20_49 ; $0e

View File

@ -40,7 +40,7 @@ AzaleaGymBugsyScript:
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
buttonsound promptbutton
verbosegiveitem TM_FURY_CUTTER verbosegiveitem TM_FURY_CUTTER
iffalse .NoRoomForFuryCutter iffalse .NoRoomForFuryCutter
setevent EVENT_GOT_TM49_FURY_CUTTER setevent EVENT_GOT_TM49_FURY_CUTTER

View File

@ -157,10 +157,10 @@ AzaleaTownCelebiScene:
applymovement PLAYER, AzaleaTownPlayerLeavesKurtsHouseMovement applymovement PLAYER, AzaleaTownPlayerLeavesKurtsHouseMovement
opentext opentext
writetext AzaleaTownKurtText1 writetext AzaleaTownKurtText1
buttonsound promptbutton
turnobject AZALEATOWN_KURT_OUTSIDE, RIGHT turnobject AZALEATOWN_KURT_OUTSIDE, RIGHT
writetext AzaleaTownKurtText2 writetext AzaleaTownKurtText2
buttonsound promptbutton
writetext AzaleaTownKurtText3 writetext AzaleaTownKurtText3
waitbutton waitbutton
verbosegiveitem GS_BALL verbosegiveitem GS_BALL

View File

@ -57,7 +57,7 @@ BattleTower1FReceptionistScript:
ifequal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm ifequal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm
opentext opentext
writetext Text_BattleTowerWelcomesYou writetext Text_BattleTowerWelcomesYou
buttonsound promptbutton
setval BATTLETOWERACTION_CHECK_EXPLANATION_READ ; if new save file: bit 1, [sBattleTowerSaveFileFlags] setval BATTLETOWERACTION_CHECK_EXPLANATION_READ ; if new save file: bit 1, [sBattleTowerSaveFileFlags]
special BattleTowerAction special BattleTowerAction
ifnotequal $0, Script_Menu_ChallengeExplanationCancel ifnotequal $0, Script_Menu_ChallengeExplanationCancel
@ -528,7 +528,7 @@ Text_PlayerGotFive:
text_ram wStringBuffer4 text_ram wStringBuffer4
text "!@" text "!@"
sound_item sound_item
text_waitbutton text_promptbutton
text_end text_end
Text_YourPackIsStuffedFull: Text_YourPackIsStuffedFull:

View File

@ -28,7 +28,7 @@ Script_BattleRoomLoop:
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksIn applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksIn
opentext opentext
battletowertext BATTLETOWERTEXT_INTRO battletowertext BATTLETOWERTEXT_INTRO
buttonsound promptbutton
closetext closetext
special BattleTowerBattle ; calls predef startbattle special BattleTowerBattle ; calls predef startbattle
special FadeOutPalettes special FadeOutPalettes

View File

@ -17,7 +17,7 @@ BillScript:
yesorno yesorno
iffalse .Refused iffalse .Refused
writetext BillImCountingOnYouText writetext BillImCountingOnYouText
buttonsound promptbutton
waitsfx waitsfx
readvar VAR_PARTYCOUNT readvar VAR_PARTYCOUNT
ifequal PARTY_LENGTH, .NoRoom ifequal PARTY_LENGTH, .NoRoom
@ -79,7 +79,7 @@ BillsSisterScript:
writetext RecordedBillsNumberText writetext RecordedBillsNumberText
playsound SFX_REGISTER_PHONE_NUMBER playsound SFX_REGISTER_PHONE_NUMBER
waitsfx waitsfx
buttonsound promptbutton
.GotBillsNumber: .GotBillsNumber:
writetext BillsSisterStorageSystemText writetext BillsSisterStorageSystemText
waitbutton waitbutton
@ -94,7 +94,7 @@ BillsSisterScript:
.NoRoom: .NoRoom:
writetext BillsSisterPhoneFullText writetext BillsSisterPhoneFullText
buttonsound promptbutton
sjump .Refused sjump .Refused
BillsHouseBookshelf1: BillsHouseBookshelf1:

View File

@ -16,7 +16,7 @@ BillsGrandpa:
checkevent EVENT_MET_BILLS_GRANDPA checkevent EVENT_MET_BILLS_GRANDPA
iftrue .MetGrandpa iftrue .MetGrandpa
writetext BillsGrandpaIntroText writetext BillsGrandpaIntroText
buttonsound promptbutton
setevent EVENT_MET_BILLS_GRANDPA setevent EVENT_MET_BILLS_GRANDPA
.MetGrandpa: .MetGrandpa:
checkevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA checkevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
@ -30,7 +30,7 @@ BillsGrandpa:
checkevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA checkevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
iftrue .ShowedLickitung iftrue .ShowedLickitung
writetext BillsGrandpaLickitungText writetext BillsGrandpaLickitungText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -44,7 +44,7 @@ BillsGrandpa:
.GotEverstone: .GotEverstone:
writetext BillsGrandpaOddishText writetext BillsGrandpaOddishText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -58,7 +58,7 @@ BillsGrandpa:
.GotLeafStone: .GotLeafStone:
writetext BillsGrandpaStaryuText writetext BillsGrandpaStaryuText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -74,7 +74,7 @@ BillsGrandpa:
checkver checkver
iftrue .AskVulpix iftrue .AskVulpix
writetext BillsGrandpaGrowlitheText writetext BillsGrandpaGrowlitheText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -88,7 +88,7 @@ BillsGrandpa:
.AskVulpix: .AskVulpix:
writetext BillsGrandpaVulpixText writetext BillsGrandpaVulpixText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -102,7 +102,7 @@ BillsGrandpa:
.GotFireStone: .GotFireStone:
writetext BillsGrandpaPichuText writetext BillsGrandpaPichuText
buttonsound promptbutton
writetext BillsGrandpaAskToSeeMonText writetext BillsGrandpaAskToSeeMonText
yesorno yesorno
iffalse .SaidNo iffalse .SaidNo
@ -168,7 +168,7 @@ BillsGrandpa:
.ExcitedToSee: .ExcitedToSee:
writetext BillsGrandpaExcitedToSeeText writetext BillsGrandpaExcitedToSeeText
buttonsound promptbutton
end end
.SaidNo: .SaidNo:
@ -179,12 +179,12 @@ BillsGrandpa:
.CorrectPokemon: .CorrectPokemon:
writetext BillsGrandpaShownPokemonText writetext BillsGrandpaShownPokemonText
buttonsound promptbutton
end end
.ReceiveItem: .ReceiveItem:
writetext BillsGrandpaTokenOfAppreciationText writetext BillsGrandpaTokenOfAppreciationText
buttonsound promptbutton
end end
.JustShowedSomething: .JustShowedSomething:

View File

@ -95,11 +95,11 @@ SantosScript:
checkevent EVENT_MET_SANTOS_OF_SATURDAY checkevent EVENT_MET_SANTOS_OF_SATURDAY
iftrue .MetSantos iftrue .MetSantos
writetext MeetSantosText writetext MeetSantosText
buttonsound promptbutton
setevent EVENT_MET_SANTOS_OF_SATURDAY setevent EVENT_MET_SANTOS_OF_SATURDAY
.MetSantos: .MetSantos:
writetext SantosGivesGiftText writetext SantosGivesGiftText
buttonsound promptbutton
verbosegiveitem SPELL_TAG verbosegiveitem SPELL_TAG
iffalse .Done iffalse .Done
setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS setevent EVENT_GOT_SPELL_TAG_FROM_SANTOS

View File

@ -65,7 +65,7 @@ BlackthornGymClairScript:
checkevent EVENT_GOT_TM24_DRAGONBREATH checkevent EVENT_GOT_TM24_DRAGONBREATH
iftrue .GotTM24 iftrue .GotTM24
writetext BlackthornGymClairText_YouKeptMeWaiting writetext BlackthornGymClairText_YouKeptMeWaiting
buttonsound promptbutton
giveitem TM_DRAGONBREATH giveitem TM_DRAGONBREATH
iffalse .BagFull iffalse .BagFull
getitemname STRING_BUFFER_3, TM_DRAGONBREATH getitemname STRING_BUFFER_3, TM_DRAGONBREATH
@ -75,7 +75,7 @@ BlackthornGymClairScript:
itemnotify itemnotify
setevent EVENT_GOT_TM24_DRAGONBREATH setevent EVENT_GOT_TM24_DRAGONBREATH
writetext BlackthornGymClairText_DescribeTM24 writetext BlackthornGymClairText_DescribeTM24
buttonsound promptbutton
sjump .GotTM24 sjump .GotTM24
.BagFull: .BagFull:

View File

@ -39,7 +39,7 @@ DaisyScript:
opentext opentext
writetext GroomedMonLooksContentText writetext GroomedMonLooksContentText
special PlayCurMonCry special PlayCurMonCry
buttonsound promptbutton
writetext DaisyAllDoneText writetext DaisyAllDoneText
waitbutton waitbutton
closetext closetext

View File

@ -107,7 +107,7 @@ CeladonCafeTrashcan:
opentext opentext
getitemname STRING_BUFFER_3, LEFTOVERS getitemname STRING_BUFFER_3, LEFTOVERS
writetext FoundLeftoversText writetext FoundLeftoversText
buttonsound promptbutton
writetext NoRoomForLeftoversText writetext NoRoomForLeftoversText
waitbutton waitbutton
closetext closetext

View File

@ -67,7 +67,7 @@ CeladonDeptStore6FVendingMachine:
pause 10 pause 10
playsound SFX_ENTER_DOOR playsound SFX_ENTER_DOOR
writetext CeladonClangText writetext CeladonClangText
buttonsound promptbutton
itemnotify itemnotify
sjump .Start sjump .Start

View File

@ -53,7 +53,7 @@ CeladonGameCornerFisherScript:
checkevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON checkevent EVENT_GOT_COINS_FROM_GAMBLER_AT_CELADON
iftrue .GotCoins iftrue .GotCoins
writetext CeladonGameCornerFisherText1 writetext CeladonGameCornerFisherText1
buttonsound promptbutton
checkitem COIN_CASE checkitem COIN_CASE
iffalse .NoCoinCase iffalse .NoCoinCase
checkcoins MAX_COINS - 1 checkcoins MAX_COINS - 1

View File

@ -37,7 +37,7 @@ CeladonGymErikaScript:
checkevent EVENT_GOT_TM19_GIGA_DRAIN checkevent EVENT_GOT_TM19_GIGA_DRAIN
iftrue .GotGigaDrain iftrue .GotGigaDrain
writetext ErikaExplainTMText writetext ErikaExplainTMText
buttonsound promptbutton
verbosegiveitem TM_GIGA_DRAIN verbosegiveitem TM_GIGA_DRAIN
iffalse .GotGigaDrain iffalse .GotGigaDrain
setevent EVENT_GOT_TM19_GIGA_DRAIN setevent EVENT_GOT_TM19_GIGA_DRAIN

View File

@ -20,12 +20,12 @@ GameFreakGameDesignerScript:
end end
.CompletedPokedex: .CompletedPokedex:
buttonsound promptbutton
writetext GameFreakGameDesignerCompletedPokedexText writetext GameFreakGameDesignerCompletedPokedexText
playsound SFX_DEX_FANFARE_230_PLUS playsound SFX_DEX_FANFARE_230_PLUS
waitsfx waitsfx
writetext GameFreakGameDesignerPauseForDiplomaText writetext GameFreakGameDesignerPauseForDiplomaText
buttonsound promptbutton
special Diploma special Diploma
writetext GameFreakGameDesignerAfterDiplomaText writetext GameFreakGameDesignerAfterDiplomaText
waitbutton waitbutton

View File

@ -12,7 +12,7 @@ CeladonMansionRoofHousePharmacistScript:
checkevent EVENT_GOT_TM03_CURSE checkevent EVENT_GOT_TM03_CURSE
iftrue .GotCurse iftrue .GotCurse
writetext CeladonMansionRoofHousePharmacistIntroText writetext CeladonMansionRoofHousePharmacistIntroText
buttonsound promptbutton
checktime NITE checktime NITE
iftrue .Night iftrue .Night
writetext CeladonMansionRoofHousePharmacistNotNightText writetext CeladonMansionRoofHousePharmacistNotNightText
@ -22,7 +22,7 @@ CeladonMansionRoofHousePharmacistScript:
.Night: .Night:
writetext CeladonMansionRoofHousePharmacistStoryText writetext CeladonMansionRoofHousePharmacistStoryText
buttonsound promptbutton
verbosegiveitem TM_CURSE verbosegiveitem TM_CURSE
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_TM03_CURSE setevent EVENT_GOT_TM03_CURSE

View File

@ -26,7 +26,7 @@ CeladonEusine:
faceplayer faceplayer
opentext opentext
writetext CeladonEusineText1 writetext CeladonEusineText1
buttonsound promptbutton
setval SUICUNE setval SUICUNE
special MonCheck special MonCheck
iffalse .NoSuicune iffalse .NoSuicune

View File

@ -46,7 +46,7 @@ CharcoalKilnApprentice:
.Thanks: .Thanks:
writetext CharcoalKilnApprenticeText2 writetext CharcoalKilnApprenticeText2
buttonsound promptbutton
verbosegiveitem CHARCOAL verbosegiveitem CHARCOAL
iffalse .Done iffalse .Done
setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN setevent EVENT_GOT_CHARCOAL_IN_CHARCOAL_KILN

View File

@ -66,12 +66,12 @@ CherrygroveCityGuideGent:
turnobject PLAYER, RIGHT turnobject PLAYER, RIGHT
opentext opentext
writetext GuideGentGiftText writetext GuideGentGiftText
buttonsound promptbutton
getstring STRING_BUFFER_4, .mapcardname getstring STRING_BUFFER_4, .mapcardname
scall .JumpstdReceiveItem scall .JumpstdReceiveItem
setflag ENGINE_MAP_CARD setflag ENGINE_MAP_CARD
writetext GotMapCardText writetext GotMapCardText
buttonsound promptbutton
writetext GuideGentPokegearText writetext GuideGentPokegearText
waitbutton waitbutton
closetext closetext
@ -212,7 +212,7 @@ MysticWaterGuy:
checkevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE checkevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE
iftrue .After iftrue .After
writetext MysticWaterGuyTextBefore writetext MysticWaterGuyTextBefore
buttonsound promptbutton
verbosegiveitem MYSTIC_WATER verbosegiveitem MYSTIC_WATER
iffalse .Exit iffalse .Exit
setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE setevent EVENT_GOT_MYSTIC_WATER_IN_CHERRYGROVE

View File

@ -86,7 +86,7 @@ CianwoodCityChucksWife:
checkevent EVENT_GOT_HM02_FLY checkevent EVENT_GOT_HM02_FLY
iftrue .GotFly iftrue .GotFly
writetext ChucksWifeEasierToFlyText writetext ChucksWifeEasierToFlyText
buttonsound promptbutton
checkevent EVENT_BEAT_CHUCK checkevent EVENT_BEAT_CHUCK
iftrue .BeatChuck iftrue .BeatChuck
writetext ChucksWifeBeatChuckText writetext ChucksWifeBeatChuckText
@ -96,12 +96,12 @@ CianwoodCityChucksWife:
.BeatChuck: .BeatChuck:
writetext ChucksWifeGiveHMText writetext ChucksWifeGiveHMText
buttonsound promptbutton
verbosegiveitem HM_FLY verbosegiveitem HM_FLY
iffalse .Done iffalse .Done
setevent EVENT_GOT_HM02_FLY setevent EVENT_GOT_HM02_FLY
writetext ChucksWifeFlySpeechText writetext ChucksWifeFlySpeechText
buttonsound promptbutton
.GotFly: .GotFly:
writetext ChucksWifeChubbyText writetext ChucksWifeChubbyText
waitbutton waitbutton

View File

@ -57,7 +57,7 @@ CianwoodGymChuckScript:
setevent EVENT_BEAT_BLACKBELT_NOB setevent EVENT_BEAT_BLACKBELT_NOB
setevent EVENT_BEAT_BLACKBELT_LUNG setevent EVENT_BEAT_BLACKBELT_LUNG
writetext ChuckExplainBadgeText writetext ChuckExplainBadgeText
buttonsound promptbutton
verbosegiveitem TM_DYNAMICPUNCH verbosegiveitem TM_DYNAMICPUNCH
iffalse .BagFull iffalse .BagFull
setevent EVENT_GOT_TM01_DYNAMICPUNCH setevent EVENT_GOT_TM01_DYNAMICPUNCH

View File

@ -18,7 +18,7 @@ CianwoodPharmacist:
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
iffalse .Mart iffalse .Mart
writetext PharmacistGiveSecretpotionText writetext PharmacistGiveSecretpotionText
buttonsound promptbutton
giveitem SECRETPOTION giveitem SECRETPOTION
writetext ReceivedSecretpotionText writetext ReceivedSecretpotionText
playsound SFX_KEY_ITEM playsound SFX_KEY_ITEM

View File

@ -108,7 +108,7 @@ Copycat:
.ReturnLostItem: .ReturnLostItem:
opentext opentext
writetext CopycatText_GiveDoll writetext CopycatText_GiveDoll
buttonsound promptbutton
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
@ -118,7 +118,7 @@ Copycat:
opentext opentext
.GivePass: .GivePass:
writetext CopycatText_GivePass writetext CopycatText_GivePass
buttonsound promptbutton
verbosegiveitem PASS verbosegiveitem PASS
iffalse .Cancel iffalse .Cancel
setevent EVENT_GOT_PASS_FROM_COPYCAT setevent EVENT_GOT_PASS_FROM_COPYCAT
@ -174,7 +174,7 @@ CopycatsDodrio:
opentext opentext
writetext CopycatsDodrioText1 writetext CopycatsDodrioText1
cry DODRIO cry DODRIO
buttonsound promptbutton
writetext CopycatsDodrioText2 writetext CopycatsDodrioText2
waitbutton waitbutton
closetext closetext

View File

@ -73,7 +73,7 @@ DanceTheaterSurfGuy:
faceplayer faceplayer
opentext opentext
writetext SurfGuyNeverLeftAScratchText writetext SurfGuyNeverLeftAScratchText
buttonsound promptbutton
checkevent EVENT_GOT_HM03_SURF checkevent EVENT_GOT_HM03_SURF
iftrue SurfGuyAlreadyGaveSurf iftrue SurfGuyAlreadyGaveSurf
checkevent EVENT_BEAT_KIMONO_GIRL_NAOKO checkevent EVENT_BEAT_KIMONO_GIRL_NAOKO
@ -104,7 +104,7 @@ DanceTheaterSurfGuy:
.GetSurf: .GetSurf:
writetext SurfGuyLikeADanceText writetext SurfGuyLikeADanceText
buttonsound promptbutton
verbosegiveitem HM_SURF verbosegiveitem HM_SURF
setevent EVENT_GOT_HM03_SURF setevent EVENT_GOT_HM03_SURF
writetext SurfGuySurfExplanationText writetext SurfGuySurfExplanationText

View File

@ -14,7 +14,7 @@ DarkCaveBlackthornEntrancePharmacistScript:
checkevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE checkevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE
iftrue .GotBlackglasses iftrue .GotBlackglasses
writetext DarkCaveBlackthornEntrancePharmacistText1 writetext DarkCaveBlackthornEntrancePharmacistText1
buttonsound promptbutton
verbosegiveitem BLACKGLASSES verbosegiveitem BLACKGLASSES
iffalse .PackFull iffalse .PackFull
setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE setevent EVENT_GOT_BLACKGLASSES_IN_DARK_CAVE

View File

@ -26,7 +26,7 @@ DayCareManScript_Inside:
checkevent EVENT_GOT_ODD_EGG checkevent EVENT_GOT_ODD_EGG
iftrue .AlreadyHaveOddEgg iftrue .AlreadyHaveOddEgg
writetext DayCareManText_GiveOddEgg writetext DayCareManText_GiveOddEgg
buttonsound promptbutton
closetext closetext
readvar VAR_PARTYCOUNT readvar VAR_PARTYCOUNT
ifequal PARTY_LENGTH, .PartyFull ifequal PARTY_LENGTH, .PartyFull

View File

@ -23,11 +23,11 @@ DragonShrine_MapScripts:
applymovement DRAGONSHRINE_ELDER1, DragonShrineElderStepDownMovement applymovement DRAGONSHRINE_ELDER1, DragonShrineElderStepDownMovement
opentext opentext
writetext DragonShrineElderGreetingText writetext DragonShrineElderGreetingText
buttonsound promptbutton
.Question1: .Question1:
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
writetext DragonShrineQuestion1Text writetext DragonShrineQuestion1Text
buttonsound promptbutton
loadmenu DragonShrineQuestion1_MenuHeader loadmenu DragonShrineQuestion1_MenuHeader
verticalmenu verticalmenu
closewindow closewindow
@ -39,7 +39,7 @@ DragonShrine_MapScripts:
.Question2: .Question2:
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3
writetext DragonShrineQuestion2Text writetext DragonShrineQuestion2Text
buttonsound promptbutton
loadmenu DragonShrineQuestion2_MenuHeader loadmenu DragonShrineQuestion2_MenuHeader
verticalmenu verticalmenu
closewindow closewindow
@ -49,7 +49,7 @@ DragonShrine_MapScripts:
.Question3: .Question3:
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4
writetext DragonShrineQuestion3Text writetext DragonShrineQuestion3Text
buttonsound promptbutton
loadmenu DragonShrineQuestion3_MenuHeader loadmenu DragonShrineQuestion3_MenuHeader
verticalmenu verticalmenu
closewindow closewindow
@ -59,7 +59,7 @@ DragonShrine_MapScripts:
.Question4: .Question4:
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5
writetext DragonShrineQuestion4Text writetext DragonShrineQuestion4Text
buttonsound promptbutton
loadmenu DragonShrineQuestion4_MenuHeader loadmenu DragonShrineQuestion4_MenuHeader
verticalmenu verticalmenu
closewindow closewindow
@ -69,7 +69,7 @@ DragonShrine_MapScripts:
.Question5: .Question5:
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
writetext DragonShrineQuestion5Text writetext DragonShrineQuestion5Text
buttonsound promptbutton
loadmenu DragonShrineQuestion5_MenuHeader loadmenu DragonShrineQuestion5_MenuHeader
verticalmenu verticalmenu
closewindow closewindow
@ -80,7 +80,7 @@ DragonShrine_MapScripts:
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
iftrue .PassedTheTest iftrue .PassedTheTest
writetext DragonShrineRightAnswerText writetext DragonShrineRightAnswerText
buttonsound promptbutton
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5
iftrue .Question5 iftrue .Question5
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4
@ -166,7 +166,7 @@ DragonShrine_MapScripts:
setscene SCENE_FINISHED setscene SCENE_FINISHED
setmapscene DRAGONS_DEN_B1F, SCENE_DRAGONSDENB1F_CLAIR_GIVES_TM setmapscene DRAGONS_DEN_B1F, SCENE_DRAGONSDENB1F_CLAIR_GIVES_TM
writetext DragonShrinePlayerReceivedRisingBadgeText writetext DragonShrinePlayerReceivedRisingBadgeText
buttonsound promptbutton
writetext DragonShrineRisingBadgeExplanationText writetext DragonShrineRisingBadgeExplanationText
waitbutton waitbutton
closetext closetext

View File

@ -52,7 +52,7 @@ DragonsDenB1F_ClairScene:
applymovement DRAGONSDENB1F_CLAIR, MovementDragonsDen_ClairWalksToYou applymovement DRAGONSDENB1F_CLAIR, MovementDragonsDen_ClairWalksToYou
opentext opentext
writetext ClairText_GiveDragonbreathDragonDen writetext ClairText_GiveDragonbreathDragonDen
buttonsound promptbutton
giveitem TM_DRAGONBREATH giveitem TM_DRAGONBREATH
iffalse .BagFull iffalse .BagFull
getitemname STRING_BUFFER_3, TM_DRAGONBREATH getitemname STRING_BUFFER_3, TM_DRAGONBREATH
@ -62,7 +62,7 @@ DragonsDenB1F_ClairScene:
itemnotify itemnotify
setevent EVENT_GOT_TM24_DRAGONBREATH setevent EVENT_GOT_TM24_DRAGONBREATH
writetext ClairText_DescribeDragonbreathDragonDen writetext ClairText_DescribeDragonbreathDragonDen
buttonsound promptbutton
writetext ClairText_WhatsTheMatterDragonDen writetext ClairText_WhatsTheMatterDragonDen
waitbutton waitbutton
closetext closetext
@ -144,7 +144,7 @@ DragonsDenB1FDragonFangScript:
opentext opentext
getitemname STRING_BUFFER_3, DRAGON_FANG getitemname STRING_BUFFER_3, DRAGON_FANG
writetext Text_FoundDragonFang writetext Text_FoundDragonFang
buttonsound promptbutton
writetext Text_NoRoomForDragonFang writetext Text_NoRoomForDragonFang
waitbutton waitbutton
closetext closetext

View File

@ -52,7 +52,7 @@ EcruteakGymMortyScript:
setevent EVENT_BEAT_MEDIUM_MARTHA setevent EVENT_BEAT_MEDIUM_MARTHA
setevent EVENT_BEAT_MEDIUM_GRACE setevent EVENT_BEAT_MEDIUM_GRACE
writetext MortyText_FogBadgeSpeech writetext MortyText_FogBadgeSpeech
buttonsound promptbutton
verbosegiveitem TM_SHADOW_BALL verbosegiveitem TM_SHADOW_BALL
iffalse .NoRoomForShadowBall iffalse .NoRoomForShadowBall
setevent EVENT_GOT_TM30_SHADOW_BALL setevent EVENT_GOT_TM30_SHADOW_BALL

View File

@ -16,7 +16,7 @@ EcruteakItemfinderGuy:
yesorno yesorno
iffalse .no iffalse .no
writetext EcruteakItemfinderTrueSpiritText writetext EcruteakItemfinderTrueSpiritText
buttonsound promptbutton
verbosegiveitem ITEMFINDER verbosegiveitem ITEMFINDER
setevent EVENT_GOT_ITEMFINDER setevent EVENT_GOT_ITEMFINDER
.itemfinder: .itemfinder:

View File

@ -38,7 +38,7 @@ EcruteakPokecenter1F_MapScripts:
pause 10 pause 10
opentext opentext
writetext EcruteakPokecenter1F_BillText1 writetext EcruteakPokecenter1F_BillText1
buttonsound promptbutton
sjump .PointlessJump sjump .PointlessJump
.PointlessJump: .PointlessJump:

View File

@ -58,7 +58,7 @@ ElmsLab_MapScripts:
.ElmGetsEmail: .ElmGetsEmail:
writetext ElmText_Accepted writetext ElmText_Accepted
buttonsound promptbutton
writetext ElmText_ResearchAmbitions writetext ElmText_ResearchAmbitions
waitbutton waitbutton
closetext closetext
@ -171,13 +171,13 @@ CyndaquilPokeBallScript:
disappear ELMSLAB_POKE_BALL1 disappear ELMSLAB_POKE_BALL1
setevent EVENT_GOT_CYNDAQUIL_FROM_ELM setevent EVENT_GOT_CYNDAQUIL_FROM_ELM
writetext ChoseStarterText writetext ChoseStarterText
buttonsound promptbutton
waitsfx waitsfx
getmonname STRING_BUFFER_3, CYNDAQUIL getmonname STRING_BUFFER_3, CYNDAQUIL
writetext ReceivedStarterText writetext ReceivedStarterText
playsound SFX_CAUGHT_MON playsound SFX_CAUGHT_MON
waitsfx waitsfx
buttonsound promptbutton
givepoke CYNDAQUIL, 5, BERRY givepoke CYNDAQUIL, 5, BERRY
closetext closetext
readvar VAR_FACING readvar VAR_FACING
@ -201,13 +201,13 @@ TotodilePokeBallScript:
disappear ELMSLAB_POKE_BALL2 disappear ELMSLAB_POKE_BALL2
setevent EVENT_GOT_TOTODILE_FROM_ELM setevent EVENT_GOT_TOTODILE_FROM_ELM
writetext ChoseStarterText writetext ChoseStarterText
buttonsound promptbutton
waitsfx waitsfx
getmonname STRING_BUFFER_3, TOTODILE getmonname STRING_BUFFER_3, TOTODILE
writetext ReceivedStarterText writetext ReceivedStarterText
playsound SFX_CAUGHT_MON playsound SFX_CAUGHT_MON
waitsfx waitsfx
buttonsound promptbutton
givepoke TOTODILE, 5, BERRY givepoke TOTODILE, 5, BERRY
closetext closetext
applymovement PLAYER, AfterTotodileMovement applymovement PLAYER, AfterTotodileMovement
@ -229,13 +229,13 @@ ChikoritaPokeBallScript:
disappear ELMSLAB_POKE_BALL3 disappear ELMSLAB_POKE_BALL3
setevent EVENT_GOT_CHIKORITA_FROM_ELM setevent EVENT_GOT_CHIKORITA_FROM_ELM
writetext ChoseStarterText writetext ChoseStarterText
buttonsound promptbutton
waitsfx waitsfx
getmonname STRING_BUFFER_3, CHIKORITA getmonname STRING_BUFFER_3, CHIKORITA
writetext ReceivedStarterText writetext ReceivedStarterText
playsound SFX_CAUGHT_MON playsound SFX_CAUGHT_MON
waitsfx waitsfx
buttonsound promptbutton
givepoke CHIKORITA, 5, BERRY givepoke CHIKORITA, 5, BERRY
closetext closetext
applymovement PLAYER, AfterChikoritaMovement applymovement PLAYER, AfterChikoritaMovement
@ -325,7 +325,7 @@ ElmAfterTheftScript:
writetext ElmAfterTheftText1 writetext ElmAfterTheftText1
checkitem MYSTERY_EGG checkitem MYSTERY_EGG
iffalse ElmAfterTheftDoneScript iffalse ElmAfterTheftDoneScript
buttonsound promptbutton
writetext ElmAfterTheftText2 writetext ElmAfterTheftText2
waitbutton waitbutton
takeitem MYSTERY_EGG takeitem MYSTERY_EGG
@ -334,9 +334,9 @@ ElmAfterTheftScript:
waitbutton waitbutton
scall ElmJumpBackScript2 scall ElmJumpBackScript2
writetext ElmAfterTheftText4 writetext ElmAfterTheftText4
buttonsound promptbutton
writetext ElmAfterTheftText5 writetext ElmAfterTheftText5
buttonsound promptbutton
setevent EVENT_GAVE_MYSTERY_EGG_TO_ELM setevent EVENT_GAVE_MYSTERY_EGG_TO_ELM
setflag ENGINE_MAIN_MENU_MOBILE_CHOICES setflag ENGINE_MAIN_MENU_MOBILE_CHOICES
setmapscene ROUTE_29, SCENE_ROUTE29_CATCH_TUTORIAL setmapscene ROUTE_29, SCENE_ROUTE29_CATCH_TUTORIAL
@ -374,12 +374,12 @@ ShowElmTogepiScript:
setevent EVENT_SHOWED_TOGEPI_TO_ELM setevent EVENT_SHOWED_TOGEPI_TO_ELM
opentext opentext
writetext ShowElmTogepiText2 writetext ShowElmTogepiText2
buttonsound promptbutton
writetext ShowElmTogepiText3 writetext ShowElmTogepiText3
buttonsound promptbutton
ElmGiveEverstoneScript: ElmGiveEverstoneScript:
writetext ElmGiveEverstoneText1 writetext ElmGiveEverstoneText1
buttonsound promptbutton
verbosegiveitem EVERSTONE verbosegiveitem EVERSTONE
iffalse ElmScript_NoRoomForEverstone iffalse ElmScript_NoRoomForEverstone
writetext ElmGiveEverstoneText2 writetext ElmGiveEverstoneText2
@ -397,7 +397,7 @@ ElmScript_NoRoomForEverstone:
ElmGiveMasterBallScript: ElmGiveMasterBallScript:
writetext ElmGiveMasterBallText1 writetext ElmGiveMasterBallText1
buttonsound promptbutton
verbosegiveitem MASTER_BALL verbosegiveitem MASTER_BALL
iffalse .notdone iffalse .notdone
setevent EVENT_GOT_MASTER_BALL_FROM_ELM setevent EVENT_GOT_MASTER_BALL_FROM_ELM
@ -409,7 +409,7 @@ ElmGiveMasterBallScript:
ElmGiveTicketScript: ElmGiveTicketScript:
writetext ElmGiveTicketText1 writetext ElmGiveTicketText1
buttonsound promptbutton
verbosegiveitem S_S_TICKET verbosegiveitem S_S_TICKET
setevent EVENT_GOT_SS_TICKET_FROM_ELM setevent EVENT_GOT_SS_TICKET_FROM_ELM
writetext ElmGiveTicketText2 writetext ElmGiveTicketText2
@ -472,7 +472,7 @@ AideScript_WalkPotion2:
AideScript_GivePotion: AideScript_GivePotion:
opentext opentext
writetext AideText_GiveYouPotion writetext AideText_GiveYouPotion
buttonsound promptbutton
verbosegiveitem POTION verbosegiveitem POTION
writetext AideText_AlwaysBusy writetext AideText_AlwaysBusy
waitbutton waitbutton
@ -497,12 +497,12 @@ AideScript_WalkBalls2:
AideScript_GiveYouBalls: AideScript_GiveYouBalls:
opentext opentext
writetext AideText_GiveYouBalls writetext AideText_GiveYouBalls
buttonsound promptbutton
getitemname STRING_BUFFER_4, POKE_BALL getitemname STRING_BUFFER_4, POKE_BALL
scall AideScript_ReceiveTheBalls scall AideScript_ReceiveTheBalls
giveitem POKE_BALL, 5 giveitem POKE_BALL, 5
writetext AideText_ExplainBalls writetext AideText_ExplainBalls
buttonsound promptbutton
itemnotify itemnotify
closetext closetext
setscene SCENE_ELMSLAB_NOTHING setscene SCENE_ELMSLAB_NOTHING
@ -553,7 +553,7 @@ CopScript:
turnobject ELMSLAB_OFFICER, LEFT turnobject ELMSLAB_OFFICER, LEFT
opentext opentext
writetext ElmsLabOfficerText1 writetext ElmsLabOfficerText1
buttonsound promptbutton
special NameRival special NameRival
writetext ElmsLabOfficerText2 writetext ElmsLabOfficerText2
waitbutton waitbutton

View File

@ -79,7 +79,7 @@ FastShipB1FSailorScript:
end end
.NotFoundGirl: .NotFoundGirl:
buttonsound promptbutton
writetext FastShipB1FOnDutySailorSawLittleGirlText writetext FastShipB1FOnDutySailorSawLittleGirlText
waitbutton waitbutton
closetext closetext

View File

@ -77,7 +77,7 @@ SSAquaGranddaughterBefore:
applymovement FASTSHIPCABINS_SE_SSE_CAPTAINSCABIN_GENTLEMAN, MovementData_0x76010 applymovement FASTSHIPCABINS_SE_SSE_CAPTAINSCABIN_GENTLEMAN, MovementData_0x76010
opentext opentext
writetext SSAquaEntertainedGranddaughterText writetext SSAquaEntertainedGranddaughterText
buttonsound promptbutton
setevent EVENT_VERMILION_PORT_SAILOR_AT_GANGWAY setevent EVENT_VERMILION_PORT_SAILOR_AT_GANGWAY
setmapscene FAST_SHIP_1F, SCENE_DEFAULT setmapscene FAST_SHIP_1F, SCENE_DEFAULT
sjump SSAquaMetalCoatAndDocking sjump SSAquaMetalCoatAndDocking
@ -97,7 +97,7 @@ SSAquaGrandpa:
SSAquaMetalCoatAndDocking: SSAquaMetalCoatAndDocking:
writetext SSAquaGrandpaHaveThisText writetext SSAquaGrandpaHaveThisText
buttonsound promptbutton
verbosegiveitem METAL_COAT verbosegiveitem METAL_COAT
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA
@ -116,7 +116,7 @@ SSAquaMetalCoatAndDocking:
SSAquaFoundGranddaughter: SSAquaFoundGranddaughter:
writetext SSAquaGrandpaHaveThisText writetext SSAquaGrandpaHaveThisText
buttonsound promptbutton
verbosegiveitem METAL_COAT verbosegiveitem METAL_COAT
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA setevent EVENT_GOT_METAL_COAT_FROM_GRANDPA_ON_SS_AQUA

View File

@ -47,7 +47,7 @@ FuchsiaGymJanineScript:
checkevent EVENT_GOT_TM06_TOXIC checkevent EVENT_GOT_TM06_TOXIC
iftrue .AfterTM iftrue .AfterTM
writetext JanineText_ToxicSpeech writetext JanineText_ToxicSpeech
buttonsound promptbutton
verbosegiveitem TM_TOXIC verbosegiveitem TM_TOXIC
iffalse .AfterTM iffalse .AfterTM
setevent EVENT_GOT_TM06_TOXIC setevent EVENT_GOT_TM06_TOXIC

View File

@ -18,7 +18,7 @@ GoldenrodBikeShopClerkScript:
yesorno yesorno
iffalse .Refused iffalse .Refused
writetext GoldenrodBikeShopClerkAgreedText writetext GoldenrodBikeShopClerkAgreedText
buttonsound promptbutton
waitsfx waitsfx
giveitem BICYCLE giveitem BICYCLE
writetext BorrowedABicycleText writetext BorrowedABicycleText

View File

@ -120,7 +120,7 @@ MoveTutorScript:
.TeachMove: .TeachMove:
writetext GoldenrodCityMoveTutorIfYouUnderstandYouveMadeItText writetext GoldenrodCityMoveTutorIfYouUnderstandYouveMadeItText
buttonsound promptbutton
takecoins 4000 takecoins 4000
waitsfx waitsfx
playsound SFX_TRANSACTION playsound SFX_TRANSACTION
@ -205,7 +205,7 @@ GoldenrodCityGrampsScript:
GoldenrodCityRocketScoutScript: GoldenrodCityRocketScoutScript:
opentext opentext
writetext GoldenrodCityRocketScoutText1 writetext GoldenrodCityRocketScoutText1
buttonsound promptbutton
faceplayer faceplayer
writetext GoldenrodCityRocketScoutText2 writetext GoldenrodCityRocketScoutText2
waitbutton waitbutton

View File

@ -65,14 +65,14 @@ GoldenrodDeptStore5FReceptionistScript:
iftrue .EventIsOver iftrue .EventIsOver
special GetFirstPokemonHappiness special GetFirstPokemonHappiness
writetext GoldenrodDeptStore5FReceptionistOhYourMonDotDotDotText writetext GoldenrodDeptStore5FReceptionistOhYourMonDotDotDotText
buttonsound promptbutton
ifgreater 150 - 1, .VeryHappy ifgreater 150 - 1, .VeryHappy
ifgreater 50 - 1, .SomewhatHappy ifgreater 50 - 1, .SomewhatHappy
sjump .NotVeryHappy sjump .NotVeryHappy
.VeryHappy: .VeryHappy:
writetext GoldenrodDeptStore5FReceptionistThisMoveShouldBePerfectText writetext GoldenrodDeptStore5FReceptionistThisMoveShouldBePerfectText
buttonsound promptbutton
verbosegiveitem TM_RETURN verbosegiveitem TM_RETURN
iffalse .Done iffalse .Done
setflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN setflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN
@ -87,7 +87,7 @@ GoldenrodDeptStore5FReceptionistScript:
.NotVeryHappy: .NotVeryHappy:
writetext GoldenrodDeptStore5FReceptionistItLooksEvilHowAboutThisTMText writetext GoldenrodDeptStore5FReceptionistItLooksEvilHowAboutThisTMText
buttonsound promptbutton
verbosegiveitem TM_FRUSTRATION verbosegiveitem TM_FRUSTRATION
iffalse .Done iffalse .Done
setflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN setflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN

View File

@ -56,7 +56,7 @@ GoldenrodVendingMachine:
pause 10 pause 10
playsound SFX_ENTER_DOOR playsound SFX_ENTER_DOOR
writetext GoldenrodClangText writetext GoldenrodClangText
buttonsound promptbutton
itemnotify itemnotify
sjump .Start sjump .Start

View File

@ -21,7 +21,7 @@ FlowerShopTeacherScript:
faceplayer faceplayer
opentext opentext
writetext GoldenrodFlowerShopTeacherHeresTheSquirtbottleText writetext GoldenrodFlowerShopTeacherHeresTheSquirtbottleText
buttonsound promptbutton
verbosegiveitem SQUIRTBOTTLE verbosegiveitem SQUIRTBOTTLE
setevent EVENT_GOT_SQUIRTBOTTLE setevent EVENT_GOT_SQUIRTBOTTLE
closetext closetext

View File

@ -53,7 +53,7 @@ GoldenrodGymWhitneyScript:
checkflag ENGINE_PLAINBADGE checkflag ENGINE_PLAINBADGE
iftrue .GotPlainBadge iftrue .GotPlainBadge
writetext WhitneyWhatDoYouWantText writetext WhitneyWhatDoYouWantText
buttonsound promptbutton
waitsfx waitsfx
writetext PlayerReceivedPlainBadgeText writetext PlayerReceivedPlainBadgeText
playsound SFX_GET_BADGE playsound SFX_GET_BADGE
@ -63,7 +63,7 @@ GoldenrodGymWhitneyScript:
scall GoldenrodGymActivateRockets scall GoldenrodGymActivateRockets
.GotPlainBadge: .GotPlainBadge:
writetext WhitneyPlainBadgeText writetext WhitneyPlainBadgeText
buttonsound promptbutton
verbosegiveitem TM_ATTRACT verbosegiveitem TM_ATTRACT
iffalse .NoRoomForAttract iffalse .NoRoomForAttract
setevent EVENT_GOT_TM45_ATTRACT setevent EVENT_GOT_TM45_ATTRACT

View File

@ -13,7 +13,7 @@ GoldenrodHappinessRaterTeacherScript:
opentext opentext
special GetFirstPokemonHappiness special GetFirstPokemonHappiness
writetext GoldenrodHappinessRaterTeacherText writetext GoldenrodHappinessRaterTeacherText
buttonsound promptbutton
ifgreater 250 - 1, .LovesYouALot ifgreater 250 - 1, .LovesYouALot
ifgreater 200 - 1, .ReallyTrustsYou ifgreater 200 - 1, .ReallyTrustsYou
ifgreater 150 - 1, .SortOfHappy ifgreater 150 - 1, .SortOfHappy

View File

@ -200,7 +200,7 @@ OlderHaircutBrotherScript:
checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE
ifequal HAVE_LESS, .NotEnoughMoney ifequal HAVE_LESS, .NotEnoughMoney
writetext GoldenrodUndergroundOlderHaircutBrotherAskWhichMonText writetext GoldenrodUndergroundOlderHaircutBrotherAskWhichMonText
buttonsound promptbutton
special OlderHaircutBrother special OlderHaircutBrother
ifequal $0, .Refused ifequal $0, .Refused
ifequal $1, .Refused ifequal $1, .Refused
@ -283,7 +283,7 @@ YoungerHaircutBrotherScript:
checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE
ifequal HAVE_LESS, .NotEnoughMoney ifequal HAVE_LESS, .NotEnoughMoney
writetext GoldenrodUndergroundYoungerHaircutBrotherAskWhichMonText writetext GoldenrodUndergroundYoungerHaircutBrotherAskWhichMonText
buttonsound promptbutton
special YoungerHaircutBrother special YoungerHaircutBrother
ifequal $0, .Refused ifequal $0, .Refused
ifequal $1, .Refused ifequal $1, .Refused

View File

@ -273,7 +273,7 @@ TrainerGruntF3:
Switch1Script: Switch1Script:
opentext opentext
writetext SwitchRoomText_Switch1 writetext SwitchRoomText_Switch1
buttonsound promptbutton
checkevent EVENT_SWITCH_1 checkevent EVENT_SWITCH_1
iftrue .On iftrue .On
writetext SwitchRoomText_OffTurnOn writetext SwitchRoomText_OffTurnOn
@ -298,7 +298,7 @@ Switch1Script:
Switch2Script: Switch2Script:
opentext opentext
writetext SwitchRoomText_Switch2 writetext SwitchRoomText_Switch2
buttonsound promptbutton
checkevent EVENT_SWITCH_2 checkevent EVENT_SWITCH_2
iftrue .On iftrue .On
writetext SwitchRoomText_OffTurnOn writetext SwitchRoomText_OffTurnOn
@ -323,7 +323,7 @@ Switch2Script:
Switch3Script: Switch3Script:
opentext opentext
writetext SwitchRoomText_Switch3 writetext SwitchRoomText_Switch3
buttonsound promptbutton
checkevent EVENT_SWITCH_3 checkevent EVENT_SWITCH_3
iftrue .On iftrue .On
writetext SwitchRoomText_OffTurnOn writetext SwitchRoomText_OffTurnOn
@ -348,7 +348,7 @@ Switch3Script:
EmergencySwitchScript: EmergencySwitchScript:
opentext opentext
writetext SwitchRoomText_Emergency writetext SwitchRoomText_Emergency
buttonsound promptbutton
checkevent EVENT_EMERGENCY_SWITCH checkevent EVENT_EMERGENCY_SWITCH
iftrue .On iftrue .On
writetext SwitchRoomText_OffTurnOn writetext SwitchRoomText_OffTurnOn

View File

@ -72,14 +72,14 @@ GoldenrodUndergroundWarehouseDirectorScript:
checkevent EVENT_RECEIVED_CARD_KEY checkevent EVENT_RECEIVED_CARD_KEY
iftrue .GotCardKey iftrue .GotCardKey
writetext DirectorIntroText writetext DirectorIntroText
buttonsound promptbutton
verbosegiveitem CARD_KEY verbosegiveitem CARD_KEY
setevent EVENT_RECEIVED_CARD_KEY setevent EVENT_RECEIVED_CARD_KEY
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1 setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2 clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3 clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
writetext DirectorCardKeyText writetext DirectorCardKeyText
buttonsound promptbutton
.GotCardKey: .GotCardKey:
writetext DirectorAfterText writetext DirectorAfterText
waitbutton waitbutton

View File

@ -117,7 +117,7 @@ IlexForestFarfetchdScript:
faceplayer faceplayer
opentext opentext
writetext Text_ItsTheMissingPokemon writetext Text_ItsTheMissingPokemon
buttonsound promptbutton
writetext Text_Kwaaaa writetext Text_Kwaaaa
cry FARFETCH_D cry FARFETCH_D
waitbutton waitbutton
@ -348,7 +348,7 @@ IlexForestCharcoalMasterScript:
checkevent EVENT_GOT_HM01_CUT checkevent EVENT_GOT_HM01_CUT
iftrue .AlreadyGotCut iftrue .AlreadyGotCut
writetext Text_CharcoalMasterIntro writetext Text_CharcoalMasterIntro
buttonsound promptbutton
verbosegiveitem HM_CUT verbosegiveitem HM_CUT
setevent EVENT_GOT_HM01_CUT setevent EVENT_GOT_HM01_CUT
writetext Text_CharcoalMasterOutro writetext Text_CharcoalMasterOutro
@ -374,7 +374,7 @@ IlexForestHeadbuttGuyScript:
checkevent EVENT_GOT_TM02_HEADBUTT checkevent EVENT_GOT_TM02_HEADBUTT
iftrue .AlreadyGotHeadbutt iftrue .AlreadyGotHeadbutt
writetext Text_HeadbuttIntro writetext Text_HeadbuttIntro
buttonsound promptbutton
verbosegiveitem TM_HEADBUTT verbosegiveitem TM_HEADBUTT
iffalse .BagFull iffalse .BagFull
setevent EVENT_GOT_TM02_HEADBUTT setevent EVENT_GOT_TM02_HEADBUTT

View File

@ -67,7 +67,7 @@ Kurt1:
.ClearedSlowpokeWell: .ClearedSlowpokeWell:
writetext KurtsHouseKurtHonoredToMakeBallsText writetext KurtsHouseKurtHonoredToMakeBallsText
buttonsound promptbutton
verbosegiveitem LURE_BALL verbosegiveitem LURE_BALL
iffalse .NoRoomForBall iffalse .NoRoomForBall
setevent EVENT_KURT_GAVE_YOU_LURE_BALL setevent EVENT_KURT_GAVE_YOU_LURE_BALL
@ -127,7 +127,7 @@ Kurt1:
.AskApricorn: .AskApricorn:
writetext KurtsHouseKurtAskYouHaveAnApricornText writetext KurtsHouseKurtAskYouHaveAnApricornText
buttonsound promptbutton
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3 setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3
special SelectApricornForKurt special SelectApricornForKurt
ifequal FALSE, .Cancel ifequal FALSE, .Cancel
@ -193,7 +193,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar LEVEL_BALL, VAR_KURT_APRICORNS verbosegiveitemvar LEVEL_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_RED_APRICORN clearevent EVENT_GAVE_KURT_RED_APRICORN
@ -203,7 +203,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar LURE_BALL, VAR_KURT_APRICORNS verbosegiveitemvar LURE_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_BLU_APRICORN clearevent EVENT_GAVE_KURT_BLU_APRICORN
@ -213,7 +213,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar MOON_BALL, VAR_KURT_APRICORNS verbosegiveitemvar MOON_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_YLW_APRICORN clearevent EVENT_GAVE_KURT_YLW_APRICORN
@ -223,7 +223,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar FRIEND_BALL, VAR_KURT_APRICORNS verbosegiveitemvar FRIEND_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_GRN_APRICORN clearevent EVENT_GAVE_KURT_GRN_APRICORN
@ -233,7 +233,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar FAST_BALL, VAR_KURT_APRICORNS verbosegiveitemvar FAST_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_WHT_APRICORN clearevent EVENT_GAVE_KURT_WHT_APRICORN
@ -243,7 +243,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar HEAVY_BALL, VAR_KURT_APRICORNS verbosegiveitemvar HEAVY_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_BLK_APRICORN clearevent EVENT_GAVE_KURT_BLK_APRICORN
@ -253,7 +253,7 @@ Kurt1:
checkflag ENGINE_KURT_MAKING_BALLS checkflag ENGINE_KURT_MAKING_BALLS
iftrue KurtMakingBallsScript iftrue KurtMakingBallsScript
writetext KurtsHouseKurtJustFinishedYourBallText writetext KurtsHouseKurtJustFinishedYourBallText
buttonsound promptbutton
verbosegiveitemvar LOVE_BALL, VAR_KURT_APRICORNS verbosegiveitemvar LOVE_BALL, VAR_KURT_APRICORNS
iffalse .NoRoomForBall iffalse .NoRoomForBall
clearevent EVENT_GAVE_KURT_PNK_APRICORN clearevent EVENT_GAVE_KURT_PNK_APRICORN

View File

@ -46,7 +46,7 @@ LakeOfRageLanceScript:
iftrue .AskAgainForHelp iftrue .AskAgainForHelp
opentext opentext
writetext LakeOfRageLanceForcedToEvolveText writetext LakeOfRageLanceForcedToEvolveText
buttonsound promptbutton
faceplayer faceplayer
writetext LakeOfRageLanceIntroText writetext LakeOfRageLanceIntroText
yesorno yesorno
@ -138,7 +138,7 @@ MagikarpHouseSignScript:
end end
.MagikarpLengthRecord: .MagikarpLengthRecord:
buttonsound promptbutton
special MagikarpHouseSign special MagikarpHouseSign
closetext closetext
end end
@ -197,11 +197,11 @@ WesleyScript:
checkevent EVENT_MET_WESLEY_OF_WEDNESDAY checkevent EVENT_MET_WESLEY_OF_WEDNESDAY
iftrue .MetWesley iftrue .MetWesley
writetext MeetWesleyText writetext MeetWesleyText
buttonsound promptbutton
setevent EVENT_MET_WESLEY_OF_WEDNESDAY setevent EVENT_MET_WESLEY_OF_WEDNESDAY
.MetWesley: .MetWesley:
writetext WesleyGivesGiftText writetext WesleyGivesGiftText
buttonsound promptbutton
verbosegiveitem BLACKBELT verbosegiveitem BLACKBELT
iffalse WesleyDoneScript iffalse WesleyDoneScript
setevent EVENT_GOT_BLACKBELT_FROM_WESLEY setevent EVENT_GOT_BLACKBELT_FROM_WESLEY

View File

@ -12,7 +12,7 @@ HiddenPowerGuy:
checkevent EVENT_GOT_TM10_HIDDEN_POWER checkevent EVENT_GOT_TM10_HIDDEN_POWER
iftrue .AlreadyGotItem iftrue .AlreadyGotItem
writetext HiddenPowerGuyText1 writetext HiddenPowerGuyText1
buttonsound promptbutton
verbosegiveitem TM_HIDDEN_POWER verbosegiveitem TM_HIDDEN_POWER
iffalse .Done iffalse .Done
setevent EVENT_GOT_TM10_HIDDEN_POWER setevent EVENT_GOT_TM10_HIDDEN_POWER

View File

@ -51,7 +51,7 @@ MagikarpLengthRaterScript:
.GetReward: .GetReward:
writetext MagikarpLengthRaterText_Memento writetext MagikarpLengthRaterText_Memento
buttonsound promptbutton
verbosegiveitem ELIXER verbosegiveitem ELIXER
iffalse .NoRoom iffalse .NoRoom
writetext MagikarpLengthRaterText_Bonus writetext MagikarpLengthRaterText_Bonus

View File

@ -33,7 +33,7 @@ LavRadioTower1FGentlemanScript:
.ReturnedMachinePart: .ReturnedMachinePart:
writetext LavRadioTower1FGentlemanText_ReturnedMachinePart writetext LavRadioTower1FGentlemanText_ReturnedMachinePart
buttonsound promptbutton
getstring STRING_BUFFER_4, .expncardname getstring STRING_BUFFER_4, .expncardname
scall .receiveitem scall .receiveitem
setflag ENGINE_EXPN_CARD setflag ENGINE_EXPN_CARD

View File

@ -41,7 +41,7 @@ MahoganyGymPryceScript:
setevent EVENT_BEAT_BOARDER_BRAD setevent EVENT_BEAT_BOARDER_BRAD
setevent EVENT_BEAT_BOARDER_DOUGLAS setevent EVENT_BEAT_BOARDER_DOUGLAS
writetext PryceText_GlacierBadgeSpeech writetext PryceText_GlacierBadgeSpeech
buttonsound promptbutton
verbosegiveitem TM_ICY_WIND verbosegiveitem TM_ICY_WIND
iffalse MahoganyGym_NoRoomForIcyWind iffalse MahoganyGym_NoRoomForIcyWind
setevent EVENT_GOT_TM16_ICY_WIND setevent EVENT_GOT_TM16_ICY_WIND

View File

@ -19,7 +19,7 @@ ManiaScript:
special GiveShuckle special GiveShuckle
iffalse .partyfull iffalse .partyfull
writetext ManiaText_TakeCareOfShuckle writetext ManiaText_TakeCareOfShuckle
buttonsound promptbutton
waitsfx waitsfx
writetext ManiaText_GotShuckle writetext ManiaText_GotShuckle
playsound SFX_KEY_ITEM playsound SFX_KEY_ITEM

View File

@ -30,7 +30,7 @@ MountMortarB1FKiyoScript:
opentext opentext
.BeatKiyo: .BeatKiyo:
writetext MountMortarB1FTyrogueRewardText writetext MountMortarB1FTyrogueRewardText
buttonsound promptbutton
waitsfx waitsfx
readvar VAR_PARTYCOUNT readvar VAR_PARTYCOUNT
ifequal PARTY_LENGTH, .NoRoom ifequal PARTY_LENGTH, .NoRoom

View File

@ -26,7 +26,7 @@ MrPokemonsHouse_MapScripts:
applymovement PLAYER, MrPokemonsHouse_PlayerWalksToMrPokemon applymovement PLAYER, MrPokemonsHouse_PlayerWalksToMrPokemon
opentext opentext
writetext MrPokemonIntroText2 writetext MrPokemonIntroText2
buttonsound promptbutton
waitsfx waitsfx
giveitem MYSTERY_EGG giveitem MYSTERY_EGG
writetext MrPokemonsHouse_GotEggText writetext MrPokemonsHouse_GotEggText
@ -36,10 +36,10 @@ MrPokemonsHouse_MapScripts:
setevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON setevent EVENT_GOT_MYSTERY_EGG_FROM_MR_POKEMON
blackoutmod CHERRYGROVE_CITY blackoutmod CHERRYGROVE_CITY
writetext MrPokemonIntroText3 writetext MrPokemonIntroText3
buttonsound promptbutton
turnobject MRPOKEMONSHOUSE_GENTLEMAN, RIGHT turnobject MRPOKEMONSHOUSE_GENTLEMAN, RIGHT
writetext MrPokemonIntroText4 writetext MrPokemonIntroText4
buttonsound promptbutton
turnobject MRPOKEMONSHOUSE_GENTLEMAN, DOWN turnobject MRPOKEMONSHOUSE_GENTLEMAN, DOWN
turnobject MRPOKEMONSHOUSE_OAK, LEFT turnobject MRPOKEMONSHOUSE_OAK, LEFT
writetext MrPokemonIntroText5 writetext MrPokemonIntroText5
@ -87,7 +87,7 @@ MrPokemonsHouse_OakScript:
turnobject PLAYER, RIGHT turnobject PLAYER, RIGHT
opentext opentext
writetext MrPokemonsHouse_OakText1 writetext MrPokemonsHouse_OakText1
buttonsound promptbutton
waitsfx waitsfx
writetext MrPokemonsHouse_GetDexText writetext MrPokemonsHouse_GetDexText
playsound SFX_ITEM playsound SFX_ITEM

View File

@ -12,7 +12,7 @@ MrPsychic:
checkevent EVENT_GOT_TM29_PSYCHIC checkevent EVENT_GOT_TM29_PSYCHIC
iftrue .AlreadyGotItem iftrue .AlreadyGotItem
writetext MrPsychicText1 writetext MrPsychicText1
buttonsound promptbutton
verbosegiveitem TM_PSYCHIC_M verbosegiveitem TM_PSYCHIC_M
iffalse .Done iffalse .Done
setevent EVENT_GOT_TM29_PSYCHIC setevent EVENT_GOT_TM29_PSYCHIC

View File

@ -31,7 +31,7 @@ NationalParkTeacher1Script:
checkevent EVENT_GOT_QUICK_CLAW checkevent EVENT_GOT_QUICK_CLAW
iftrue .GotQuickClaw iftrue .GotQuickClaw
writetext NationalParkTeacher1Text writetext NationalParkTeacher1Text
buttonsound promptbutton
verbosegiveitem QUICK_CLAW verbosegiveitem QUICK_CLAW
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_QUICK_CLAW setevent EVENT_GOT_QUICK_CLAW
@ -83,7 +83,7 @@ TrainerSchoolboyJack1:
checkevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER checkevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
iftrue .AskAgain iftrue .AskAgain
writetext SchoolboyJackTradeMonText writetext SchoolboyJackTradeMonText
buttonsound promptbutton
setevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER setevent EVENT_JACK_ASKED_FOR_PHONE_NUMBER
scall .AskNumber1 scall .AskNumber1
sjump .RequestNumber sjump .RequestNumber
@ -213,7 +213,7 @@ TrainerPokefanfBeverly1:
checkevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER checkevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
iftrue .AskAgain iftrue .AskAgain
writetext PokefanBeverlyCuteMonText writetext PokefanBeverlyCuteMonText
buttonsound promptbutton
setevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER setevent EVENT_BEVERLY_ASKED_FOR_PHONE_NUMBER
scall .AskNumber1 scall .AskNumber1
sjump .RequestNumber sjump .RequestNumber

View File

@ -20,7 +20,7 @@ Oak:
checkevent EVENT_TALKED_TO_OAK_IN_KANTO checkevent EVENT_TALKED_TO_OAK_IN_KANTO
iftrue .CheckBadges iftrue .CheckBadges
writetext OakWelcomeKantoText writetext OakWelcomeKantoText
buttonsound promptbutton
setevent EVENT_TALKED_TO_OAK_IN_KANTO setevent EVENT_TALKED_TO_OAK_IN_KANTO
.CheckBadges: .CheckBadges:
readvar VAR_BADGES readvar VAR_BADGES
@ -39,18 +39,18 @@ Oak:
.OpenMtSilver: .OpenMtSilver:
writetext OakOpenMtSilverText writetext OakOpenMtSilverText
buttonsound promptbutton
setevent EVENT_OPENED_MT_SILVER setevent EVENT_OPENED_MT_SILVER
sjump .CheckPokedex sjump .CheckPokedex
.Complain: .Complain:
writetext OakNoKantoBadgesText writetext OakNoKantoBadgesText
buttonsound promptbutton
sjump .CheckPokedex sjump .CheckPokedex
.AhGood: .AhGood:
writetext OakYesKantoBadgesText writetext OakYesKantoBadgesText
buttonsound promptbutton
sjump .CheckPokedex sjump .CheckPokedex
OaksAssistant1Script: OaksAssistant1Script:

View File

@ -14,7 +14,7 @@ OlivineCafeStrengthSailorScript:
checkevent EVENT_GOT_HM04_STRENGTH checkevent EVENT_GOT_HM04_STRENGTH
iftrue .GotStrength iftrue .GotStrength
writetext OlivineCafeStrengthSailorText writetext OlivineCafeStrengthSailorText
buttonsound promptbutton
verbosegiveitem HM_STRENGTH verbosegiveitem HM_STRENGTH
setevent EVENT_GOT_HM04_STRENGTH setevent EVENT_GOT_HM04_STRENGTH
.GotStrength: .GotStrength:

View File

@ -15,7 +15,7 @@ GoodRodGuru:
yesorno yesorno
iffalse .DontWantIt iffalse .DontWantIt
writetext GiveGoodRodText writetext GiveGoodRodText
buttonsound promptbutton
verbosegiveitem GOOD_ROD verbosegiveitem GOOD_ROD
writetext GaveGoodRodText writetext GaveGoodRodText
waitbutton waitbutton

View File

@ -31,7 +31,7 @@ OlivineGymJasmineScript:
checkevent EVENT_GOT_TM23_IRON_TAIL checkevent EVENT_GOT_TM23_IRON_TAIL
iftrue .GotIronTail iftrue .GotIronTail
writetext Jasmine_BadgeSpeech writetext Jasmine_BadgeSpeech
buttonsound promptbutton
verbosegiveitem TM_IRON_TAIL verbosegiveitem TM_IRON_TAIL
iffalse .NoRoomForIronTail iffalse .NoRoomForIronTail
setevent EVENT_GOT_TM23_IRON_TAIL setevent EVENT_GOT_TM23_IRON_TAIL

View File

@ -16,7 +16,7 @@ OlivineLighthouseJasmine:
checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS checkevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
iftrue .ExplainedSickness iftrue .ExplainedSickness
writetext JasmineCianwoodPharmacyText writetext JasmineCianwoodPharmacyText
buttonsound promptbutton
setevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS setevent EVENT_JASMINE_EXPLAINED_AMPHYS_SICKNESS
.ExplainedSickness: .ExplainedSickness:
writetext JasmineGetSomeMedicineText writetext JasmineGetSomeMedicineText
@ -29,7 +29,7 @@ OlivineLighthouseJasmine:
yesorno yesorno
iffalse .no iffalse .no
writetext PlayerHandedSecretpotionText writetext PlayerHandedSecretpotionText
buttonsound promptbutton
takeitem SECRETPOTION takeitem SECRETPOTION
writetext JasmineDontBeOffendedText writetext JasmineDontBeOffendedText
waitbutton waitbutton
@ -41,7 +41,7 @@ OlivineLighthouseJasmine:
playmusic MUSIC_HEAL playmusic MUSIC_HEAL
writetext JasmineAmphyHowAreYouFeelingText writetext JasmineAmphyHowAreYouFeelingText
pause 60 pause 60
buttonsound promptbutton
closetext closetext
special RestartMapMusic special RestartMapMusic
cry AMPHAROS cry AMPHAROS
@ -109,7 +109,7 @@ OlivineLighthouseAmphy:
writetext AmphyPalPalooText writetext AmphyPalPalooText
setval AMPHAROS setval AMPHAROS
special PlaySlowCry special PlaySlowCry
buttonsound promptbutton
writetext AmphyBreathingLaboredText writetext AmphyBreathingLaboredText
waitbutton waitbutton
closetext closetext

View File

@ -93,7 +93,7 @@ OlivinePortWalkUpToShipScript:
yesorno yesorno
iffalse OlivinePortNotRidingMoveAwayScript iffalse OlivinePortNotRidingMoveAwayScript
writetext OlivinePortAskTicketText writetext OlivinePortAskTicketText
buttonsound promptbutton
checkitem S_S_TICKET checkitem S_S_TICKET
iffalse .NoTicket iffalse .NoTicket
writetext OlivinePortFlashTicketText writetext OlivinePortFlashTicketText
@ -158,7 +158,7 @@ OlivinePortSailorAfterHOFScript:
yesorno yesorno
iffalse OlivinePortNotRidingScript iffalse OlivinePortNotRidingScript
writetext OlivinePortAskTicketText writetext OlivinePortAskTicketText
buttonsound promptbutton
checkitem S_S_TICKET checkitem S_S_TICKET
iffalse .NoTicket iffalse .NoTicket
writetext OlivinePortFlashTicketText writetext OlivinePortFlashTicketText

View File

@ -27,7 +27,7 @@ PewterCityGrampsScript:
checkevent EVENT_GOT_SILVER_WING checkevent EVENT_GOT_SILVER_WING
iftrue .GotSilverWing iftrue .GotSilverWing
writetext PewterCityGrampsText writetext PewterCityGrampsText
buttonsound promptbutton
verbosegiveitem SILVER_WING verbosegiveitem SILVER_WING
setevent EVENT_GOT_SILVER_WING setevent EVENT_GOT_SILVER_WING
closetext closetext

View File

@ -35,7 +35,7 @@ MeetMomRightScript:
MeetMomScript: MeetMomScript:
opentext opentext
writetext ElmsLookingForYouText writetext ElmsLookingForYouText
buttonsound promptbutton
getstring STRING_BUFFER_4, PokegearName getstring STRING_BUFFER_4, PokegearName
scall PlayersHouse1FReceiveItemStd scall PlayersHouse1FReceiveItemStd
setflag ENGINE_POKEGEAR setflag ENGINE_POKEGEAR
@ -45,7 +45,7 @@ MeetMomScript:
setevent EVENT_PLAYERS_HOUSE_MOM_1 setevent EVENT_PLAYERS_HOUSE_MOM_1
clearevent EVENT_PLAYERS_HOUSE_MOM_2 clearevent EVENT_PLAYERS_HOUSE_MOM_2
writetext MomGivesPokegearText writetext MomGivesPokegearText
buttonsound promptbutton
special SetDayOfWeek special SetDayOfWeek
.SetDayOfWeek: .SetDayOfWeek:
writetext IsItDSTText writetext IsItDSTText
@ -68,12 +68,12 @@ MeetMomScript:
.KnowPhone: .KnowPhone:
writetext KnowTheInstructionsText writetext KnowTheInstructionsText
buttonsound promptbutton
sjump .FinishPhone sjump .FinishPhone
.ExplainPhone: .ExplainPhone:
writetext DontKnowTheInstructionsText writetext DontKnowTheInstructionsText
buttonsound promptbutton
sjump .FinishPhone sjump .FinishPhone
.FinishPhone: .FinishPhone:
@ -162,17 +162,17 @@ NeighborScript:
.MornScript: .MornScript:
writetext NeighborMornIntroText writetext NeighborMornIntroText
buttonsound promptbutton
sjump .Main sjump .Main
.DayScript: .DayScript:
writetext NeighborDayIntroText writetext NeighborDayIntroText
buttonsound promptbutton
sjump .Main sjump .Main
.NiteScript: .NiteScript:
writetext NeighborNiteIntroText writetext NeighborNiteIntroText
buttonsound promptbutton
sjump .Main sjump .Main
.Main: .Main:

View File

@ -596,7 +596,7 @@ Pokecenter2FOfficerScript:
yesorno yesorno
iffalse .RefusedGift iffalse .RefusedGift
writetext Text_MysteryGiftDeliveryGuy_HereYouGo writetext Text_MysteryGiftDeliveryGuy_HereYouGo
buttonsound promptbutton
waitsfx waitsfx
special GetMysteryGiftItem special GetMysteryGiftItem
iffalse .BagIsFull iffalse .BagIsFull

View File

@ -22,10 +22,10 @@ PokemonFanClubChairmanScript:
yesorno yesorno
iffalse .NotListening iffalse .NotListening
writetext PokemonFanClubChairmanRapidashText writetext PokemonFanClubChairmanRapidashText
buttonsound promptbutton
.HeardSpeechButBagFull: .HeardSpeechButBagFull:
writetext PokemonFanClubChairmanIWantYouToHaveThisText writetext PokemonFanClubChairmanIWantYouToHaveThisText
buttonsound promptbutton
verbosegiveitem RARE_CANDY verbosegiveitem RARE_CANDY
iffalse .BagFull iffalse .BagFull
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
@ -71,9 +71,9 @@ PokemonFanClubClefairyGuyScript:
end end
.MetCopycat: .MetCopycat:
buttonsound promptbutton
writetext PokemonFanClubClefairyGuyTakeThisDollBackToGirlText writetext PokemonFanClubClefairyGuyTakeThisDollBackToGirlText
buttonsound promptbutton
waitsfx waitsfx
giveitem LOST_ITEM giveitem LOST_ITEM
iffalse .NoRoom iffalse .NoRoom

View File

@ -158,7 +158,7 @@ PowerPlantManager:
.FoundMachinePart: .FoundMachinePart:
writetext PowerPlantManagerThatsThePartText writetext PowerPlantManagerThatsThePartText
buttonsound promptbutton
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
@ -170,7 +170,7 @@ PowerPlantManager:
checkevent EVENT_GOT_TM07_ZAP_CANNON checkevent EVENT_GOT_TM07_ZAP_CANNON
iftrue .GotZapCannon iftrue .GotZapCannon
writetext PowerPlantManagerTakeThisTMText writetext PowerPlantManagerTakeThisTMText
buttonsound promptbutton
verbosegiveitem TM_ZAP_CANNON verbosegiveitem TM_ZAP_CANNON
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_TM07_ZAP_CANNON setevent EVENT_GOT_TM07_ZAP_CANNON

View File

@ -31,7 +31,7 @@ RadioTower1FLuckyNumberManScript:
faceplayer faceplayer
opentext opentext
writetext RadioTower1FLuckyNumberManAskToPlayText writetext RadioTower1FLuckyNumberManAskToPlayText
buttonsound promptbutton
special CheckLuckyNumberShowFlag special CheckLuckyNumberShowFlag
iffalse .skip iffalse .skip
special ResetLuckyNumberShowFlag special ResetLuckyNumberShowFlag
@ -40,17 +40,17 @@ RadioTower1FLuckyNumberManScript:
checkflag ENGINE_LUCKY_NUMBER_SHOW checkflag ENGINE_LUCKY_NUMBER_SHOW
iftrue .GameOver iftrue .GameOver
writetext RadioTower1FLuckyNumberManThisWeeksIdIsText writetext RadioTower1FLuckyNumberManThisWeeksIdIsText
buttonsound promptbutton
closetext closetext
applymovement RADIOTOWER1F_LUCKYNUMBERMAN, RadioTower1FLuckyNumberManGoToPCMovement applymovement RADIOTOWER1F_LUCKYNUMBERMAN, RadioTower1FLuckyNumberManGoToPCMovement
opentext opentext
writetext RadioTower1FLuckyNumberManCheckIfMatchText writetext RadioTower1FLuckyNumberManCheckIfMatchText
buttonsound promptbutton
waitsfx waitsfx
writetext RadioTower1FLuckyNumberManDotDotDotText writetext RadioTower1FLuckyNumberManDotDotDotText
playsound SFX_DEX_FANFARE_20_49 playsound SFX_DEX_FANFARE_20_49
waitsfx waitsfx
buttonsound promptbutton
special CheckForLuckyNumberWinners special CheckForLuckyNumberWinners
closetext closetext
applymovement RADIOTOWER1F_LUCKYNUMBERMAN, RadioTower1FLuckyNumberManReturnToPlayerMovement applymovement RADIOTOWER1F_LUCKYNUMBERMAN, RadioTower1FLuckyNumberManReturnToPlayerMovement
@ -70,7 +70,7 @@ RadioTower1FLuckyNumberManScript:
writetext RadioTower1FLuckyNumberManPerfectMatchText writetext RadioTower1FLuckyNumberManPerfectMatchText
playsound SFX_1ST_PLACE playsound SFX_1ST_PLACE
waitsfx waitsfx
buttonsound promptbutton
giveitem MASTER_BALL giveitem MASTER_BALL
iffalse .BagFull iffalse .BagFull
itemnotify itemnotify
@ -81,7 +81,7 @@ RadioTower1FLuckyNumberManScript:
writetext RadioTower1FLuckyNumberManOkayMatchText writetext RadioTower1FLuckyNumberManOkayMatchText
playsound SFX_2ND_PLACE playsound SFX_2ND_PLACE
waitsfx waitsfx
buttonsound promptbutton
giveitem EXP_SHARE giveitem EXP_SHARE
iffalse .BagFull iffalse .BagFull
itemnotify itemnotify
@ -92,7 +92,7 @@ RadioTower1FLuckyNumberManScript:
writetext RadioTower1FLuckyNumberManWeakMatchText writetext RadioTower1FLuckyNumberManWeakMatchText
playsound SFX_3RD_PLACE playsound SFX_3RD_PLACE
waitsfx waitsfx
buttonsound promptbutton
giveitem PP_UP giveitem PP_UP
iffalse .BagFull iffalse .BagFull
itemnotify itemnotify
@ -145,11 +145,11 @@ RadioTower1FRadioCardWomanScript:
playsound SFX_ELEVATOR_END playsound SFX_ELEVATOR_END
waitsfx waitsfx
writetext RadioTower1FRadioCardWomanYouWinText writetext RadioTower1FRadioCardWomanYouWinText
buttonsound promptbutton
getstring STRING_BUFFER_4, .RadioCardText getstring STRING_BUFFER_4, .RadioCardText
scall .ReceiveItem scall .ReceiveItem
writetext RadioTower1FPokegearIsARadioText writetext RadioTower1FPokegearIsARadioText
buttonsound promptbutton
setflag ENGINE_RADIO_CARD setflag ENGINE_RADIO_CARD
.GotCard: .GotCard:
writetext RadioTower1FRadioCardWomanTuneInText writetext RadioTower1FRadioCardWomanTuneInText

View File

@ -161,7 +161,7 @@ Buena:
.Introduction: .Introduction:
writetext RadioTower2FBuenaShowIntroductionText writetext RadioTower2FBuenaShowIntroductionText
buttonsound promptbutton
setevent EVENT_MET_BUENA setevent EVENT_MET_BUENA
verbosegiveitem BLUE_CARD verbosegiveitem BLUE_CARD
.TuneIn: .TuneIn:
@ -285,7 +285,7 @@ Buena:
writetext RadioTower2FRegisteredBuenasNumberText writetext RadioTower2FRegisteredBuenasNumberText
playsound SFX_REGISTER_PHONE_NUMBER playsound SFX_REGISTER_PHONE_NUMBER
waitsfx waitsfx
buttonsound promptbutton
writetext RadioTower2FBuenaCallMeText writetext RadioTower2FBuenaCallMeText
waitbutton waitbutton
closetext closetext
@ -314,14 +314,14 @@ RadioTowerBuenaPrizeReceptionist:
checkitem BLUE_CARD checkitem BLUE_CARD
iffalse .NoCard iffalse .NoCard
writetext RadioTower2FBuenaReceptionistPointsForPrizesText writetext RadioTower2FBuenaReceptionistPointsForPrizesText
buttonsound promptbutton
special BuenaPrize special BuenaPrize
closetext closetext
end end
.NoCard: .NoCard:
writetext RadioTower2FBuenaReceptionistNoCardText writetext RadioTower2FBuenaReceptionistNoCardText
buttonsound promptbutton
closetext closetext
end end

View File

@ -64,7 +64,7 @@ RadioTower3FCooltrainerFScript:
.NoRockets: .NoRockets:
writetext RadioTower3FCooltrainerFYoureMyHeroText writetext RadioTower3FCooltrainerFYoureMyHeroText
buttonsound promptbutton
verbosegiveitem TM_SUNNY_DAY verbosegiveitem TM_SUNNY_DAY
iffalse .NoRoom iffalse .NoRoom
writetext RadioTower3FCooltrainerFItsSunnyDayText writetext RadioTower3FCooltrainerFItsSunnyDayText

View File

@ -29,7 +29,7 @@ RadioTower4FDJMaryScript:
.ClearedRockets: .ClearedRockets:
writetext RadioTower4FDJMaryText_ClearedRockets writetext RadioTower4FDJMaryText_ClearedRockets
buttonsound promptbutton
verbosegiveitem PINK_BOW verbosegiveitem PINK_BOW
iffalse .NoRoom iffalse .NoRoom
writetext RadioTower4FDJMaryText_GivePinkBow writetext RadioTower4FDJMaryText_GivePinkBow

View File

@ -42,7 +42,7 @@ FakeDirectorScript:
reloadmapafterbattle reloadmapafterbattle
opentext opentext
writetext FakeDirectorTextAfter writetext FakeDirectorTextAfter
buttonsound promptbutton
verbosegiveitem BASEMENT_KEY verbosegiveitem BASEMENT_KEY
closetext closetext
setscene SCENE_RADIOTOWER5F_ROCKET_BOSS setscene SCENE_RADIOTOWER5F_ROCKET_BOSS
@ -119,7 +119,7 @@ RadioTower5FRocketBossScene:
turnobject PLAYER, RIGHT turnobject PLAYER, RIGHT
opentext opentext
writetext RadioTower5FDirectorThankYouText writetext RadioTower5FDirectorThankYouText
buttonsound promptbutton
verbosegiveitem CLEAR_BELL verbosegiveitem CLEAR_BELL
writetext RadioTower5FDirectorDescribeClearBellText writetext RadioTower5FDirectorDescribeClearBellText
waitbutton waitbutton

View File

@ -15,7 +15,7 @@ Route12SuperRodHouseFishingGuruScript:
yesorno yesorno
iffalse .Refused iffalse .Refused
writetext GiveSuperRodText writetext GiveSuperRodText
buttonsound promptbutton
verbosegiveitem SUPER_ROD verbosegiveitem SUPER_ROD
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_SUPER_ROD setevent EVENT_GOT_SUPER_ROD

Some files were not shown because too many files have changed in this diff Show More