Script commands don't have underscores
This commit is contained in:
@@ -17,17 +17,17 @@ Until this document is filled out, the [G/S Scripting Compendium](https://hax.ii
|
|||||||
|
|
||||||
## `$05`: <code>ptjump <i>script</i></code>
|
## `$05`: <code>ptjump <i>script</i></code>
|
||||||
|
|
||||||
## `$06`: <code>if_equal <i>byte</i>, <i>script</i></code>
|
## `$06`: <code>ifequal <i>byte</i>, <i>script</i></code>
|
||||||
|
|
||||||
## `$07`: <code>if_not_equal <i>byte</i>, <i>script</i></code>
|
## `$07`: <code>ifnotequal <i>byte</i>, <i>script</i></code>
|
||||||
|
|
||||||
## `$08`: <code>iffalse <i>script</i></code>
|
## `$08`: <code>iffalse <i>script</i></code>
|
||||||
|
|
||||||
## `$09`: <code>iftrue <i>script</i></code>
|
## `$09`: <code>iftrue <i>script</i></code>
|
||||||
|
|
||||||
## `$0A`: <code>if_greater_than <i>byte</i>, <i>script</i></code>
|
## `$0A`: <code>ifgreater <i>byte</i>, <i>script</i></code>
|
||||||
|
|
||||||
## `$0B`: <code>if_less_than <i>byte</i>, <i>script</i></code>
|
## `$0B`: <code>ifless <i>byte</i>, <i>script</i></code>
|
||||||
|
|
||||||
## `$0C`: <code>jumpstd <i>std_script</i></code>
|
## `$0C`: <code>jumpstd <i>std_script</i></code>
|
||||||
|
|
||||||
@@ -213,9 +213,9 @@ Until this document is filled out, the [G/S Scripting Compendium](https://hax.ii
|
|||||||
|
|
||||||
## `$65`: `scripttalkafter`
|
## `$65`: `scripttalkafter`
|
||||||
|
|
||||||
## `$66`: `end_if_just_battled`
|
## `$66`: `endifjustbattled`
|
||||||
|
|
||||||
## `$67`: `check_just_battled`
|
## `$67`: `checkjustbattled`
|
||||||
|
|
||||||
## `$68`: <code>setlasttalked <i>object_id</i></code>
|
## `$68`: <code>setlasttalked <i>object_id</i></code>
|
||||||
|
|
||||||
@@ -303,7 +303,7 @@ Until this document is filled out, the [G/S Scripting Compendium](https://hax.ii
|
|||||||
|
|
||||||
## `$92`: <code>reloadandreturn <i>which_method</i></code>
|
## `$92`: <code>reloadandreturn <i>which_method</i></code>
|
||||||
|
|
||||||
## `$93`: `end_all`
|
## `$93`: `endall`
|
||||||
|
|
||||||
## `$94`: <code>pokemart <i>dialog_id</i>, <i>mart_id</i></code>
|
## `$94`: <code>pokemart <i>dialog_id</i>, <i>mart_id</i></code>
|
||||||
|
|
||||||
@@ -347,4 +347,4 @@ Until this document is filled out, the [G/S Scripting Compendium](https://hax.ii
|
|||||||
|
|
||||||
## `$A8`: <code>wait <i>duration</i></code>
|
## `$A8`: <code>wait <i>duration</i></code>
|
||||||
|
|
||||||
## `$A9`: `check_save`
|
## `$A9`: `checksave`
|
||||||
|
@@ -914,8 +914,8 @@ SelectMenuScript: ; 96b5f
|
|||||||
StartMenuCallback:
|
StartMenuCallback:
|
||||||
SelectMenuCallback: ; 96b66
|
SelectMenuCallback: ; 96b66
|
||||||
copybytetovar hMenuReturn
|
copybytetovar hMenuReturn
|
||||||
if_equal HMENURETURN_SCRIPT, .Script
|
ifequal HMENURETURN_SCRIPT, .Script
|
||||||
if_equal HMENURETURN_ASM, .Asm
|
ifequal HMENURETURN_ASM, .Asm
|
||||||
end
|
end
|
||||||
; 96b72
|
; 96b72
|
||||||
|
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
Script_ForcedMovement:: ; 0x1253d
|
Script_ForcedMovement:: ; 0x1253d
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal DOWN, .down
|
ifequal DOWN, .down
|
||||||
if_equal UP, .up
|
ifequal UP, .up
|
||||||
if_equal LEFT, .left
|
ifequal LEFT, .left
|
||||||
if_equal RIGHT, .right
|
ifequal RIGHT, .right
|
||||||
end
|
end
|
||||||
; 0x12550
|
; 0x12550
|
||||||
|
|
||||||
|
@@ -1044,7 +1044,7 @@ Script_UsedStrength: ; 0xcd2d
|
|||||||
AskStrengthScript:
|
AskStrengthScript:
|
||||||
callasm TryStrengthOW
|
callasm TryStrengthOW
|
||||||
iffalse .AskStrength
|
iffalse .AskStrength
|
||||||
if_equal $1, .DontMeetRequirements
|
ifequal $1, .DontMeetRequirements
|
||||||
jump .AlreadyUsedStrength
|
jump .AlreadyUsedStrength
|
||||||
|
|
||||||
.DontMeetRequirements: ; 0xcd59
|
.DontMeetRequirements: ; 0xcd59
|
||||||
@@ -1413,7 +1413,7 @@ UnknownText_0xcf58: ; 0xcf58
|
|||||||
|
|
||||||
AskRockSmashScript: ; 0xcf5d
|
AskRockSmashScript: ; 0xcf5d
|
||||||
callasm HasRockSmash
|
callasm HasRockSmash
|
||||||
if_equal 1, .no
|
ifequal 1, .no
|
||||||
|
|
||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0xcf77
|
writetext UnknownText_0xcf77
|
||||||
|
@@ -245,12 +245,12 @@ MartSignScript
|
|||||||
|
|
||||||
DayToTextScript:
|
DayToTextScript:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal MONDAY, .Monday
|
ifequal MONDAY, .Monday
|
||||||
if_equal TUESDAY, .Tuesday
|
ifequal TUESDAY, .Tuesday
|
||||||
if_equal WEDNESDAY, .Wednesday
|
ifequal WEDNESDAY, .Wednesday
|
||||||
if_equal THURSDAY, .Thursday
|
ifequal THURSDAY, .Thursday
|
||||||
if_equal FRIDAY, .Friday
|
ifequal FRIDAY, .Friday
|
||||||
if_equal SATURDAY, .Saturday
|
ifequal SATURDAY, .Saturday
|
||||||
stringtotext .SundayText, MEM_BUFFER_0
|
stringtotext .SundayText, MEM_BUFFER_0
|
||||||
end
|
end
|
||||||
.Monday:
|
.Monday:
|
||||||
@@ -322,9 +322,9 @@ BugContestResultsScript:
|
|||||||
waitbutton
|
waitbutton
|
||||||
special BugContestJudging
|
special BugContestJudging
|
||||||
vartomem MEM_BUFFER_0
|
vartomem MEM_BUFFER_0
|
||||||
if_equal 1, BugContestResults_FirstPlace
|
ifequal 1, BugContestResults_FirstPlace
|
||||||
if_equal 2, BugContestResults_SecondPlace
|
ifequal 2, BugContestResults_SecondPlace
|
||||||
if_equal 3, BugContestResults_ThirdPlace
|
ifequal 3, BugContestResults_ThirdPlace
|
||||||
farwritetext ContestResults_ConsolationPrizeText
|
farwritetext ContestResults_ConsolationPrizeText
|
||||||
buttonsound
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
@@ -349,8 +349,8 @@ BugContestResults_FinishUp
|
|||||||
special ContestReturnMons
|
special ContestReturnMons
|
||||||
BugContestResults_DidNotLeaveMons
|
BugContestResults_DidNotLeaveMons
|
||||||
special CheckPartyFullAfterContest
|
special CheckPartyFullAfterContest
|
||||||
if_equal BUGCONTEST_CAUGHT_MON, BugContestResults_CleanUp
|
ifequal BUGCONTEST_CAUGHT_MON, BugContestResults_CleanUp
|
||||||
if_equal BUGCONTEST_NO_CATCH, BugContestResults_CleanUp
|
ifequal BUGCONTEST_NO_CATCH, BugContestResults_CleanUp
|
||||||
; BUGCONTEST_BOXED_MON
|
; BUGCONTEST_BOXED_MON
|
||||||
farwritetext ContestResults_PartyFullText
|
farwritetext ContestResults_PartyFullText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -624,26 +624,26 @@ InitializeEventsScript:
|
|||||||
AskNumber1MScript:
|
AskNumber1MScript:
|
||||||
special RandomPhoneMon
|
special RandomPhoneMon
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackAskNumber1Text
|
farwritetext JackAskNumber1Text
|
||||||
@@ -709,26 +709,26 @@ AskNumber1MScript:
|
|||||||
AskNumber2MScript:
|
AskNumber2MScript:
|
||||||
special RandomPhoneMon
|
special RandomPhoneMon
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackAskNumber2Text
|
farwritetext JackAskNumber2Text
|
||||||
@@ -800,26 +800,26 @@ RegisteredNumberMScript:
|
|||||||
|
|
||||||
NumberAcceptedMScript:
|
NumberAcceptedMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackNumberAcceptedText
|
farwritetext JackNumberAcceptedText
|
||||||
@@ -924,26 +924,26 @@ NumberAcceptedMScript:
|
|||||||
|
|
||||||
NumberDeclinedMScript:
|
NumberDeclinedMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackNumberDeclinedText
|
farwritetext JackNumberDeclinedText
|
||||||
@@ -1048,26 +1048,26 @@ NumberDeclinedMScript:
|
|||||||
|
|
||||||
PhoneFullMScript:
|
PhoneFullMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackPhoneFullText
|
farwritetext JackPhoneFullText
|
||||||
@@ -1172,23 +1172,23 @@ PhoneFullMScript:
|
|||||||
|
|
||||||
RematchMScript:
|
RematchMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackRematchText
|
farwritetext JackRematchText
|
||||||
@@ -1278,13 +1278,13 @@ RematchMScript:
|
|||||||
|
|
||||||
GiftMScript:
|
GiftMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
|
|
||||||
.Jose:
|
.Jose:
|
||||||
farwritetext JoseGiftText
|
farwritetext JoseGiftText
|
||||||
@@ -1317,17 +1317,17 @@ GiftMScript:
|
|||||||
|
|
||||||
PackFullMScript:
|
PackFullMScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Huey:
|
.Huey:
|
||||||
farwritetext HueyPackFullText
|
farwritetext HueyPackFullText
|
||||||
@@ -1388,10 +1388,10 @@ PackFullMScript:
|
|||||||
RematchGiftMScript:
|
RematchGiftMScript:
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Huey:
|
.Huey:
|
||||||
farwritetext HueyRematchGiftText
|
farwritetext HueyRematchGiftText
|
||||||
@@ -1412,14 +1412,14 @@ RematchGiftMScript:
|
|||||||
|
|
||||||
AskNumber1FScript:
|
AskNumber1FScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyAskNumber1Text
|
farwritetext BeverlyAskNumber1Text
|
||||||
@@ -1448,14 +1448,14 @@ AskNumber1FScript:
|
|||||||
|
|
||||||
AskNumber2FScript:
|
AskNumber2FScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyAskNumber2Text
|
farwritetext BeverlyAskNumber2Text
|
||||||
@@ -1491,14 +1491,14 @@ RegisteredNumberFScript:
|
|||||||
|
|
||||||
NumberAcceptedFScript: ; 0xbcbd3
|
NumberAcceptedFScript: ; 0xbcbd3
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyNumberAcceptedText
|
farwritetext BeverlyNumberAcceptedText
|
||||||
@@ -1543,14 +1543,14 @@ NumberAcceptedFScript: ; 0xbcbd3
|
|||||||
|
|
||||||
NumberDeclinedFScript:
|
NumberDeclinedFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyNumberDeclinedText
|
farwritetext BeverlyNumberDeclinedText
|
||||||
@@ -1595,14 +1595,14 @@ NumberDeclinedFScript:
|
|||||||
|
|
||||||
PhoneFullFScript:
|
PhoneFullFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyPhoneFullText
|
farwritetext BeverlyPhoneFullText
|
||||||
@@ -1647,13 +1647,13 @@ PhoneFullFScript:
|
|||||||
|
|
||||||
RematchFScript:
|
RematchFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beth:
|
.Beth:
|
||||||
farwritetext BethRematchText
|
farwritetext BethRematchText
|
||||||
@@ -1693,10 +1693,10 @@ RematchFScript:
|
|||||||
|
|
||||||
GiftFScript:
|
GiftFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyGiftText
|
farwritetext BeverlyGiftText
|
||||||
@@ -1717,11 +1717,11 @@ GiftFScript:
|
|||||||
|
|
||||||
PackFullFScript:
|
PackFullFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyPackFullText
|
farwritetext BeverlyPackFullText
|
||||||
@@ -1751,7 +1751,7 @@ PackFullFScript:
|
|||||||
|
|
||||||
RematchGiftFScript:
|
RematchGiftFScript:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Erin:
|
.Erin:
|
||||||
opentext
|
opentext
|
||||||
@@ -1814,16 +1814,16 @@ CoinVendor_IntroScript: ; 0xbcde0
|
|||||||
loadmenuheader .MenuHeader
|
loadmenuheader .MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .Buy50
|
ifequal 1, .Buy50
|
||||||
if_equal 2, .Buy500
|
ifequal 2, .Buy500
|
||||||
jump .Cancel
|
jump .Cancel
|
||||||
; 0xbcdf7
|
; 0xbcdf7
|
||||||
|
|
||||||
.Buy50: ; 0xbcdf7
|
.Buy50: ; 0xbcdf7
|
||||||
checkcoins MAX_COINS - 50
|
checkcoins MAX_COINS - 50
|
||||||
if_equal HAVE_MORE, .CoinCaseFull
|
ifequal HAVE_MORE, .CoinCaseFull
|
||||||
checkmoney YOUR_MONEY, 1000
|
checkmoney YOUR_MONEY, 1000
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
givecoins 50
|
givecoins 50
|
||||||
takemoney YOUR_MONEY, 1000
|
takemoney YOUR_MONEY, 1000
|
||||||
waitsfx
|
waitsfx
|
||||||
@@ -1835,9 +1835,9 @@ CoinVendor_IntroScript: ; 0xbcde0
|
|||||||
|
|
||||||
.Buy500: ; 0xbce1b
|
.Buy500: ; 0xbce1b
|
||||||
checkcoins MAX_COINS - 500
|
checkcoins MAX_COINS - 500
|
||||||
if_equal HAVE_MORE, .CoinCaseFull
|
ifequal HAVE_MORE, .CoinCaseFull
|
||||||
checkmoney YOUR_MONEY, 10000
|
checkmoney YOUR_MONEY, 10000
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
givecoins 500
|
givecoins 500
|
||||||
takemoney YOUR_MONEY, 10000
|
takemoney YOUR_MONEY, 10000
|
||||||
waitsfx
|
waitsfx
|
||||||
@@ -1888,8 +1888,8 @@ HappinessCheckScript:
|
|||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
if_less_than 50, .Unhappy
|
ifless 50, .Unhappy
|
||||||
if_less_than 150, .KindaHappy
|
ifless 150, .KindaHappy
|
||||||
farwritetext HappinessText3
|
farwritetext HappinessText3
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@@ -20,7 +20,7 @@ Script_Whiteout: ; 0x124ce
|
|||||||
farscall Script_AbortBugContest
|
farscall Script_AbortBugContest
|
||||||
special WarpToSpawnPoint
|
special WarpToSpawnPoint
|
||||||
newloadmap MAPSETUP_WARP
|
newloadmap MAPSETUP_WARP
|
||||||
end_all
|
endall
|
||||||
|
|
||||||
.bug_contest
|
.bug_contest
|
||||||
jumpstd bugcontestresultswarp
|
jumpstd bugcontestresultswarp
|
||||||
|
@@ -2,7 +2,7 @@ BuenaPhoneScript1:
|
|||||||
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
|
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
|
||||||
iftrue BuenaPhoneScript_Rocket
|
iftrue BuenaPhoneScript_Rocket
|
||||||
checkcode VAR_HOUR
|
checkcode VAR_HOUR
|
||||||
if_greater_than 17, BuenaPhoneScript_AfterMidnight1
|
ifgreater 17, BuenaPhoneScript_AfterMidnight1
|
||||||
scall BuenaPhoneScript_CheckTimeOfDay1
|
scall BuenaPhoneScript_CheckTimeOfDay1
|
||||||
jump BuenaPhoneScript_Random1
|
jump BuenaPhoneScript_Random1
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ BuenaPhoneScript_AfterMidnight1:
|
|||||||
|
|
||||||
BuenaPhoneScript_CheckTimeOfDay2:
|
BuenaPhoneScript_CheckTimeOfDay2:
|
||||||
checkcode VAR_HOUR
|
checkcode VAR_HOUR
|
||||||
if_greater_than 17, BuenaPhoneScript_AfterMidnight2
|
ifgreater 17, BuenaPhoneScript_AfterMidnight2
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue .morn
|
iftrue .morn
|
||||||
checkday
|
checkday
|
||||||
@@ -75,20 +75,20 @@ BuenaPhoneScript_Random2:
|
|||||||
random 14
|
random 14
|
||||||
|
|
||||||
.Jumptable:
|
.Jumptable:
|
||||||
if_equal 0, .zero
|
ifequal 0, .zero
|
||||||
if_equal 1, .one
|
ifequal 1, .one
|
||||||
if_equal 2, .two
|
ifequal 2, .two
|
||||||
if_equal 3, .three
|
ifequal 3, .three
|
||||||
if_equal 4, .four
|
ifequal 4, .four
|
||||||
if_equal 5, .five
|
ifequal 5, .five
|
||||||
if_equal 6, .six
|
ifequal 6, .six
|
||||||
if_equal 7, .seven
|
ifequal 7, .seven
|
||||||
if_equal 8, .eight
|
ifequal 8, .eight
|
||||||
if_equal 9, .nine
|
ifequal 9, .nine
|
||||||
if_equal 10, .ten
|
ifequal 10, .ten
|
||||||
if_equal 11, .eleven
|
ifequal 11, .eleven
|
||||||
if_equal 12, .twelve
|
ifequal 12, .twelve
|
||||||
if_equal 13, .thirteen
|
ifequal 13, .thirteen
|
||||||
|
|
||||||
.zero
|
.zero
|
||||||
writetext UnknownText_0xa0efb
|
writetext UnknownText_0xa0efb
|
||||||
@@ -150,9 +150,9 @@ BuenaPhoneScript_Random2:
|
|||||||
|
|
||||||
BuenaPhoneScript_Random1:
|
BuenaPhoneScript_Random1:
|
||||||
random 3
|
random 3
|
||||||
if_equal 0, .zero
|
ifequal 0, .zero
|
||||||
if_equal 1, .one
|
ifequal 1, .one
|
||||||
if_equal 2, .two
|
ifequal 2, .two
|
||||||
|
|
||||||
.zero
|
.zero
|
||||||
writetext UnknownText_0xa1c88
|
writetext UnknownText_0xa1c88
|
||||||
|
@@ -24,26 +24,26 @@ PhoneScript_AnswerPhone_Male:
|
|||||||
checknite
|
checknite
|
||||||
iftrue PhoneScript_AnswerPhone_Male_Nite
|
iftrue PhoneScript_AnswerPhone_Male_Nite
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4dc5
|
farwritetext UnknownText_0x1b4dc5
|
||||||
@@ -147,26 +147,26 @@ PhoneScript_AnswerPhone_Male:
|
|||||||
|
|
||||||
PhoneScript_AnswerPhone_Male_Day:
|
PhoneScript_AnswerPhone_Male_Day:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4ded
|
farwritetext UnknownText_0x1b4ded
|
||||||
@@ -270,26 +270,26 @@ PhoneScript_AnswerPhone_Male_Day:
|
|||||||
|
|
||||||
PhoneScript_AnswerPhone_Male_Nite:
|
PhoneScript_AnswerPhone_Male_Nite:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4e16
|
farwritetext UnknownText_0x1b4e16
|
||||||
@@ -397,14 +397,14 @@ PhoneScript_AnswerPhone_Female:
|
|||||||
checknite
|
checknite
|
||||||
iftrue PhoneScript_AnswerPhone_Female_Nite
|
iftrue PhoneScript_AnswerPhone_Female_Nite
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b4f21
|
farwritetext UnknownText_0x1b4f21
|
||||||
@@ -448,14 +448,14 @@ PhoneScript_AnswerPhone_Female:
|
|||||||
|
|
||||||
PhoneScript_AnswerPhone_Female_Day:
|
PhoneScript_AnswerPhone_Female_Day:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b4f4d
|
farwritetext UnknownText_0x1b4f4d
|
||||||
@@ -499,14 +499,14 @@ PhoneScript_AnswerPhone_Female_Day:
|
|||||||
|
|
||||||
PhoneScript_AnswerPhone_Female_Nite:
|
PhoneScript_AnswerPhone_Female_Nite:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b4f75
|
farwritetext UnknownText_0x1b4f75
|
||||||
@@ -554,26 +554,26 @@ PhoneScript_GreetPhone_Male:
|
|||||||
checknite
|
checknite
|
||||||
iftrue PhoneScript_GreetPhone_Male_Nite
|
iftrue PhoneScript_GreetPhone_Male_Nite
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4e3e
|
farwritetext UnknownText_0x1b4e3e
|
||||||
@@ -677,26 +677,26 @@ PhoneScript_GreetPhone_Male:
|
|||||||
|
|
||||||
PhoneScript_GreetPhone_Male_Day:
|
PhoneScript_GreetPhone_Male_Day:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4e72
|
farwritetext UnknownText_0x1b4e72
|
||||||
@@ -800,26 +800,26 @@ PhoneScript_GreetPhone_Male_Day:
|
|||||||
|
|
||||||
PhoneScript_GreetPhone_Male_Nite:
|
PhoneScript_GreetPhone_Male_Nite:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4e9e
|
farwritetext UnknownText_0x1b4e9e
|
||||||
@@ -927,14 +927,14 @@ PhoneScript_GreetPhone_Female:
|
|||||||
checknite
|
checknite
|
||||||
iftrue PhoneScript_GreetPhone_Female_Nite
|
iftrue PhoneScript_GreetPhone_Female_Nite
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b4fa1
|
farwritetext UnknownText_0x1b4fa1
|
||||||
@@ -978,14 +978,14 @@ PhoneScript_GreetPhone_Female:
|
|||||||
|
|
||||||
PhoneScript_GreetPhone_Female_Day:
|
PhoneScript_GreetPhone_Female_Day:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b4fda
|
farwritetext UnknownText_0x1b4fda
|
||||||
@@ -1029,14 +1029,14 @@ PhoneScript_GreetPhone_Female_Day:
|
|||||||
|
|
||||||
PhoneScript_GreetPhone_Female_Nite:
|
PhoneScript_GreetPhone_Female_Nite:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b5004
|
farwritetext UnknownText_0x1b5004
|
||||||
@@ -1080,23 +1080,23 @@ PhoneScript_GreetPhone_Female_Nite:
|
|||||||
|
|
||||||
PhoneScript_Generic_Male:
|
PhoneScript_Generic_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1b4ecd
|
farwritetext UnknownText_0x1b4ecd
|
||||||
@@ -1190,14 +1190,14 @@ PhoneScript_Generic_Male:
|
|||||||
|
|
||||||
PhoneScript_Generic_Female:
|
PhoneScript_Generic_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1b502b
|
farwritetext UnknownText_0x1b502b
|
||||||
@@ -1242,7 +1242,7 @@ PhoneScript_Generic_Female:
|
|||||||
PhoneScript_MonFlavorText:
|
PhoneScript_MonFlavorText:
|
||||||
special RandomPhoneMon
|
special RandomPhoneMon
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal $0, .TooEnergetic
|
ifequal $0, .TooEnergetic
|
||||||
farwritetext UnknownText_0x1b518b
|
farwritetext UnknownText_0x1b518b
|
||||||
buttonsound
|
buttonsound
|
||||||
farjump PhoneScript_HangupText_Male
|
farjump PhoneScript_HangupText_Male
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
Phone_GenericCall_Male:
|
Phone_GenericCall_Male:
|
||||||
special RandomPhoneMon
|
special RandomPhoneMon
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .Bragging
|
ifequal 0, .Bragging
|
||||||
farscall PhoneScript_Generic_Male
|
farscall PhoneScript_Generic_Male
|
||||||
farjump Phone_FoundAMon_Male
|
farjump Phone_FoundAMon_Male
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ Phone_GenericCall_Male:
|
|||||||
Phone_GenericCall_Female:
|
Phone_GenericCall_Female:
|
||||||
special RandomPhoneMon
|
special RandomPhoneMon
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .Bragging
|
ifequal 0, .Bragging
|
||||||
farscall PhoneScript_Generic_Female
|
farscall PhoneScript_Generic_Female
|
||||||
farjump Phone_FoundAMon_Female
|
farjump Phone_FoundAMon_Female
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@ Phone_BraggingCall_Female:
|
|||||||
Phone_FoundAMon_Male:
|
Phone_FoundAMon_Male:
|
||||||
special RandomPhoneWildMon
|
special RandomPhoneWildMon
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .GotAway
|
ifequal 0, .GotAway
|
||||||
farscall Phone_WhoDefeatedMon_Male
|
farscall Phone_WhoDefeatedMon_Male
|
||||||
farjump PhoneScript_HangupText_Male
|
farjump PhoneScript_HangupText_Male
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ Phone_FoundAMon_Male:
|
|||||||
Phone_FoundAMon_Female:
|
Phone_FoundAMon_Female:
|
||||||
special RandomPhoneWildMon
|
special RandomPhoneWildMon
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .GotAway
|
ifequal 0, .GotAway
|
||||||
farscall Phone_WhoDefeatedMon_Female
|
farscall Phone_WhoDefeatedMon_Female
|
||||||
farjump PhoneScript_HangupText_Female
|
farjump PhoneScript_HangupText_Female
|
||||||
|
|
||||||
@@ -56,23 +56,23 @@ Phone_GotAwayCall_Female:
|
|||||||
|
|
||||||
Phone_WhosBragging_Male:
|
Phone_WhosBragging_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackIntelligenceText
|
farwritetext JackIntelligenceText
|
||||||
@@ -161,14 +161,14 @@ Phone_WhosBragging_Male:
|
|||||||
|
|
||||||
Phone_WhosBragging_Female:
|
Phone_WhosBragging_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x174688
|
farwritetext UnknownText_0x174688
|
||||||
@@ -212,23 +212,23 @@ Phone_WhosBragging_Female:
|
|||||||
|
|
||||||
Phone_WhoDefeatedMon_Male:
|
Phone_WhoDefeatedMon_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext JackDefeatedMonText
|
farwritetext JackDefeatedMonText
|
||||||
@@ -317,14 +317,14 @@ Phone_WhoDefeatedMon_Male:
|
|||||||
|
|
||||||
Phone_WhoDefeatedMon_Female:
|
Phone_WhoDefeatedMon_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1746c3
|
farwritetext UnknownText_0x1746c3
|
||||||
@@ -368,23 +368,23 @@ Phone_WhoDefeatedMon_Female:
|
|||||||
|
|
||||||
Phone_WhoLostAMon_Male:
|
Phone_WhoLostAMon_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x174165
|
farwritetext UnknownText_0x174165
|
||||||
@@ -473,14 +473,14 @@ Phone_WhoLostAMon_Male:
|
|||||||
|
|
||||||
Phone_WhoLostAMon_Female:
|
Phone_WhoLostAMon_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x174734
|
farwritetext UnknownText_0x174734
|
||||||
@@ -532,23 +532,23 @@ PhoneScript_WantsToBattle_Female:
|
|||||||
|
|
||||||
PhoneScript_RematchText_Male:
|
PhoneScript_RematchText_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x1741e1
|
farwritetext UnknownText_0x1741e1
|
||||||
@@ -637,13 +637,13 @@ PhoneScript_RematchText_Male:
|
|||||||
|
|
||||||
PhoneScript_RematchText_Female:
|
PhoneScript_RematchText_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beth:
|
.Beth:
|
||||||
farwritetext UnknownText_0x174e4e
|
farwritetext UnknownText_0x174e4e
|
||||||
@@ -690,26 +690,26 @@ TiffanyItsAwful:
|
|||||||
|
|
||||||
PhoneScript_HangupText_Male:
|
PhoneScript_HangupText_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_SCHOOLBOY_JACK, .Jack
|
ifequal PHONE_SCHOOLBOY_JACK, .Jack
|
||||||
if_equal PHONE_SAILOR_HUEY, .Huey
|
ifequal PHONE_SAILOR_HUEY, .Huey
|
||||||
if_equal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
ifequal PHONE_COOLTRAINERM_GAVEN, .Gaven
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_YOUNGSTER_JOEY, .Joey
|
ifequal PHONE_YOUNGSTER_JOEY, .Joey
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_FISHER_RALPH, .Ralph
|
ifequal PHONE_FISHER_RALPH, .Ralph
|
||||||
if_equal PHONE_HIKER_ANTHONY, .Anthony
|
ifequal PHONE_HIKER_ANTHONY, .Anthony
|
||||||
if_equal PHONE_CAMPER_TODD, .Todd
|
ifequal PHONE_CAMPER_TODD, .Todd
|
||||||
if_equal PHONE_JUGGLER_IRWIN, .Irwin
|
ifequal PHONE_JUGGLER_IRWIN, .Irwin
|
||||||
if_equal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
ifequal PHONE_BUG_CATCHER_ARNIE, .Arnie
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_SCHOOLBOY_CHAD, .Chad
|
ifequal PHONE_SCHOOLBOY_CHAD, .Chad
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_POKEMANIAC_BRENT, .Brent
|
ifequal PHONE_POKEMANIAC_BRENT, .Brent
|
||||||
if_equal PHONE_BIRDKEEPER_VANCE, .Vance
|
ifequal PHONE_BIRDKEEPER_VANCE, .Vance
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
if_equal PHONE_BLACKBELT_KENJI, .Kenji
|
ifequal PHONE_BLACKBELT_KENJI, .Kenji
|
||||||
if_equal PHONE_HIKER_PARRY, .Parry
|
ifequal PHONE_HIKER_PARRY, .Parry
|
||||||
|
|
||||||
.Jack:
|
.Jack:
|
||||||
farwritetext UnknownText_0x174251
|
farwritetext UnknownText_0x174251
|
||||||
@@ -793,14 +793,14 @@ PhoneScript_HangupText_Male:
|
|||||||
|
|
||||||
PhoneScript_HangupText_Female:
|
PhoneScript_HangupText_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_COOLTRAINERF_BETH, .Beth
|
ifequal PHONE_COOLTRAINERF_BETH, .Beth
|
||||||
if_equal PHONE_COOLTRAINERF_REENA, .Reena
|
ifequal PHONE_COOLTRAINERF_REENA, .Reena
|
||||||
if_equal PHONE_PICNICKER_LIZ, .Liz
|
ifequal PHONE_PICNICKER_LIZ, .Liz
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
if_equal PHONE_PICNICKER_ERIN, .Erin
|
ifequal PHONE_PICNICKER_ERIN, .Erin
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext UnknownText_0x1747ac
|
farwritetext UnknownText_0x1747ac
|
||||||
@@ -856,8 +856,8 @@ PhoneScriptRareWildMon:
|
|||||||
|
|
||||||
PhoneScript_BugCatchingContest:
|
PhoneScript_BugCatchingContest:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
|
|
||||||
.Wade:
|
.Wade:
|
||||||
farwritetext WadeBugCatchingContestText
|
farwritetext WadeBugCatchingContestText
|
||||||
@@ -896,12 +896,12 @@ UnknownScript_0xa05de:
|
|||||||
|
|
||||||
PhoneScript_FoundItem_Male:
|
PhoneScript_FoundItem_Male:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_BIRDKEEPER_JOSE, .Jose
|
ifequal PHONE_BIRDKEEPER_JOSE, .Jose
|
||||||
if_equal PHONE_BUG_CATCHER_WADE, .Wade
|
ifequal PHONE_BUG_CATCHER_WADE, .Wade
|
||||||
if_equal PHONE_SCHOOLBOY_ALAN, .Alan
|
ifequal PHONE_SCHOOLBOY_ALAN, .Alan
|
||||||
if_equal PHONE_POKEFANM_DEREK, .Derek
|
ifequal PHONE_POKEFANM_DEREK, .Derek
|
||||||
if_equal PHONE_FISHER_TULLY, .Tully
|
ifequal PHONE_FISHER_TULLY, .Tully
|
||||||
if_equal PHONE_FISHER_WILTON, .Wilton
|
ifequal PHONE_FISHER_WILTON, .Wilton
|
||||||
|
|
||||||
.Jose:
|
.Jose:
|
||||||
farwritetext JoseFoundSomethingText
|
farwritetext JoseFoundSomethingText
|
||||||
@@ -929,10 +929,10 @@ PhoneScript_FoundItem_Male:
|
|||||||
|
|
||||||
PhoneScript_FoundItem_Female:
|
PhoneScript_FoundItem_Female:
|
||||||
checkcode VAR_CALLERID
|
checkcode VAR_CALLERID
|
||||||
if_equal PHONE_POKEFAN_BEVERLY, .Beverly
|
ifequal PHONE_POKEFAN_BEVERLY, .Beverly
|
||||||
if_equal PHONE_PICNICKER_GINA, .Gina
|
ifequal PHONE_PICNICKER_GINA, .Gina
|
||||||
if_equal PHONE_LASS_DANA, .Dana
|
ifequal PHONE_LASS_DANA, .Dana
|
||||||
if_equal PHONE_PICNICKER_TIFFANY, .Tiffany
|
ifequal PHONE_PICNICKER_TIFFANY, .Tiffany
|
||||||
|
|
||||||
.Beverly:
|
.Beverly:
|
||||||
farwritetext BeverlyFoundNuggetText
|
farwritetext BeverlyFoundNuggetText
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
JackTriviaScript:
|
JackTriviaScript:
|
||||||
random 11
|
random 11
|
||||||
if_equal 0, .Thunder
|
ifequal 0, .Thunder
|
||||||
if_equal 1, .Rollout
|
ifequal 1, .Rollout
|
||||||
if_equal 2, .Solarbeam
|
ifequal 2, .Solarbeam
|
||||||
if_equal 3, .Stomp
|
ifequal 3, .Stomp
|
||||||
if_equal 4, .Gust
|
ifequal 4, .Gust
|
||||||
if_equal 5, .Twister
|
ifequal 5, .Twister
|
||||||
if_equal 6, .Earthquake
|
ifequal 6, .Earthquake
|
||||||
if_equal 7, .Magnitude
|
ifequal 7, .Magnitude
|
||||||
if_equal 8, .Sandstorm
|
ifequal 8, .Sandstorm
|
||||||
if_equal 9, .SunnyDay
|
ifequal 9, .SunnyDay
|
||||||
if_equal 10, .RainDance
|
ifequal 10, .RainDance
|
||||||
|
|
||||||
.Thunder:
|
.Thunder:
|
||||||
farwritetext JackThunderTriviaText
|
farwritetext JackThunderTriviaText
|
||||||
@@ -69,16 +69,16 @@ JackTriviaScript:
|
|||||||
|
|
||||||
UnknownScript_0xa06da:
|
UnknownScript_0xa06da:
|
||||||
random 10
|
random 10
|
||||||
if_equal 0, .RuinsOfAlph
|
ifequal 0, .RuinsOfAlph
|
||||||
if_equal 1, .Falkner
|
ifequal 1, .Falkner
|
||||||
if_equal 2, .Earl
|
ifequal 2, .Earl
|
||||||
if_equal 3, .SurfPikachu
|
ifequal 3, .SurfPikachu
|
||||||
if_equal 4, .MooMooMilk
|
ifequal 4, .MooMooMilk
|
||||||
if_equal 5, .Salon
|
ifequal 5, .Salon
|
||||||
if_equal 6, .Whitney
|
ifequal 6, .Whitney
|
||||||
if_equal 7, .BugCatchingContest
|
ifequal 7, .BugCatchingContest
|
||||||
if_equal 8, .BeautifulMon
|
ifequal 8, .BeautifulMon
|
||||||
if_equal 9, .Forgot
|
ifequal 9, .Forgot
|
||||||
|
|
||||||
.RuinsOfAlph:
|
.RuinsOfAlph:
|
||||||
farwritetext UnknownText_0x176223
|
farwritetext UnknownText_0x176223
|
||||||
@@ -132,16 +132,16 @@ UnknownScript_0xa06da:
|
|||||||
|
|
||||||
ChadOakGossipScript:
|
ChadOakGossipScript:
|
||||||
random 10
|
random 10
|
||||||
if_equal 0, .Blue
|
ifequal 0, .Blue
|
||||||
if_equal 1, .Daisy
|
ifequal 1, .Daisy
|
||||||
if_equal 2, .ProfElm
|
ifequal 2, .ProfElm
|
||||||
if_equal 3, .Dream
|
ifequal 3, .Dream
|
||||||
if_equal 4, .Kurt
|
ifequal 4, .Kurt
|
||||||
if_equal 5, .League
|
ifequal 5, .League
|
||||||
if_equal 6, .RadioShow
|
ifequal 6, .RadioShow
|
||||||
if_equal 7, .Battling
|
ifequal 7, .Battling
|
||||||
if_equal 8, .DaisyTea
|
ifequal 8, .DaisyTea
|
||||||
if_equal 9, .Traveled
|
ifequal 9, .Traveled
|
||||||
|
|
||||||
.Blue:
|
.Blue:
|
||||||
farwritetext ChadBlueGossipText
|
farwritetext ChadBlueGossipText
|
||||||
@@ -195,16 +195,16 @@ ChadOakGossipScript:
|
|||||||
|
|
||||||
BrentBillTriviaScript:
|
BrentBillTriviaScript:
|
||||||
random 10
|
random 10
|
||||||
if_equal 0, .Father
|
ifequal 0, .Father
|
||||||
if_equal 1, .Grandpa
|
ifequal 1, .Grandpa
|
||||||
if_equal 2, .Goldenrod
|
ifequal 2, .Goldenrod
|
||||||
if_equal 3, .Route25
|
ifequal 3, .Route25
|
||||||
if_equal 4, .Abra
|
ifequal 4, .Abra
|
||||||
if_equal 5, .Sister
|
ifequal 5, .Sister
|
||||||
if_equal 6, .Milk
|
ifequal 6, .Milk
|
||||||
if_equal 7, .Battling
|
ifequal 7, .Battling
|
||||||
if_equal 8, .FlowerShop
|
ifequal 8, .FlowerShop
|
||||||
if_equal 9, .KimonoGirl
|
ifequal 9, .KimonoGirl
|
||||||
|
|
||||||
.Father:
|
.Father:
|
||||||
farwritetext UnknownText_0x662bc
|
farwritetext UnknownText_0x662bc
|
||||||
@@ -477,9 +477,9 @@ ErinWorkingHardScript:
|
|||||||
|
|
||||||
UnknownScript_0xa09c8:
|
UnknownScript_0xa09c8:
|
||||||
random 3
|
random 3
|
||||||
if_equal 0, UnknownScript_0xa09d6
|
ifequal 0, UnknownScript_0xa09d6
|
||||||
if_equal 1, UnknownScript_0xa09de
|
ifequal 1, UnknownScript_0xa09de
|
||||||
if_equal 2, UnknownScript_0xa09e6
|
ifequal 2, UnknownScript_0xa09e6
|
||||||
|
|
||||||
UnknownScript_0xa09d6:
|
UnknownScript_0xa09d6:
|
||||||
farwritetext UnknownText_0x64846
|
farwritetext UnknownText_0x64846
|
||||||
@@ -498,8 +498,8 @@ UnknownScript_0xa09e6:
|
|||||||
|
|
||||||
KenjiAnswerPhoneScript:
|
KenjiAnswerPhoneScript:
|
||||||
checkcode VAR_KENJI_BREAK
|
checkcode VAR_KENJI_BREAK
|
||||||
if_equal 2, .Training
|
ifequal 2, .Training
|
||||||
if_equal 1, .OnBreak
|
ifequal 1, .OnBreak
|
||||||
farwritetext UnknownText_0x66e17
|
farwritetext UnknownText_0x66e17
|
||||||
buttonsound
|
buttonsound
|
||||||
jump PhoneScript_HangupText_Male
|
jump PhoneScript_HangupText_Male
|
||||||
|
@@ -22,8 +22,8 @@ MomPhoneScript: ; 0xbceaa
|
|||||||
buttonsound
|
buttonsound
|
||||||
mapnametotext MEM_BUFFER_0
|
mapnametotext MEM_BUFFER_0
|
||||||
checkcode VAR_ROOFPALETTE
|
checkcode VAR_ROOFPALETTE
|
||||||
if_equal 1, MomPhonePalette1
|
ifequal 1, MomPhonePalette1
|
||||||
if_equal 2, MomPhonePalette2
|
ifequal 2, MomPhonePalette2
|
||||||
jump MomPhoneOther
|
jump MomPhoneOther
|
||||||
|
|
||||||
MomPhoneLandmark: ; 0xbcedf
|
MomPhoneLandmark: ; 0xbcedf
|
||||||
@@ -33,11 +33,11 @@ MomPhoneLandmark: ; 0xbcedf
|
|||||||
|
|
||||||
MomPhonePalette1: ; 0xbcee7
|
MomPhonePalette1: ; 0xbcee7
|
||||||
checkcode VAR_MAPGROUP
|
checkcode VAR_MAPGROUP
|
||||||
if_equal GROUP_NEW_BARK_TOWN, .newbark
|
ifequal GROUP_NEW_BARK_TOWN, .newbark
|
||||||
if_equal GROUP_CHERRYGROVE_CITY, .cherrygrove
|
ifequal GROUP_CHERRYGROVE_CITY, .cherrygrove
|
||||||
if_equal GROUP_VIOLET_CITY, .violet
|
ifequal GROUP_VIOLET_CITY, .violet
|
||||||
if_equal GROUP_AZALEA_TOWN, .azalea
|
ifequal GROUP_AZALEA_TOWN, .azalea
|
||||||
if_equal GROUP_GOLDENROD_CITY, .goldenrod
|
ifequal GROUP_GOLDENROD_CITY, .goldenrod
|
||||||
farwritetext MomPhoneGenericAreaText
|
farwritetext MomPhoneGenericAreaText
|
||||||
buttonsound
|
buttonsound
|
||||||
jump MomSavingMoney
|
jump MomSavingMoney
|
||||||
@@ -76,12 +76,12 @@ MomSavingMoney: ; 0xbcf37
|
|||||||
checkflag ENGINE_MOM_SAVING_MONEY
|
checkflag ENGINE_MOM_SAVING_MONEY
|
||||||
iffalse MomIsNotSaving
|
iffalse MomIsNotSaving
|
||||||
checkmoney MOMS_MONEY, 0
|
checkmoney MOMS_MONEY, 0
|
||||||
if_equal HAVE_MORE, MomSavingHasMoney
|
ifequal HAVE_MORE, MomSavingHasMoney
|
||||||
jump MomSavingButBroke
|
jump MomSavingButBroke
|
||||||
|
|
||||||
MomIsNotSaving: ; 0xbcf49
|
MomIsNotSaving: ; 0xbcf49
|
||||||
checkmoney MOMS_MONEY, 0
|
checkmoney MOMS_MONEY, 0
|
||||||
if_equal HAVE_MORE, MomHasMoney
|
ifequal HAVE_MORE, MomHasMoney
|
||||||
jump MomHasNoMoney
|
jump MomHasNoMoney
|
||||||
|
|
||||||
MomSavingHasMoney: ; 0xbcf55
|
MomSavingHasMoney: ; 0xbcf55
|
||||||
@@ -173,8 +173,8 @@ BillPhoneScript1: ; 0xbcfc5
|
|||||||
buttonsound
|
buttonsound
|
||||||
checkcode VAR_BOXSPACE
|
checkcode VAR_BOXSPACE
|
||||||
vartomem MEM_BUFFER_0
|
vartomem MEM_BUFFER_0
|
||||||
if_equal 0, .full
|
ifequal 0, .full
|
||||||
if_less_than PARTY_LENGTH, .nearlyfull
|
ifless PARTY_LENGTH, .nearlyfull
|
||||||
farwritetext BillPhoneNotFullText
|
farwritetext BillPhoneNotFullText
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -195,7 +195,7 @@ BillPhoneScript2: ; 0xbd007
|
|||||||
|
|
||||||
ElmPhoneScript1: ; 0xbd00d
|
ElmPhoneScript1: ; 0xbd00d
|
||||||
checkcode VAR_SPECIALPHONECALL
|
checkcode VAR_SPECIALPHONECALL
|
||||||
if_equal SPECIALCALL_POKERUS, .pokerus
|
ifequal SPECIALCALL_POKERUS, .pokerus
|
||||||
checkevent EVENT_SHOWED_TOGEPI_TO_ELM
|
checkevent EVENT_SHOWED_TOGEPI_TO_ELM
|
||||||
iftrue .discovery
|
iftrue .discovery
|
||||||
checkevent EVENT_GOT_TOGEPI_EGG_FROM_ELMS_AIDE
|
checkevent EVENT_GOT_TOGEPI_EGG_FROM_ELMS_AIDE
|
||||||
@@ -243,7 +243,7 @@ ElmPhoneScript1: ; 0xbd00d
|
|||||||
|
|
||||||
.discovery ; 0xbd069
|
.discovery ; 0xbd069
|
||||||
random 2
|
random 2
|
||||||
if_equal 0, .nextdiscovery
|
ifequal 0, .nextdiscovery
|
||||||
farwritetext ElmPhoneDiscovery1Text
|
farwritetext ElmPhoneDiscovery1Text
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -258,11 +258,11 @@ ElmPhoneScript1: ; 0xbd00d
|
|||||||
|
|
||||||
ElmPhoneScript2: ; 0xbd081
|
ElmPhoneScript2: ; 0xbd081
|
||||||
checkcode VAR_SPECIALPHONECALL
|
checkcode VAR_SPECIALPHONECALL
|
||||||
if_equal SPECIALCALL_ROBBED, .disaster
|
ifequal SPECIALCALL_ROBBED, .disaster
|
||||||
if_equal SPECIALCALL_ASSISTANT, .assistant
|
ifequal SPECIALCALL_ASSISTANT, .assistant
|
||||||
if_equal SPECIALCALL_WEIRDBROADCAST, .rocket
|
ifequal SPECIALCALL_WEIRDBROADCAST, .rocket
|
||||||
if_equal SPECIALCALL_SSTICKET, .gift
|
ifequal SPECIALCALL_SSTICKET, .gift
|
||||||
if_equal SPECIALCALL_MASTERBALL, .gift
|
ifequal SPECIALCALL_MASTERBALL, .gift
|
||||||
farwritetext ElmPhonePokerusText
|
farwritetext ElmPhonePokerusText
|
||||||
specialphonecall SPECIALCALL_NONE
|
specialphonecall SPECIALCALL_NONE
|
||||||
end
|
end
|
||||||
@@ -306,7 +306,7 @@ JackPhoneScript1:
|
|||||||
checkflag ENGINE_JACK_MONDAY_MORNING
|
checkflag ENGINE_JACK_MONDAY_MORNING
|
||||||
iftrue .NotMonday
|
iftrue .NotMonday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal MONDAY, .NotMonday
|
ifnotequal MONDAY, .NotMonday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue JackMondayMorning
|
iftrue JackMondayMorning
|
||||||
|
|
||||||
@@ -321,17 +321,17 @@ JackPhoneScript2:
|
|||||||
trainertotext SCHOOLBOY, JACK1, MEM_BUFFER_0
|
trainertotext SCHOOLBOY, JACK1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_GreetPhone_Male
|
farscall PhoneScript_GreetPhone_Male
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, JackBattleTrivia
|
ifequal 0, JackBattleTrivia
|
||||||
checkflag ENGINE_JACK
|
checkflag ENGINE_JACK
|
||||||
iftrue .WaitingForBattle
|
iftrue .WaitingForBattle
|
||||||
checkflag ENGINE_JACK_MONDAY_MORNING
|
checkflag ENGINE_JACK_MONDAY_MORNING
|
||||||
iftrue .WaitingForBattle
|
iftrue .WaitingForBattle
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, JackWantsToBattle
|
ifequal 0, JackWantsToBattle
|
||||||
|
|
||||||
.WaitingForBattle:
|
.WaitingForBattle:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, JackFindsRare
|
ifequal 0, JackFindsRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
JackMondayMorning:
|
JackMondayMorning:
|
||||||
@@ -367,7 +367,7 @@ BeverlyPhoneScript2:
|
|||||||
checkflag ENGINE_BEVERLY_HAS_NUGGET
|
checkflag ENGINE_BEVERLY_HAS_NUGGET
|
||||||
iftrue .HasNugget
|
iftrue .HasNugget
|
||||||
farscall PhoneScript_Random4
|
farscall PhoneScript_Random4
|
||||||
if_equal 0, .FoundNugget
|
ifequal 0, .FoundNugget
|
||||||
|
|
||||||
.HasNugget:
|
.HasNugget:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -387,7 +387,7 @@ HueyPhoneScript1:
|
|||||||
checkflag ENGINE_HUEY_WEDNESDAY_NIGHT
|
checkflag ENGINE_HUEY_WEDNESDAY_NIGHT
|
||||||
iftrue .NotWednesday
|
iftrue .NotWednesday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal WEDNESDAY, .NotWednesday
|
ifnotequal WEDNESDAY, .NotWednesday
|
||||||
checknite
|
checknite
|
||||||
iftrue HueyWednesdayNight
|
iftrue HueyWednesdayNight
|
||||||
|
|
||||||
@@ -407,8 +407,8 @@ HueyPhoneScript2:
|
|||||||
checkflag ENGINE_HUEY_WEDNESDAY_NIGHT
|
checkflag ENGINE_HUEY_WEDNESDAY_NIGHT
|
||||||
iftrue .Flavor
|
iftrue .Flavor
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, HueyWantsBattle
|
ifequal 0, HueyWantsBattle
|
||||||
if_equal 1, HueyWantsBattle
|
ifequal 1, HueyWantsBattle
|
||||||
|
|
||||||
.Flavor:
|
.Flavor:
|
||||||
farjump PhoneScript_MonFlavorText
|
farjump PhoneScript_MonFlavorText
|
||||||
@@ -431,7 +431,7 @@ GavenPhoneScript1:
|
|||||||
checkflag ENGINE_GAVEN_THURSDAY_MORNING
|
checkflag ENGINE_GAVEN_THURSDAY_MORNING
|
||||||
iftrue .NotThursday
|
iftrue .NotThursday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal THURSDAY, .NotThursday
|
ifnotequal THURSDAY, .NotThursday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue GavenThursdayMorning
|
iftrue GavenThursdayMorning
|
||||||
|
|
||||||
@@ -450,11 +450,11 @@ GavenPhoneScript2:
|
|||||||
checkflag ENGINE_GAVEN_THURSDAY_MORNING
|
checkflag ENGINE_GAVEN_THURSDAY_MORNING
|
||||||
iftrue .WaitingForBattle
|
iftrue .WaitingForBattle
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, GavenWantsRematch
|
ifequal 0, GavenWantsRematch
|
||||||
|
|
||||||
.WaitingForBattle:
|
.WaitingForBattle:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, GavenFoundRare
|
ifequal 0, GavenFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
GavenThursdayMorning:
|
GavenThursdayMorning:
|
||||||
@@ -478,7 +478,7 @@ BethPhoneScript1:
|
|||||||
checkflag ENGINE_BETH_FRIDAY_AFTERNOON
|
checkflag ENGINE_BETH_FRIDAY_AFTERNOON
|
||||||
iftrue .NotFriday
|
iftrue .NotFriday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal FRIDAY, .NotFriday
|
ifnotequal FRIDAY, .NotFriday
|
||||||
checkday
|
checkday
|
||||||
iftrue BethFridayAfternoon
|
iftrue BethFridayAfternoon
|
||||||
|
|
||||||
@@ -497,7 +497,7 @@ BethPhoneScript2:
|
|||||||
checkflag ENGINE_BETH_FRIDAY_AFTERNOON
|
checkflag ENGINE_BETH_FRIDAY_AFTERNOON
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, BethWantsBattle
|
ifequal 0, BethWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -522,7 +522,7 @@ JosePhoneScript1:
|
|||||||
checkflag ENGINE_JOSE_HAS_STAR_PIECE
|
checkflag ENGINE_JOSE_HAS_STAR_PIECE
|
||||||
iftrue .HasItem
|
iftrue .HasItem
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SATURDAY, .NotSaturday
|
ifnotequal SATURDAY, .NotSaturday
|
||||||
checknite
|
checknite
|
||||||
iftrue JoseSaturdayNight
|
iftrue JoseSaturdayNight
|
||||||
|
|
||||||
@@ -547,13 +547,13 @@ JosePhoneScript2:
|
|||||||
checkflag ENGINE_JOSE_HAS_STAR_PIECE
|
checkflag ENGINE_JOSE_HAS_STAR_PIECE
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, JoseWantsBattle
|
ifequal 0, JoseWantsBattle
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, JoseHasStarPiece
|
ifequal 0, JoseHasStarPiece
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, JoseFoundRare
|
ifequal 0, JoseFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
JoseSaturdayNight:
|
JoseSaturdayNight:
|
||||||
@@ -582,7 +582,7 @@ ReenaPhoneScript1:
|
|||||||
checkflag ENGINE_REENA_SUNDAY_MORNING
|
checkflag ENGINE_REENA_SUNDAY_MORNING
|
||||||
iftrue .NotSunday
|
iftrue .NotSunday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SUNDAY, .NotSunday
|
ifnotequal SUNDAY, .NotSunday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue ReenaSundayMorning
|
iftrue ReenaSundayMorning
|
||||||
|
|
||||||
@@ -601,7 +601,7 @@ ReenaPhoneScript2:
|
|||||||
checkflag ENGINE_REENA_SUNDAY_MORNING
|
checkflag ENGINE_REENA_SUNDAY_MORNING
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ReenaWantsBattle
|
ifequal 0, ReenaWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -624,7 +624,7 @@ JoeyPhoneScript1:
|
|||||||
checkflag ENGINE_JOEY_MONDAY_AFTERNOON
|
checkflag ENGINE_JOEY_MONDAY_AFTERNOON
|
||||||
iftrue .NotMonday
|
iftrue .NotMonday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal MONDAY, .NotMonday
|
ifnotequal MONDAY, .NotMonday
|
||||||
checkday
|
checkday
|
||||||
iftrue JoeyMondayAfternoon
|
iftrue JoeyMondayAfternoon
|
||||||
|
|
||||||
@@ -644,8 +644,8 @@ JoeyPhoneScript2:
|
|||||||
checkflag ENGINE_JOEY_MONDAY_AFTERNOON
|
checkflag ENGINE_JOEY_MONDAY_AFTERNOON
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, JoeyWantsBattle
|
ifequal 0, JoeyWantsBattle
|
||||||
if_equal 1, JoeyWantsBattle
|
ifequal 1, JoeyWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -670,19 +670,19 @@ WadePhoneScript1:
|
|||||||
checkflag ENGINE_WADE_HAS_ITEM
|
checkflag ENGINE_WADE_HAS_ITEM
|
||||||
iftrue WadeHasItem
|
iftrue WadeHasItem
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal TUESDAY, .NotTuesday
|
ifnotequal TUESDAY, .NotTuesday
|
||||||
checknite
|
checknite
|
||||||
iftrue WadeTuesdayNight
|
iftrue WadeTuesdayNight
|
||||||
|
|
||||||
.NotTuesday:
|
.NotTuesday:
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .NoContest
|
ifequal 0, .NoContest
|
||||||
checkflag ENGINE_DAILY_BUG_CONTEST
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
||||||
iftrue .NoContest
|
iftrue .NoContest
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, WadeContestToday
|
ifequal TUESDAY, WadeContestToday
|
||||||
if_equal THURSDAY, WadeContestToday
|
ifequal THURSDAY, WadeContestToday
|
||||||
if_equal SATURDAY, WadeContestToday
|
ifequal SATURDAY, WadeContestToday
|
||||||
|
|
||||||
.NoContest:
|
.NoContest:
|
||||||
farjump UnknownScript_0xa0938
|
farjump UnknownScript_0xa0938
|
||||||
@@ -702,13 +702,13 @@ WadePhoneScript2:
|
|||||||
trainertotext BUG_CATCHER, WADE1, MEM_BUFFER_0
|
trainertotext BUG_CATCHER, WADE1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_GreetPhone_Male
|
farscall PhoneScript_GreetPhone_Male
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .NoContest
|
ifequal 0, .NoContest
|
||||||
checkflag ENGINE_DAILY_BUG_CONTEST
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
||||||
iftrue .NoContest
|
iftrue .NoContest
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, Wade_ContestToday
|
ifequal TUESDAY, Wade_ContestToday
|
||||||
if_equal THURSDAY, Wade_ContestToday
|
ifequal THURSDAY, Wade_ContestToday
|
||||||
if_equal SATURDAY, Wade_ContestToday
|
ifequal SATURDAY, Wade_ContestToday
|
||||||
|
|
||||||
.NoContest:
|
.NoContest:
|
||||||
checkflag ENGINE_WADE
|
checkflag ENGINE_WADE
|
||||||
@@ -718,15 +718,15 @@ WadePhoneScript2:
|
|||||||
checkflag ENGINE_WADE_HAS_ITEM
|
checkflag ENGINE_WADE_HAS_ITEM
|
||||||
iftrue .next
|
iftrue .next
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, WadeHasItem2
|
ifequal 0, WadeHasItem2
|
||||||
checkflag ENGINE_FLYPOINT_GOLDENROD
|
checkflag ENGINE_FLYPOINT_GOLDENROD
|
||||||
iffalse .next
|
iffalse .next
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, WadeWantsBattle2
|
ifequal 0, WadeWantsBattle2
|
||||||
|
|
||||||
.next:
|
.next:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, WadeFoundRare
|
ifequal 0, WadeFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
Wade_ContestToday:
|
Wade_ContestToday:
|
||||||
@@ -751,10 +751,10 @@ WadeHasItem2:
|
|||||||
clearevent EVENT_WADE_HAS_PRZCUREBERRY
|
clearevent EVENT_WADE_HAS_PRZCUREBERRY
|
||||||
clearevent EVENT_WADE_HAS_BITTER_BERRY
|
clearevent EVENT_WADE_HAS_BITTER_BERRY
|
||||||
random 4
|
random 4
|
||||||
if_equal 0, .Berry
|
ifequal 0, .Berry
|
||||||
if_equal 1, .PsnCureBerry
|
ifequal 1, .PsnCureBerry
|
||||||
if_equal 2, .PrzCureBerry
|
ifequal 2, .PrzCureBerry
|
||||||
if_equal 3, .Bitterberry
|
ifequal 3, .Bitterberry
|
||||||
|
|
||||||
.Berry:
|
.Berry:
|
||||||
setevent EVENT_WADE_HAS_BERRY
|
setevent EVENT_WADE_HAS_BERRY
|
||||||
@@ -784,7 +784,7 @@ RalphPhoneScript1:
|
|||||||
checkflag ENGINE_RALPH_WEDNESDAY_MORNING
|
checkflag ENGINE_RALPH_WEDNESDAY_MORNING
|
||||||
iftrue Ralph_CheckSwarm
|
iftrue Ralph_CheckSwarm
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal WEDNESDAY, Ralph_CheckSwarm
|
ifnotequal WEDNESDAY, Ralph_CheckSwarm
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue Ralph_WednesdayMorning
|
iftrue Ralph_WednesdayMorning
|
||||||
Ralph_CheckSwarm:
|
Ralph_CheckSwarm:
|
||||||
@@ -810,10 +810,10 @@ RalphPhoneScript2:
|
|||||||
checkflag ENGINE_RALPH_WEDNESDAY_MORNING
|
checkflag ENGINE_RALPH_WEDNESDAY_MORNING
|
||||||
iftrue Ralph_CheckSwarm2
|
iftrue Ralph_CheckSwarm2
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, Ralph_FightMe
|
ifequal 0, Ralph_FightMe
|
||||||
Ralph_CheckSwarm2:
|
Ralph_CheckSwarm2:
|
||||||
farscall PhoneScript_Random5
|
farscall PhoneScript_Random5
|
||||||
if_equal 0, Ralph_SetUpSwarm
|
ifequal 0, Ralph_SetUpSwarm
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
Ralph_WednesdayMorning:
|
Ralph_WednesdayMorning:
|
||||||
@@ -846,7 +846,7 @@ LizPhoneScript1:
|
|||||||
checkflag ENGINE_LIZ_THURSDAY_AFTERNOON
|
checkflag ENGINE_LIZ_THURSDAY_AFTERNOON
|
||||||
iftrue .NotThursday
|
iftrue .NotThursday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal THURSDAY, .NotThursday
|
ifnotequal THURSDAY, .NotThursday
|
||||||
checkday
|
checkday
|
||||||
iftrue LizThursdayAfternoon
|
iftrue LizThursdayAfternoon
|
||||||
|
|
||||||
@@ -861,7 +861,7 @@ LizPhoneScript1:
|
|||||||
LizPhoneScript2:
|
LizPhoneScript2:
|
||||||
trainertotext PICNICKER, LIZ1, MEM_BUFFER_0
|
trainertotext PICNICKER, LIZ1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_Random4
|
farscall PhoneScript_Random4
|
||||||
if_equal 0, LizWrongNumber
|
ifequal 0, LizWrongNumber
|
||||||
farscall PhoneScript_GreetPhone_Female
|
farscall PhoneScript_GreetPhone_Female
|
||||||
checkflag ENGINE_LIZ
|
checkflag ENGINE_LIZ
|
||||||
iftrue .next
|
iftrue .next
|
||||||
@@ -870,11 +870,11 @@ LizPhoneScript2:
|
|||||||
|
|
||||||
.next:
|
.next:
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, LizGossip
|
ifequal 0, LizGossip
|
||||||
checkflag ENGINE_FLYPOINT_GOLDENROD
|
checkflag ENGINE_FLYPOINT_GOLDENROD
|
||||||
iffalse .Generic
|
iffalse .Generic
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, LizWantsBattle
|
ifequal 0, LizWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -892,15 +892,15 @@ LizWrongNumber:
|
|||||||
|
|
||||||
LizGossip:
|
LizGossip:
|
||||||
random 9
|
random 9
|
||||||
if_equal 0, .CoolTrainerM
|
ifequal 0, .CoolTrainerM
|
||||||
if_equal 1, .Beauty
|
ifequal 1, .Beauty
|
||||||
if_equal 2, .Grunt
|
ifequal 2, .Grunt
|
||||||
if_equal 3, .Teacher
|
ifequal 3, .Teacher
|
||||||
if_equal 4, .SwimmerF
|
ifequal 4, .SwimmerF
|
||||||
if_equal 5, .KimonoGirl
|
ifequal 5, .KimonoGirl
|
||||||
if_equal 6, .Skier
|
ifequal 6, .Skier
|
||||||
if_equal 7, .Medium
|
ifequal 7, .Medium
|
||||||
if_equal 8, .PokefanM
|
ifequal 8, .PokefanM
|
||||||
|
|
||||||
.CoolTrainerM:
|
.CoolTrainerM:
|
||||||
trainerclassname COOLTRAINERM, NICK
|
trainerclassname COOLTRAINERM, NICK
|
||||||
@@ -951,7 +951,7 @@ AnthonyPhoneScript1:
|
|||||||
checkflag ENGINE_ANTHONY_FRIDAY_NIGHT
|
checkflag ENGINE_ANTHONY_FRIDAY_NIGHT
|
||||||
iftrue .NotFriday
|
iftrue .NotFriday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal FRIDAY, .NotFriday
|
ifnotequal FRIDAY, .NotFriday
|
||||||
checknite
|
checknite
|
||||||
iftrue AnthonyFridayNight
|
iftrue AnthonyFridayNight
|
||||||
|
|
||||||
@@ -978,11 +978,11 @@ AnthonyPhoneScript2:
|
|||||||
checkflag ENGINE_ANTHONY_FRIDAY_NIGHT
|
checkflag ENGINE_ANTHONY_FRIDAY_NIGHT
|
||||||
iftrue .TriesSwarm
|
iftrue .TriesSwarm
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, AnthonyWantsBattle
|
ifequal 0, AnthonyWantsBattle
|
||||||
|
|
||||||
.TriesSwarm:
|
.TriesSwarm:
|
||||||
farscall PhoneScript_Random5
|
farscall PhoneScript_Random5
|
||||||
if_equal 0, AnthonyTriesDunsparceSwarm
|
ifequal 0, AnthonyTriesDunsparceSwarm
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
AnthonyFridayNight:
|
AnthonyFridayNight:
|
||||||
@@ -1015,7 +1015,7 @@ ToddPhoneScript1:
|
|||||||
checkflag ENGINE_TODD_SATURDAY_MORNING
|
checkflag ENGINE_TODD_SATURDAY_MORNING
|
||||||
iftrue .NotSaturday
|
iftrue .NotSaturday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SATURDAY, .NotSaturday
|
ifnotequal SATURDAY, .NotSaturday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue ToddSaturdayMorning
|
iftrue ToddSaturdayMorning
|
||||||
|
|
||||||
@@ -1041,15 +1041,15 @@ ToddPhoneScript2:
|
|||||||
checkflag ENGINE_FLYPOINT_GOLDENROD
|
checkflag ENGINE_FLYPOINT_GOLDENROD
|
||||||
iffalse ToddNoGoldenrod
|
iffalse ToddNoGoldenrod
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ToddWantsBattle
|
ifequal 0, ToddWantsBattle
|
||||||
|
|
||||||
.TryForSale:
|
.TryForSale:
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ToddDeptStoreSale
|
ifequal 0, ToddDeptStoreSale
|
||||||
|
|
||||||
ToddNoGoldenrod:
|
ToddNoGoldenrod:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, ToddFoundRare
|
ifequal 0, ToddFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
ToddSaturdayMorning:
|
ToddSaturdayMorning:
|
||||||
@@ -1079,7 +1079,7 @@ GinaPhoneScript1:
|
|||||||
checkflag ENGINE_GINA_HAS_LEAF_STONE
|
checkflag ENGINE_GINA_HAS_LEAF_STONE
|
||||||
iftrue .HasLeafStone
|
iftrue .HasLeafStone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SUNDAY, .NotSunday
|
ifnotequal SUNDAY, .NotSunday
|
||||||
checkday
|
checkday
|
||||||
iftrue GinaSundayDay
|
iftrue GinaSundayDay
|
||||||
|
|
||||||
@@ -1113,15 +1113,15 @@ GinaPhoneScript2:
|
|||||||
checkevent EVENT_GINA_GAVE_LEAF_STONE
|
checkevent EVENT_GINA_GAVE_LEAF_STONE
|
||||||
iftrue .GaveLeafStone
|
iftrue .GaveLeafStone
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, GinaHasLeafStone
|
ifequal 0, GinaHasLeafStone
|
||||||
|
|
||||||
.GaveLeafStone:
|
.GaveLeafStone:
|
||||||
farscall PhoneScript_Random11
|
farscall PhoneScript_Random11
|
||||||
if_equal 0, GinaHasLeafStone
|
ifequal 0, GinaHasLeafStone
|
||||||
checkflag ENGINE_FLYPOINT_GOLDENROD
|
checkflag ENGINE_FLYPOINT_GOLDENROD
|
||||||
iffalse .Generic
|
iffalse .Generic
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, GinaWantsBattle
|
ifequal 0, GinaWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -1174,7 +1174,7 @@ ArniePhoneScript1:
|
|||||||
checkflag ENGINE_ARNIE_TUESDAY_MORNING
|
checkflag ENGINE_ARNIE_TUESDAY_MORNING
|
||||||
iftrue .NotTuesday
|
iftrue .NotTuesday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal TUESDAY, .NotTuesday
|
ifnotequal TUESDAY, .NotTuesday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue ArnieTuesdayMorning
|
iftrue ArnieTuesdayMorning
|
||||||
|
|
||||||
@@ -1199,13 +1199,13 @@ ArniePhoneScript2:
|
|||||||
checkflag ENGINE_ARNIE_TUESDAY_MORNING
|
checkflag ENGINE_ARNIE_TUESDAY_MORNING
|
||||||
iftrue .Swarm
|
iftrue .Swarm
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ArnieWantsBattle
|
ifequal 0, ArnieWantsBattle
|
||||||
|
|
||||||
.Swarm:
|
.Swarm:
|
||||||
farscall PhoneScript_Random5
|
farscall PhoneScript_Random5
|
||||||
if_equal 0, ArnieYanmaSwarm
|
ifequal 0, ArnieYanmaSwarm
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, ArnieFoundRare
|
ifequal 0, ArnieFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
ArnieTuesdayMorning:
|
ArnieTuesdayMorning:
|
||||||
@@ -1243,7 +1243,7 @@ AlanPhoneScript1:
|
|||||||
checkflag ENGINE_ALAN_HAS_FIRE_STONE
|
checkflag ENGINE_ALAN_HAS_FIRE_STONE
|
||||||
iftrue .FireStone
|
iftrue .FireStone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal WEDNESDAY, .NotWednesday
|
ifnotequal WEDNESDAY, .NotWednesday
|
||||||
checkday
|
checkday
|
||||||
iftrue AlanWednesdayDay
|
iftrue AlanWednesdayDay
|
||||||
|
|
||||||
@@ -1268,15 +1268,15 @@ AlanPhoneScript2:
|
|||||||
checkflag ENGINE_ALAN_HAS_FIRE_STONE
|
checkflag ENGINE_ALAN_HAS_FIRE_STONE
|
||||||
iftrue AlanGenericCall
|
iftrue AlanGenericCall
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, AlanWantsBattle
|
ifequal 0, AlanWantsBattle
|
||||||
checkevent EVENT_ALAN_GAVE_FIRE_STONE
|
checkevent EVENT_ALAN_GAVE_FIRE_STONE
|
||||||
iftrue .FireStone
|
iftrue .FireStone
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, AlanHasFireStone
|
ifequal 0, AlanHasFireStone
|
||||||
|
|
||||||
.FireStone:
|
.FireStone:
|
||||||
farscall PhoneScript_Random11
|
farscall PhoneScript_Random11
|
||||||
if_equal 0, AlanHasFireStone
|
ifequal 0, AlanHasFireStone
|
||||||
|
|
||||||
AlanGenericCall:
|
AlanGenericCall:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1306,7 +1306,7 @@ DanaPhoneScript1:
|
|||||||
checkflag ENGINE_DANA_HAS_THUNDERSTONE
|
checkflag ENGINE_DANA_HAS_THUNDERSTONE
|
||||||
iftrue .HasThunderstone
|
iftrue .HasThunderstone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal THURSDAY, .NotThursday
|
ifnotequal THURSDAY, .NotThursday
|
||||||
checknite
|
checknite
|
||||||
iftrue DanaThursdayNight
|
iftrue DanaThursdayNight
|
||||||
|
|
||||||
@@ -1331,19 +1331,19 @@ DanaPhoneScript2:
|
|||||||
checkflag ENGINE_DANA_HAS_THUNDERSTONE
|
checkflag ENGINE_DANA_HAS_THUNDERSTONE
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, DanaWantsBattle
|
ifequal 0, DanaWantsBattle
|
||||||
checkevent EVENT_DANA_GAVE_THUNDERSTONE
|
checkevent EVENT_DANA_GAVE_THUNDERSTONE
|
||||||
iftrue .Thunderstone
|
iftrue .Thunderstone
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, DanaHasThunderstone
|
ifequal 0, DanaHasThunderstone
|
||||||
|
|
||||||
.Thunderstone:
|
.Thunderstone:
|
||||||
farscall PhoneScript_Random11
|
farscall PhoneScript_Random11
|
||||||
if_equal 0, DanaHasThunderstone
|
ifequal 0, DanaHasThunderstone
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, DanaFoundRare
|
ifequal 0, DanaFoundRare
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
|
|
||||||
DanaThursdayNight:
|
DanaThursdayNight:
|
||||||
@@ -1372,7 +1372,7 @@ ChadPhoneScript1:
|
|||||||
checkflag ENGINE_CHAD_FRIDAY_MORNING
|
checkflag ENGINE_CHAD_FRIDAY_MORNING
|
||||||
iftrue .NotFriday
|
iftrue .NotFriday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal FRIDAY, .NotFriday
|
ifnotequal FRIDAY, .NotFriday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue ChadFridayMorning
|
iftrue ChadFridayMorning
|
||||||
|
|
||||||
@@ -1387,17 +1387,17 @@ ChadPhoneScript2:
|
|||||||
trainertotext SCHOOLBOY, CHAD1, MEM_BUFFER_0
|
trainertotext SCHOOLBOY, CHAD1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_GreetPhone_Male
|
farscall PhoneScript_GreetPhone_Male
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ChadOakGossip
|
ifequal 0, ChadOakGossip
|
||||||
checkflag ENGINE_CHAD
|
checkflag ENGINE_CHAD
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
checkflag ENGINE_CHAD_FRIDAY_MORNING
|
checkflag ENGINE_CHAD_FRIDAY_MORNING
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ChadWantsBattle
|
ifequal 0, ChadWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, ChadFoundRare
|
ifequal 0, ChadFoundRare
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
ChadFridayMorning:
|
ChadFridayMorning:
|
||||||
@@ -1420,13 +1420,13 @@ DerekPhoneScript1:
|
|||||||
checkflag ENGINE_DEREK_HAS_NUGGET
|
checkflag ENGINE_DEREK_HAS_NUGGET
|
||||||
iftrue .Nugget
|
iftrue .Nugget
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .NoContest
|
ifequal 0, .NoContest
|
||||||
checkflag ENGINE_DAILY_BUG_CONTEST
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
||||||
iftrue .NoContest
|
iftrue .NoContest
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, .ContestToday
|
ifequal TUESDAY, .ContestToday
|
||||||
if_equal THURSDAY, .ContestToday
|
ifequal THURSDAY, .ContestToday
|
||||||
if_equal SATURDAY, .ContestToday
|
ifequal SATURDAY, .ContestToday
|
||||||
|
|
||||||
.NoContest:
|
.NoContest:
|
||||||
farjump UnknownScript_0xa0988
|
farjump UnknownScript_0xa0988
|
||||||
@@ -1442,17 +1442,17 @@ DerekPhoneScript2:
|
|||||||
trainertotext POKEFANM, DEREK1, MEM_BUFFER_0
|
trainertotext POKEFANM, DEREK1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_GreetPhone_Male
|
farscall PhoneScript_GreetPhone_Male
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, .NoContest
|
ifequal 0, .NoContest
|
||||||
checkflag ENGINE_DAILY_BUG_CONTEST
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
||||||
iftrue .NoContest
|
iftrue .NoContest
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, .ContestToday
|
ifequal TUESDAY, .ContestToday
|
||||||
if_equal THURSDAY, .ContestToday
|
ifequal THURSDAY, .ContestToday
|
||||||
if_equal SATURDAY, .ContestToday
|
ifequal SATURDAY, .ContestToday
|
||||||
|
|
||||||
.NoContest:
|
.NoContest:
|
||||||
farscall PhoneScript_Random4
|
farscall PhoneScript_Random4
|
||||||
if_equal 0, .Nugget
|
ifequal 0, .Nugget
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
|
|
||||||
.ContestToday:
|
.ContestToday:
|
||||||
@@ -1473,7 +1473,7 @@ TullyPhoneScript1:
|
|||||||
checkflag ENGINE_TULLY_HAS_WATER_STONE
|
checkflag ENGINE_TULLY_HAS_WATER_STONE
|
||||||
iftrue TullyHasWaterStone
|
iftrue TullyHasWaterStone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SUNDAY, .NotSunday
|
ifnotequal SUNDAY, .NotSunday
|
||||||
checknite
|
checknite
|
||||||
iftrue TullySundayNight
|
iftrue TullySundayNight
|
||||||
|
|
||||||
@@ -1498,15 +1498,15 @@ TullyPhoneScript2:
|
|||||||
checkflag ENGINE_TULLY_HAS_WATER_STONE
|
checkflag ENGINE_TULLY_HAS_WATER_STONE
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, TullyWantsBattle
|
ifequal 0, TullyWantsBattle
|
||||||
checkevent EVENT_TULLY_GAVE_WATER_STONE
|
checkevent EVENT_TULLY_GAVE_WATER_STONE
|
||||||
iftrue .WaterStone
|
iftrue .WaterStone
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, TullyFoundWaterStone
|
ifequal 0, TullyFoundWaterStone
|
||||||
|
|
||||||
.WaterStone:
|
.WaterStone:
|
||||||
farscall PhoneScript_Random11
|
farscall PhoneScript_Random11
|
||||||
if_equal 0, TullyFoundWaterStone
|
ifequal 0, TullyFoundWaterStone
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1532,7 +1532,7 @@ BrentPhoneScript1:
|
|||||||
checkflag ENGINE_BRENT_MONDAY_MORNING
|
checkflag ENGINE_BRENT_MONDAY_MORNING
|
||||||
iftrue .NotMonday
|
iftrue .NotMonday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal MONDAY, .NotMonday
|
ifnotequal MONDAY, .NotMonday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue BrentMondayMorning
|
iftrue BrentMondayMorning
|
||||||
|
|
||||||
@@ -1547,13 +1547,13 @@ BrentPhoneScript2:
|
|||||||
trainertotext POKEMANIAC, BRENT1, MEM_BUFFER_0
|
trainertotext POKEMANIAC, BRENT1, MEM_BUFFER_0
|
||||||
farscall PhoneScript_GreetPhone_Male
|
farscall PhoneScript_GreetPhone_Male
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, BrentBillTrivia
|
ifequal 0, BrentBillTrivia
|
||||||
checkflag ENGINE_BRENT
|
checkflag ENGINE_BRENT
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
checkflag ENGINE_BRENT_MONDAY_MORNING
|
checkflag ENGINE_BRENT_MONDAY_MORNING
|
||||||
iftrue .Generic
|
iftrue .Generic
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, BrentWantsBattle
|
ifequal 0, BrentWantsBattle
|
||||||
|
|
||||||
.Generic:
|
.Generic:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1579,7 +1579,7 @@ TiffanyPhoneScript1:
|
|||||||
checkflag ENGINE_TIFFANY_HAS_PINK_BOW
|
checkflag ENGINE_TIFFANY_HAS_PINK_BOW
|
||||||
iftrue .HasItem
|
iftrue .HasItem
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal TUESDAY, .NotTuesday
|
ifnotequal TUESDAY, .NotTuesday
|
||||||
checkday
|
checkday
|
||||||
iftrue TiffanyTuesdayAfternoon
|
iftrue TiffanyTuesdayAfternoon
|
||||||
|
|
||||||
@@ -1597,7 +1597,7 @@ TiffanyPhoneScript1:
|
|||||||
TiffanyPhoneScript2:
|
TiffanyPhoneScript2:
|
||||||
trainertotext PICNICKER, TIFFANY3, MEM_BUFFER_0
|
trainertotext PICNICKER, TIFFANY3, MEM_BUFFER_0
|
||||||
farscall PhoneScript_Random4
|
farscall PhoneScript_Random4
|
||||||
if_equal 0, TiffanysFamilyMembers
|
ifequal 0, TiffanysFamilyMembers
|
||||||
farscall PhoneScript_GreetPhone_Female
|
farscall PhoneScript_GreetPhone_Female
|
||||||
checkflag ENGINE_TIFFANY
|
checkflag ENGINE_TIFFANY
|
||||||
iftrue TiffanyGenericCall
|
iftrue TiffanyGenericCall
|
||||||
@@ -1606,15 +1606,15 @@ TiffanyPhoneScript2:
|
|||||||
checkflag ENGINE_TIFFANY_HAS_PINK_BOW
|
checkflag ENGINE_TIFFANY_HAS_PINK_BOW
|
||||||
iftrue TiffanyGenericCall
|
iftrue TiffanyGenericCall
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, TiffanyWantsBattle
|
ifequal 0, TiffanyWantsBattle
|
||||||
checkevent EVENT_TIFFANY_GAVE_PINK_BOW
|
checkevent EVENT_TIFFANY_GAVE_PINK_BOW
|
||||||
iftrue .PinkBow
|
iftrue .PinkBow
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, TiffanyHasPinkBow
|
ifequal 0, TiffanyHasPinkBow
|
||||||
|
|
||||||
.PinkBow:
|
.PinkBow:
|
||||||
farscall PhoneScript_Random11
|
farscall PhoneScript_Random11
|
||||||
if_equal 0, TiffanyHasPinkBow
|
ifequal 0, TiffanyHasPinkBow
|
||||||
|
|
||||||
TiffanyGenericCall:
|
TiffanyGenericCall:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
@@ -1629,12 +1629,12 @@ TiffanyWantsBattle:
|
|||||||
|
|
||||||
TiffanysFamilyMembers:
|
TiffanysFamilyMembers:
|
||||||
random 6
|
random 6
|
||||||
if_equal 0, .Grandma
|
ifequal 0, .Grandma
|
||||||
if_equal 1, .Grandpa
|
ifequal 1, .Grandpa
|
||||||
if_equal 2, .Mom
|
ifequal 2, .Mom
|
||||||
if_equal 3, .Dad
|
ifequal 3, .Dad
|
||||||
if_equal 4, .Sister
|
ifequal 4, .Sister
|
||||||
if_equal 5, .Brother
|
ifequal 5, .Brother
|
||||||
|
|
||||||
.Grandma:
|
.Grandma:
|
||||||
stringtotext GrandmaString, MEM_BUFFER_1
|
stringtotext GrandmaString, MEM_BUFFER_1
|
||||||
@@ -1678,7 +1678,7 @@ VancePhoneScript1:
|
|||||||
checkflag ENGINE_VANCE_WEDNESDAY_NIGHT
|
checkflag ENGINE_VANCE_WEDNESDAY_NIGHT
|
||||||
iftrue .NotWednesday
|
iftrue .NotWednesday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal WEDNESDAY, .NotWednesday
|
ifnotequal WEDNESDAY, .NotWednesday
|
||||||
checknite
|
checknite
|
||||||
iftrue VanceWednesdayNight
|
iftrue VanceWednesdayNight
|
||||||
|
|
||||||
@@ -1697,8 +1697,8 @@ VancePhoneScript2:
|
|||||||
checkflag ENGINE_VANCE_WEDNESDAY_NIGHT
|
checkflag ENGINE_VANCE_WEDNESDAY_NIGHT
|
||||||
iftrue .WantsBattle
|
iftrue .WantsBattle
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, VanceWantsRematch
|
ifequal 0, VanceWantsRematch
|
||||||
if_equal 1, VanceWantsRematch
|
ifequal 1, VanceWantsRematch
|
||||||
|
|
||||||
.WantsBattle:
|
.WantsBattle:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1721,7 +1721,7 @@ WiltonPhoneScript1:
|
|||||||
checkflag ENGINE_WILTON_HAS_ITEM
|
checkflag ENGINE_WILTON_HAS_ITEM
|
||||||
iftrue .HasItem
|
iftrue .HasItem
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal THURSDAY, .NotThursday
|
ifnotequal THURSDAY, .NotThursday
|
||||||
checkmorn
|
checkmorn
|
||||||
iftrue WiltonThursdayMorning
|
iftrue WiltonThursdayMorning
|
||||||
|
|
||||||
@@ -1746,9 +1746,9 @@ WiltonPhoneScript2:
|
|||||||
checkflag ENGINE_WILTON_HAS_ITEM
|
checkflag ENGINE_WILTON_HAS_ITEM
|
||||||
iftrue .GenericCall
|
iftrue .GenericCall
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, WiltonWantsBattle
|
ifequal 0, WiltonWantsBattle
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, WiltonHasItem
|
ifequal 0, WiltonHasItem
|
||||||
|
|
||||||
.GenericCall:
|
.GenericCall:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1768,9 +1768,9 @@ WiltonHasItem:
|
|||||||
clearevent EVENT_WILTON_HAS_GREAT_BALL
|
clearevent EVENT_WILTON_HAS_GREAT_BALL
|
||||||
clearevent EVENT_WILTON_HAS_POKE_BALL
|
clearevent EVENT_WILTON_HAS_POKE_BALL
|
||||||
random 5
|
random 5
|
||||||
if_equal 0, .UltraBall
|
ifequal 0, .UltraBall
|
||||||
random 3
|
random 3
|
||||||
if_equal 0, .GreatBall
|
ifequal 0, .GreatBall
|
||||||
jump .PokeBall
|
jump .PokeBall
|
||||||
|
|
||||||
.UltraBall:
|
.UltraBall:
|
||||||
@@ -1809,7 +1809,7 @@ ParryPhoneScript1:
|
|||||||
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
||||||
iftrue .WantsRematch
|
iftrue .WantsRematch
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal FRIDAY, .WantsRematch
|
ifnotequal FRIDAY, .WantsRematch
|
||||||
checkday
|
checkday
|
||||||
iftrue ParryFridayDay
|
iftrue ParryFridayDay
|
||||||
|
|
||||||
@@ -1828,8 +1828,8 @@ ParryPhoneScript2:
|
|||||||
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
checkflag ENGINE_PARRY_FRIDAY_AFTERNOON
|
||||||
iftrue .GenericCall
|
iftrue .GenericCall
|
||||||
farscall PhoneScript_Random2
|
farscall PhoneScript_Random2
|
||||||
if_equal 0, ParryWantsBattle
|
ifequal 0, ParryWantsBattle
|
||||||
if_equal 1, ParryWantsBattle
|
ifequal 1, ParryWantsBattle
|
||||||
|
|
||||||
.GenericCall:
|
.GenericCall:
|
||||||
farjump Phone_GenericCall_Male
|
farjump Phone_GenericCall_Male
|
||||||
@@ -1852,7 +1852,7 @@ ErinPhoneScript1:
|
|||||||
checkflag ENGINE_ERIN_SATURDAY_NIGHT
|
checkflag ENGINE_ERIN_SATURDAY_NIGHT
|
||||||
iftrue .NotSaturday
|
iftrue .NotSaturday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SATURDAY, .NotSaturday
|
ifnotequal SATURDAY, .NotSaturday
|
||||||
checknite
|
checknite
|
||||||
iftrue ErinSaturdayNight
|
iftrue ErinSaturdayNight
|
||||||
|
|
||||||
@@ -1871,8 +1871,8 @@ ErinPhoneScript2:
|
|||||||
checkflag ENGINE_ERIN_SATURDAY_NIGHT
|
checkflag ENGINE_ERIN_SATURDAY_NIGHT
|
||||||
iftrue .GenericCall
|
iftrue .GenericCall
|
||||||
farscall PhoneScript_Random3
|
farscall PhoneScript_Random3
|
||||||
if_equal 0, ErinWantsBattle
|
ifequal 0, ErinWantsBattle
|
||||||
if_equal 1, ErinWantsBattle
|
ifequal 1, ErinWantsBattle
|
||||||
|
|
||||||
.GenericCall:
|
.GenericCall:
|
||||||
farjump Phone_GenericCall_Female
|
farjump Phone_GenericCall_Female
|
||||||
|
@@ -71,12 +71,12 @@ ScriptCommandTable:
|
|||||||
dw Script_jump ; 03
|
dw Script_jump ; 03
|
||||||
dw Script_farjump ; 04
|
dw Script_farjump ; 04
|
||||||
dw Script_ptjump ; 05
|
dw Script_ptjump ; 05
|
||||||
dw Script_if_equal ; 06
|
dw Script_ifequal ; 06
|
||||||
dw Script_if_not_equal ; 07
|
dw Script_ifnotequal ; 07
|
||||||
dw Script_iffalse ; 08
|
dw Script_iffalse ; 08
|
||||||
dw Script_iftrue ; 09
|
dw Script_iftrue ; 09
|
||||||
dw Script_if_greater_than ; 0a
|
dw Script_ifgreater ; 0a
|
||||||
dw Script_if_less_than ; 0b
|
dw Script_ifless ; 0b
|
||||||
dw Script_jumpstd ; 0c
|
dw Script_jumpstd ; 0c
|
||||||
dw Script_callstd ; 0d
|
dw Script_callstd ; 0d
|
||||||
dw Script_callasm ; 0e
|
dw Script_callasm ; 0e
|
||||||
@@ -136,7 +136,7 @@ ScriptCommandTable:
|
|||||||
dw Script_stringtotext ; 44
|
dw Script_stringtotext ; 44
|
||||||
dw Script_itemnotify ; 45
|
dw Script_itemnotify ; 45
|
||||||
dw Script_pocketisfull ; 46
|
dw Script_pocketisfull ; 46
|
||||||
dw Script_textbox ; 47
|
dw Script_opentext ; 47
|
||||||
dw Script_refreshscreen ; 48
|
dw Script_refreshscreen ; 48
|
||||||
dw Script_closetext ; 49
|
dw Script_closetext ; 49
|
||||||
dw Script_loadbytec2cf ; 4a
|
dw Script_loadbytec2cf ; 4a
|
||||||
@@ -169,8 +169,8 @@ endc
|
|||||||
dw Script_trainerflagaction ; 63
|
dw Script_trainerflagaction ; 63
|
||||||
dw Script_winlosstext ; 64
|
dw Script_winlosstext ; 64
|
||||||
dw Script_scripttalkafter ; 65
|
dw Script_scripttalkafter ; 65
|
||||||
dw Script_end_if_just_battled ; 66
|
dw Script_endifjustbattled ; 66
|
||||||
dw Script_check_just_battled ; 67
|
dw Script_checkjustbattled ; 67
|
||||||
dw Script_setlasttalked ; 68
|
dw Script_setlasttalked ; 68
|
||||||
dw Script_applymovement ; 69
|
dw Script_applymovement ; 69
|
||||||
dw Script_applymovement2 ; 6a
|
dw Script_applymovement2 ; 6a
|
||||||
@@ -214,7 +214,7 @@ endc
|
|||||||
dw Script_return ; 90
|
dw Script_return ; 90
|
||||||
dw Script_end ; 91
|
dw Script_end ; 91
|
||||||
dw Script_reloadandreturn ; 92
|
dw Script_reloadandreturn ; 92
|
||||||
dw Script_end_all ; 93
|
dw Script_endall ; 93
|
||||||
dw Script_pokemart ; 94
|
dw Script_pokemart ; 94
|
||||||
dw Script_elevator ; 95
|
dw Script_elevator ; 95
|
||||||
dw Script_trade ; 96
|
dw Script_trade ; 96
|
||||||
@@ -236,7 +236,7 @@ endc
|
|||||||
dw Script_trainerclassname ; a6
|
dw Script_trainerclassname ; a6
|
||||||
dw Script_name ; a7
|
dw Script_name ; a7
|
||||||
dw Script_wait ; a8
|
dw Script_wait ; a8
|
||||||
dw Script_check_save ; a9
|
dw Script_checksave ; a9
|
||||||
|
|
||||||
StartScript:
|
StartScript:
|
||||||
ld hl, ScriptFlags
|
ld hl, ScriptFlags
|
||||||
@@ -839,7 +839,7 @@ Script_winlosstext:
|
|||||||
ld [hli], a
|
ld [hli], a
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Script_end_if_just_battled:
|
Script_endifjustbattled:
|
||||||
; script command 0x66
|
; script command 0x66
|
||||||
|
|
||||||
ld a, [wRunningTrainerBattleScript]
|
ld a, [wRunningTrainerBattleScript]
|
||||||
@@ -847,7 +847,7 @@ Script_end_if_just_battled:
|
|||||||
ret z
|
ret z
|
||||||
jp Script_end
|
jp Script_end
|
||||||
|
|
||||||
Script_check_just_battled:
|
Script_checkjustbattled:
|
||||||
; script command 0x67
|
; script command 0x67
|
||||||
|
|
||||||
ld a, TRUE
|
ld a, TRUE
|
||||||
@@ -1561,7 +1561,7 @@ Script_iftrue:
|
|||||||
jp nz, Script_jump
|
jp nz, Script_jump
|
||||||
jp SkipTwoScriptBytes
|
jp SkipTwoScriptBytes
|
||||||
|
|
||||||
Script_if_equal:
|
Script_ifequal:
|
||||||
; script command 0x6
|
; script command 0x6
|
||||||
; parameters: byte, pointer
|
; parameters: byte, pointer
|
||||||
|
|
||||||
@@ -1571,7 +1571,7 @@ Script_if_equal:
|
|||||||
jr z, Script_jump
|
jr z, Script_jump
|
||||||
jr SkipTwoScriptBytes
|
jr SkipTwoScriptBytes
|
||||||
|
|
||||||
Script_if_not_equal:
|
Script_ifnotequal:
|
||||||
; script command 0x7
|
; script command 0x7
|
||||||
; parameters: byte, pointer
|
; parameters: byte, pointer
|
||||||
|
|
||||||
@@ -1581,7 +1581,7 @@ Script_if_not_equal:
|
|||||||
jr nz, Script_jump
|
jr nz, Script_jump
|
||||||
jr SkipTwoScriptBytes
|
jr SkipTwoScriptBytes
|
||||||
|
|
||||||
Script_if_greater_than:
|
Script_ifgreater:
|
||||||
; script command 0xa
|
; script command 0xa
|
||||||
; parameters: byte, pointer
|
; parameters: byte, pointer
|
||||||
|
|
||||||
@@ -1592,7 +1592,7 @@ Script_if_greater_than:
|
|||||||
jr c, Script_jump
|
jr c, Script_jump
|
||||||
jr SkipTwoScriptBytes
|
jr SkipTwoScriptBytes
|
||||||
|
|
||||||
Script_if_less_than:
|
Script_ifless:
|
||||||
; script command 0xb
|
; script command 0xb
|
||||||
; parameters: byte, pointer
|
; parameters: byte, pointer
|
||||||
|
|
||||||
@@ -2646,7 +2646,7 @@ Script_reloadandreturn:
|
|||||||
call Script_newloadmap
|
call Script_newloadmap
|
||||||
jp Script_end
|
jp Script_end
|
||||||
|
|
||||||
Script_textbox:
|
Script_opentext:
|
||||||
; script command 0x47
|
; script command 0x47
|
||||||
|
|
||||||
call OpenText
|
call OpenText
|
||||||
@@ -2787,7 +2787,7 @@ ExitScriptSubroutine:
|
|||||||
scf
|
scf
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Script_end_all:
|
Script_endall:
|
||||||
; script command 0x93
|
; script command 0x93
|
||||||
|
|
||||||
xor a
|
xor a
|
||||||
@@ -2817,7 +2817,7 @@ Script_credits:
|
|||||||
|
|
||||||
farcall RedCredits
|
farcall RedCredits
|
||||||
ReturnFromCredits:
|
ReturnFromCredits:
|
||||||
call Script_end_all
|
call Script_endall
|
||||||
ld a, $3
|
ld a, $3
|
||||||
call LoadMapStatus
|
call LoadMapStatus
|
||||||
call StopScript
|
call StopScript
|
||||||
@@ -2839,7 +2839,7 @@ Script_wait:
|
|||||||
pop bc
|
pop bc
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Script_check_save:
|
Script_checksave:
|
||||||
; script command 0xa9
|
; script command 0xa9
|
||||||
|
|
||||||
farcall CheckSave
|
farcall CheckSave
|
||||||
|
@@ -37,16 +37,16 @@ ptjump: MACRO
|
|||||||
dw \1 ; pointer
|
dw \1 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum if_equal_command ; $06
|
enum ifequal_command ; $06
|
||||||
if_equal: MACRO
|
ifequal: MACRO
|
||||||
db if_equal_command
|
db ifequal_command
|
||||||
db \1 ; byte
|
db \1 ; byte
|
||||||
dw \2 ; pointer
|
dw \2 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum if_not_equal_command ; $07
|
enum ifnotequal_command ; $07
|
||||||
if_not_equal: MACRO
|
ifnotequal: MACRO
|
||||||
db if_not_equal_command
|
db ifnotequal_command
|
||||||
db \1 ; byte
|
db \1 ; byte
|
||||||
dw \2 ; pointer
|
dw \2 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
@@ -63,16 +63,16 @@ iftrue: MACRO
|
|||||||
dw \1 ; pointer
|
dw \1 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum if_greater_than_command ; $0a
|
enum ifgreater_command ; $0a
|
||||||
if_greater_than: MACRO
|
ifgreater: MACRO
|
||||||
db if_greater_than_command
|
db ifgreater_command
|
||||||
db \1 ; byte
|
db \1 ; byte
|
||||||
dw \2 ; pointer
|
dw \2 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum if_less_than_command ; $0b
|
enum ifless_command ; $0b
|
||||||
if_less_than: MACRO
|
ifless: MACRO
|
||||||
db if_less_than_command
|
db ifless_command
|
||||||
db \1 ; byte
|
db \1 ; byte
|
||||||
dw \2 ; pointer
|
dw \2 ; pointer
|
||||||
ENDM
|
ENDM
|
||||||
@@ -298,20 +298,20 @@ givepoke: MACRO
|
|||||||
db givepoke_command
|
db givepoke_command
|
||||||
db \1 ; pokemon
|
db \1 ; pokemon
|
||||||
db \2 ; level
|
db \2 ; level
|
||||||
if _NARG >= 3
|
if _NARG >= 3
|
||||||
db \3 ; item
|
db \3 ; item
|
||||||
if _NARG >= 4
|
if _NARG >= 4
|
||||||
db \4 ; trainer
|
db \4 ; trainer
|
||||||
if \4
|
if \4
|
||||||
dw \5 ; trainer_name_pointer
|
dw \5 ; trainer_name_pointer
|
||||||
dw \6 ; pkmn_nickname
|
dw \6 ; pkmn_nickname
|
||||||
endc
|
endc
|
||||||
else
|
else
|
||||||
db 0
|
db 0
|
||||||
endc
|
endc
|
||||||
else
|
else
|
||||||
db 0, 0
|
db 0, 0
|
||||||
endc
|
endc
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum giveegg_command ; $2e
|
enum giveegg_command ; $2e
|
||||||
@@ -651,14 +651,14 @@ scripttalkafter: MACRO
|
|||||||
db scripttalkafter_command
|
db scripttalkafter_command
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum end_if_just_battled_command ; $66
|
enum endifjustbattled_command ; $66
|
||||||
end_if_just_battled: MACRO
|
endifjustbattled: MACRO
|
||||||
db end_if_just_battled_command
|
db endifjustbattled_command
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum check_just_battled_command ; $67
|
enum checkjustbattled_command ; $67
|
||||||
check_just_battled: MACRO
|
checkjustbattled: MACRO
|
||||||
db check_just_battled_command
|
db checkjustbattled_command
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum setlasttalked_command ; $68
|
enum setlasttalked_command ; $68
|
||||||
@@ -920,9 +920,9 @@ reloadandreturn: MACRO
|
|||||||
db \1 ; which_method
|
db \1 ; which_method
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum end_all_command ; $93
|
enum endall_command ; $93
|
||||||
end_all: MACRO
|
endall: MACRO
|
||||||
db end_all_command
|
db endall_command
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum pokemart_command ; $94
|
enum pokemart_command ; $94
|
||||||
@@ -1062,7 +1062,7 @@ wait: MACRO
|
|||||||
db \1 ; duration
|
db \1 ; duration
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum check_save_command ; $a9
|
enum checksave_command ; $a9
|
||||||
check_save: MACRO
|
checksave: MACRO
|
||||||
db check_save_command
|
db checksave_command
|
||||||
ENDM
|
ENDM
|
||||||
|
@@ -57,8 +57,8 @@ AzaleaGymBugsyScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
AzaleaGymActivateRockets:
|
AzaleaGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
@@ -71,7 +71,7 @@ TrainerTwinsAmyandmay1:
|
|||||||
trainer TWINS, AMYANDMAY1, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay1SeenText, TwinsAmyandmay1BeatenText, 0, .AfterScript
|
trainer TWINS, AMYANDMAY1, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay1SeenText, TwinsAmyandmay1BeatenText, 0, .AfterScript
|
||||||
|
|
||||||
.AfterScript:
|
.AfterScript:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsAmyandmay1AfterBattleText
|
writetext TwinsAmyandmay1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -82,7 +82,7 @@ TrainerTwinsAmyandmay2:
|
|||||||
trainer TWINS, AMYANDMAY2, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay2SeenText, TwinsAmyandmay2BeatenText, 0, .AfterScript
|
trainer TWINS, AMYANDMAY2, EVENT_BEAT_TWINS_AMY_AND_MAY, TwinsAmyandmay2SeenText, TwinsAmyandmay2BeatenText, 0, .AfterScript
|
||||||
|
|
||||||
.AfterScript:
|
.AfterScript:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsAmyandmay2AfterBattleText
|
writetext TwinsAmyandmay2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -93,7 +93,7 @@ TrainerBugCatcherBenny:
|
|||||||
trainer BUG_CATCHER, BUG_CATCHER_BENNY, EVENT_BEAT_BUG_CATCHER_BENNY, BugCatcherBennySeenText, BugCatcherBennyBeatenText, 0, .AfterScript
|
trainer BUG_CATCHER, BUG_CATCHER_BENNY, EVENT_BEAT_BUG_CATCHER_BENNY, BugCatcherBennySeenText, BugCatcherBennyBeatenText, 0, .AfterScript
|
||||||
|
|
||||||
.AfterScript:
|
.AfterScript:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherBennyAfterBattleText
|
writetext BugCatcherBennyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -104,7 +104,7 @@ TrainerBugCatcherAl:
|
|||||||
trainer BUG_CATCHER, AL, EVENT_BEAT_BUG_CATCHER_AL, BugCatcherAlSeenText, BugCatcherAlBeatenText, 0, .AfterScript
|
trainer BUG_CATCHER, AL, EVENT_BEAT_BUG_CATCHER_AL, BugCatcherAlSeenText, BugCatcherAlBeatenText, 0, .AfterScript
|
||||||
|
|
||||||
.AfterScript:
|
.AfterScript:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherAlAfterBattleText
|
writetext BugCatcherAlAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -115,7 +115,7 @@ TrainerBugCatcherJosh:
|
|||||||
trainer BUG_CATCHER, JOSH, EVENT_BEAT_BUG_CATCHER_JOSH, BugCatcherJoshSeenText, BugCatcherJoshBeatenText, 0, .AfterScript
|
trainer BUG_CATCHER, JOSH, EVENT_BEAT_BUG_CATCHER_JOSH, BugCatcherJoshSeenText, BugCatcherJoshBeatenText, 0, .AfterScript
|
||||||
|
|
||||||
.AfterScript:
|
.AfterScript:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherJoshAfterBattleText
|
writetext BugCatcherJoshAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -18,10 +18,10 @@ BattleTower1F_MapScripts:
|
|||||||
iffalse .SkipEverything
|
iffalse .SkipEverything
|
||||||
writebyte BATTLETOWERACTION_GET_CHALLENGE_STATE ; copybytetovar sBattleTowerChallengeState
|
writebyte BATTLETOWERACTION_GET_CHALLENGE_STATE ; copybytetovar sBattleTowerChallengeState
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal $0, .SkipEverything
|
ifequal $0, .SkipEverything
|
||||||
if_equal $2, .priorityjump1
|
ifequal $2, .priorityjump1
|
||||||
if_equal $3, .SkipEverything
|
ifequal $3, .SkipEverything
|
||||||
if_equal $4, .SkipEverything
|
ifequal $4, .SkipEverything
|
||||||
opentext
|
opentext
|
||||||
writetext Text_WeveBeenWaitingForYou
|
writetext Text_WeveBeenWaitingForYou
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -54,28 +54,28 @@ UnknownScript_0x9e3e0:
|
|||||||
ReceptionistScript_0x9e3e2:
|
ReceptionistScript_0x9e3e2:
|
||||||
writebyte BATTLETOWERACTION_GET_CHALLENGE_STATE ; copybytetovar sBattleTowerChallengeState
|
writebyte BATTLETOWERACTION_GET_CHALLENGE_STATE ; copybytetovar sBattleTowerChallengeState
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm
|
ifequal $3, Script_BeatenAllTrainers2 ; maps/BattleTowerBattleRoom.asm
|
||||||
opentext
|
opentext
|
||||||
writetext Text_BattleTowerWelcomesYou
|
writetext Text_BattleTowerWelcomesYou
|
||||||
buttonsound
|
buttonsound
|
||||||
writebyte BATTLETOWERACTION_CHECK_EXPLANATION_READ ; if new save file: bit 1, [sBattleTowerSaveFileFlags]
|
writebyte BATTLETOWERACTION_CHECK_EXPLANATION_READ ; if new save file: bit 1, [sBattleTowerSaveFileFlags]
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_not_equal $0, Script_Menu_ChallengeExplanationCancel
|
ifnotequal $0, Script_Menu_ChallengeExplanationCancel
|
||||||
jump Script_BattleTowerIntroductionYesNo
|
jump Script_BattleTowerIntroductionYesNo
|
||||||
|
|
||||||
Script_Menu_ChallengeExplanationCancel: ; 0x9e3fc
|
Script_Menu_ChallengeExplanationCancel: ; 0x9e3fc
|
||||||
writetext Text_WantToGoIntoABattleRoom
|
writetext Text_WantToGoIntoABattleRoom
|
||||||
writebyte TRUE
|
writebyte TRUE
|
||||||
special Menu_ChallengeExplanationCancel
|
special Menu_ChallengeExplanationCancel
|
||||||
if_equal 1, Script_ChooseChallenge
|
ifequal 1, Script_ChooseChallenge
|
||||||
if_equal 2, Script_BattleTowerExplanation
|
ifequal 2, Script_BattleTowerExplanation
|
||||||
jump Script_BattleTowerHopeToServeYouAgain
|
jump Script_BattleTowerHopeToServeYouAgain
|
||||||
|
|
||||||
Script_ChooseChallenge: ; 0x9e40f
|
Script_ChooseChallenge: ; 0x9e40f
|
||||||
writebyte BATTLETOWERACTION_RESETDATA ; ResetBattleTowerTrainerSRAM
|
writebyte BATTLETOWERACTION_RESETDATA ; ResetBattleTowerTrainerSRAM
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
special CheckForBattleTowerRules
|
special CheckForBattleTowerRules
|
||||||
if_not_equal FALSE, Script_WaitButton
|
ifnotequal FALSE, Script_WaitButton
|
||||||
writetext Text_SaveBeforeEnteringBattleRoom
|
writetext Text_SaveBeforeEnteringBattleRoom
|
||||||
yesorno
|
yesorno
|
||||||
iffalse Script_Menu_ChallengeExplanationCancel
|
iffalse Script_Menu_ChallengeExplanationCancel
|
||||||
@@ -86,8 +86,8 @@ Script_ChooseChallenge: ; 0x9e40f
|
|||||||
writebyte BATTLETOWERACTION_SET_EXPLANATION_READ ; set 1, [sBattleTowerSaveFileFlags]
|
writebyte BATTLETOWERACTION_SET_EXPLANATION_READ ; set 1, [sBattleTowerSaveFileFlags]
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
special BattleTowerRoomMenu
|
special BattleTowerRoomMenu
|
||||||
if_equal $a, Script_Menu_ChallengeExplanationCancel
|
ifequal $a, Script_Menu_ChallengeExplanationCancel
|
||||||
if_not_equal $0, Script_MobileError
|
ifnotequal $0, Script_MobileError
|
||||||
writebyte BATTLETOWERACTION_11
|
writebyte BATTLETOWERACTION_11
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
writetext Text_RightThisWayToYourBattleRoom
|
writetext Text_RightThisWayToYourBattleRoom
|
||||||
@@ -122,7 +122,7 @@ Script_GivePlayerHisPrize: ; 0x9e47a
|
|||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
writebyte BATTLETOWERACTION_GIVEREWARD
|
writebyte BATTLETOWERACTION_GIVEREWARD
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal POTION, Script_YourPackIsStuffedFull
|
ifequal POTION, Script_YourPackIsStuffedFull
|
||||||
itemtotext USE_SCRIPT_VAR, MEM_BUFFER_1
|
itemtotext USE_SCRIPT_VAR, MEM_BUFFER_1
|
||||||
giveitem ITEM_FROM_MEM, 5
|
giveitem ITEM_FROM_MEM, 5
|
||||||
writetext Text_PlayerGotFive
|
writetext Text_PlayerGotFive
|
||||||
@@ -173,8 +173,8 @@ UnreferencedScript_0x9e4be:
|
|||||||
writebyte BATTLETOWERACTION_SET_EXPLANATION_READ
|
writebyte BATTLETOWERACTION_SET_EXPLANATION_READ
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
special Function1700ba
|
special Function1700ba
|
||||||
if_equal $a, Script_Menu_ChallengeExplanationCancel
|
ifequal $a, Script_Menu_ChallengeExplanationCancel
|
||||||
if_not_equal $0, Script_MobileError
|
ifnotequal $0, Script_MobileError
|
||||||
writetext Text_ReceivedAListOfLeadersOnTheHonorRoll
|
writetext Text_ReceivedAListOfLeadersOnTheHonorRoll
|
||||||
spriteface BATTLETOWER1F_RECEPTIONIST, LEFT
|
spriteface BATTLETOWER1F_RECEPTIONIST, LEFT
|
||||||
writetext Text_PleaseConfirmOnThisMonitor
|
writetext Text_PleaseConfirmOnThisMonitor
|
||||||
@@ -186,15 +186,15 @@ UnreferencedScript_0x9e4be:
|
|||||||
UnreferencedScript_0x9e4ea:
|
UnreferencedScript_0x9e4ea:
|
||||||
writebyte BATTLETOWERACTION_LEVEL_CHECK
|
writebyte BATTLETOWERACTION_LEVEL_CHECK
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_not_equal $0, Script_APkmnLevelExceeds
|
ifnotequal $0, Script_APkmnLevelExceeds
|
||||||
writebyte BATTLETOWERACTION_UBERS_CHECK
|
writebyte BATTLETOWERACTION_UBERS_CHECK
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_not_equal $0, Script_MayNotEnterABattleRoomUnderL70
|
ifnotequal $0, Script_MayNotEnterABattleRoomUnderL70
|
||||||
special CheckForBattleTowerRules
|
special CheckForBattleTowerRules
|
||||||
if_not_equal FALSE, Script_WaitButton
|
ifnotequal FALSE, Script_WaitButton
|
||||||
writebyte BATTLETOWERACTION_05
|
writebyte BATTLETOWERACTION_05
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal $0, .zero
|
ifequal $0, .zero
|
||||||
writetext Text_CantBeRegistered_PreviousRecordDeleted
|
writetext Text_CantBeRegistered_PreviousRecordDeleted
|
||||||
jump continue
|
jump continue
|
||||||
|
|
||||||
|
@@ -33,9 +33,9 @@ Script_BattleRoomLoop: ; 0x9f425
|
|||||||
special BattleTowerBattle ; calls predef startbattle
|
special BattleTowerBattle ; calls predef startbattle
|
||||||
special FadeOutPalettes
|
special FadeOutPalettes
|
||||||
reloadmap
|
reloadmap
|
||||||
if_not_equal $0, Script_FailedBattleTowerChallenge
|
ifnotequal $0, Script_FailedBattleTowerChallenge
|
||||||
copybytetovar wNrOfBeatenBattleTowerTrainers ; wcf64
|
copybytetovar wNrOfBeatenBattleTowerTrainers ; wcf64
|
||||||
if_equal BATTLETOWER_STREAK_LENGTH, Script_BeatenAllTrainers
|
ifequal BATTLETOWER_STREAK_LENGTH, Script_BeatenAllTrainers
|
||||||
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksOut
|
applymovement BATTLETOWERBATTLEROOM_YOUNGSTER, MovementData_BattleTowerBattleRoomOpponentWalksOut
|
||||||
warpsound
|
warpsound
|
||||||
disappear BATTLETOWERBATTLEROOM_YOUNGSTER
|
disappear BATTLETOWERBATTLEROOM_YOUNGSTER
|
||||||
|
@@ -36,14 +36,14 @@ BattleTowerHallway_MapScripts:
|
|||||||
; at least it should look like that
|
; at least it should look like that
|
||||||
; because all warps lead to the same room
|
; because all warps lead to the same room
|
||||||
.WalkToChosenBattleRoom: ; 0x9f5dc
|
.WalkToChosenBattleRoom: ; 0x9f5dc
|
||||||
if_equal 3, .L30L40
|
ifequal 3, .L30L40
|
||||||
if_equal 4, .L30L40
|
ifequal 4, .L30L40
|
||||||
if_equal 5, .L50L60
|
ifequal 5, .L50L60
|
||||||
if_equal 6, .L50L60
|
ifequal 6, .L50L60
|
||||||
if_equal 7, .L70L80
|
ifequal 7, .L70L80
|
||||||
if_equal 8, .L70L80
|
ifequal 8, .L70L80
|
||||||
if_equal 9, .L90L100
|
ifequal 9, .L90L100
|
||||||
if_equal 10, .L90L100
|
ifequal 10, .L90L100
|
||||||
applymovement BATTLETOWERHALLWAY_RECEPTIONIST, MovementData_BattleTowerHallwayWalkTo1020Room
|
applymovement BATTLETOWERHALLWAY_RECEPTIONIST, MovementData_BattleTowerHallwayWalkTo1020Room
|
||||||
jump .EnterBattleRoom
|
jump .EnterBattleRoom
|
||||||
|
|
||||||
|
@@ -20,7 +20,7 @@ BillScript:
|
|||||||
buttonsound
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, UnknownScript_0x54c13
|
ifequal PARTY_LENGTH, UnknownScript_0x54c13
|
||||||
writetext UnknownText_0x54dae
|
writetext UnknownText_0x54dae
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
@@ -72,8 +72,8 @@ BillsSisterScript:
|
|||||||
iftrue UnknownScript_0x54c58
|
iftrue UnknownScript_0x54c58
|
||||||
writetext UnknownText_0x54f9e
|
writetext UnknownText_0x54f9e
|
||||||
askforphonenumber PHONE_BILL
|
askforphonenumber PHONE_BILL
|
||||||
if_equal PHONE_CONTACTS_FULL, UnknownScript_0x54c64
|
ifequal PHONE_CONTACTS_FULL, UnknownScript_0x54c64
|
||||||
if_equal PHONE_CONTACT_REFUSED, UnknownScript_0x54c5e
|
ifequal PHONE_CONTACT_REFUSED, UnknownScript_0x54c5e
|
||||||
waitsfx
|
waitsfx
|
||||||
addcellnum PHONE_BILL
|
addcellnum PHONE_BILL
|
||||||
writetext UnknownText_0x54fd9
|
writetext UnknownText_0x54fd9
|
||||||
|
@@ -37,7 +37,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal LICKITUNG, .WrongPokemon
|
ifnotequal LICKITUNG, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_LICKITUNG_TO_BILLS_GRANDPA
|
||||||
jump .ShowedLickitung
|
jump .ShowedLickitung
|
||||||
@@ -51,7 +51,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal ODDISH, .WrongPokemon
|
ifnotequal ODDISH, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_ODDISH_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_ODDISH_TO_BILLS_GRANDPA
|
||||||
jump .ShowedOddish
|
jump .ShowedOddish
|
||||||
@@ -65,7 +65,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal STARYU, .WrongPokemon
|
ifnotequal STARYU, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_STARYU_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_STARYU_TO_BILLS_GRANDPA
|
||||||
jump .ShowedStaryu
|
jump .ShowedStaryu
|
||||||
@@ -81,7 +81,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal GROWLITHE, .WrongPokemon
|
ifnotequal GROWLITHE, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
||||||
jump .ShowedGrowlitheVulpix
|
jump .ShowedGrowlitheVulpix
|
||||||
@@ -95,7 +95,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal VULPIX, .WrongPokemon
|
ifnotequal VULPIX, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_GROWLITHE_VULPIX_TO_BILLS_GRANDPA
|
||||||
jump .ShowedGrowlitheVulpix
|
jump .ShowedGrowlitheVulpix
|
||||||
@@ -109,7 +109,7 @@ BillsGrandpa:
|
|||||||
scall .ExcitedToSee
|
scall .ExcitedToSee
|
||||||
special BillsGrandfather
|
special BillsGrandfather
|
||||||
iffalse .SaidNo
|
iffalse .SaidNo
|
||||||
if_not_equal PICHU, .WrongPokemon
|
ifnotequal PICHU, .WrongPokemon
|
||||||
scall .CorrectPokemon
|
scall .CorrectPokemon
|
||||||
setevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
setevent EVENT_SHOWED_PICHU_TO_BILLS_GRANDPA
|
||||||
jump .ShowedPichu
|
jump .ShowedPichu
|
||||||
|
@@ -22,7 +22,7 @@ BlackthornCity_MapScripts:
|
|||||||
|
|
||||||
.Santos:
|
.Santos:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SATURDAY, .SantosAppears
|
ifequal SATURDAY, .SantosAppears
|
||||||
disappear BLACKTHORNCITY_SANTOS
|
disappear BLACKTHORNCITY_SANTOS
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@ SantosScript:
|
|||||||
checkevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
checkevent EVENT_GOT_SPELL_TAG_FROM_SANTOS
|
||||||
iftrue .Saturday
|
iftrue .Saturday
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SATURDAY, .NotSaturday
|
ifnotequal SATURDAY, .NotSaturday
|
||||||
checkevent EVENT_MET_SANTOS_OF_SATURDAY
|
checkevent EVENT_MET_SANTOS_OF_SATURDAY
|
||||||
iftrue .MetSantos
|
iftrue .MetSantos
|
||||||
writetext MeetSantosText
|
writetext MeetSantosText
|
||||||
|
@@ -94,7 +94,7 @@ TrainerCooltrainermPaul:
|
|||||||
trainer COOLTRAINERM, PAUL, EVENT_BEAT_COOLTRAINERM_PAUL, CooltrainermPaulSeenText, CooltrainermPaulBeatenText, 0, .Script
|
trainer COOLTRAINERM, PAUL, EVENT_BEAT_COOLTRAINERM_PAUL, CooltrainermPaulSeenText, CooltrainermPaulBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermPaulAfterBattleText
|
writetext CooltrainermPaulAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -105,7 +105,7 @@ TrainerCooltrainermMike:
|
|||||||
trainer COOLTRAINERM, MIKE, EVENT_BEAT_COOLTRAINERM_MIKE, CooltrainermMikeSeenText, CooltrainermMikeBeatenText, 0, .Script
|
trainer COOLTRAINERM, MIKE, EVENT_BEAT_COOLTRAINERM_MIKE, CooltrainermMikeSeenText, CooltrainermMikeBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermMikeAfterBattleText
|
writetext CooltrainermMikeAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -116,7 +116,7 @@ TrainerCooltrainerfLola:
|
|||||||
trainer COOLTRAINERF, LOLA, EVENT_BEAT_COOLTRAINERF_LOLA, CooltrainerfLolaSeenText, CooltrainerfLolaBeatenText, 0, .Script
|
trainer COOLTRAINERF, LOLA, EVENT_BEAT_COOLTRAINERF_LOLA, CooltrainerfLolaSeenText, CooltrainerfLolaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfLolaAfterBattleText
|
writetext CooltrainerfLolaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -60,7 +60,7 @@ TrainerCooltrainermCody:
|
|||||||
trainer COOLTRAINERM, CODY, EVENT_BEAT_COOLTRAINERM_CODY, CooltrainermCodySeenText, CooltrainermCodyBeatenText, 0, .Script
|
trainer COOLTRAINERM, CODY, EVENT_BEAT_COOLTRAINERM_CODY, CooltrainermCodySeenText, CooltrainermCodyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermCodyAfterBattleText
|
writetext CooltrainermCodyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -71,7 +71,7 @@ TrainerCooltrainerfFran:
|
|||||||
trainer COOLTRAINERF, FRAN, EVENT_BEAT_COOLTRAINERF_FRAN, CooltrainerfFranSeenText, CooltrainerfFranBeatenText, 0, .Script
|
trainer COOLTRAINERF, FRAN, EVENT_BEAT_COOLTRAINERF_FRAN, CooltrainerfFranSeenText, CooltrainerfFranBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfFranAfterBattleText
|
writetext CooltrainerfFranAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -10,7 +10,7 @@ DaisyScript:
|
|||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_HOUR
|
checkcode VAR_HOUR
|
||||||
if_equal 15, .ThreePM
|
ifequal 15, .ThreePM
|
||||||
writetext DaisyHelloText
|
writetext DaisyHelloText
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
@@ -25,8 +25,8 @@ DaisyScript:
|
|||||||
writetext DaisyWhichMonText
|
writetext DaisyWhichMonText
|
||||||
waitbutton
|
waitbutton
|
||||||
special DaisysGrooming
|
special DaisysGrooming
|
||||||
if_equal $0, .Refused
|
ifequal $0, .Refused
|
||||||
if_equal $1, .CantGroomEgg
|
ifequal $1, .CantGroomEgg
|
||||||
setflag ENGINE_DAISYS_GROOMING
|
setflag ENGINE_DAISYS_GROOMING
|
||||||
writetext DaisyAlrightText
|
writetext DaisyAlrightText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -104,7 +104,7 @@ BurnedTowerB1FEusine:
|
|||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal UP, .Movement
|
ifequal UP, .Movement
|
||||||
applymovement BURNEDTOWERB1F_EUSINE, BurnedTowerB1FEusineMovement1
|
applymovement BURNEDTOWERB1F_EUSINE, BurnedTowerB1FEusineMovement1
|
||||||
jump UnknownScript_0x18622a
|
jump UnknownScript_0x18622a
|
||||||
|
|
||||||
|
@@ -26,15 +26,15 @@ CeladonDeptStore6FVendingMachine:
|
|||||||
loadmenuheader .MenuHeader
|
loadmenuheader .MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .FreshWater
|
ifequal 1, .FreshWater
|
||||||
if_equal 2, .SodaPop
|
ifequal 2, .SodaPop
|
||||||
if_equal 3, .Lemonade
|
ifequal 3, .Lemonade
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FreshWater:
|
.FreshWater:
|
||||||
checkmoney YOUR_MONEY, 200
|
checkmoney YOUR_MONEY, 200
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem FRESH_WATER
|
giveitem FRESH_WATER
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 200
|
takemoney YOUR_MONEY, 200
|
||||||
@@ -43,7 +43,7 @@ CeladonDeptStore6FVendingMachine:
|
|||||||
|
|
||||||
.SodaPop:
|
.SodaPop:
|
||||||
checkmoney YOUR_MONEY, 300
|
checkmoney YOUR_MONEY, 300
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem SODA_POP
|
giveitem SODA_POP
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 300
|
takemoney YOUR_MONEY, 300
|
||||||
@@ -52,7 +52,7 @@ CeladonDeptStore6FVendingMachine:
|
|||||||
|
|
||||||
.Lemonade:
|
.Lemonade:
|
||||||
checkmoney YOUR_MONEY, 350
|
checkmoney YOUR_MONEY, 350
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem LEMONADE
|
giveitem LEMONADE
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 350
|
takemoney YOUR_MONEY, 350
|
||||||
|
@@ -57,7 +57,7 @@ CeladonGameCornerFisherScript:
|
|||||||
checkitem COIN_CASE
|
checkitem COIN_CASE
|
||||||
iffalse .NoCoinCase
|
iffalse .NoCoinCase
|
||||||
checkcoins MAX_COINS - 1
|
checkcoins MAX_COINS - 1
|
||||||
if_equal HAVE_MORE, .FullCoinCase
|
ifequal HAVE_MORE, .FullCoinCase
|
||||||
stringtotext .coinname, MEM_BUFFER_1
|
stringtotext .coinname, MEM_BUFFER_1
|
||||||
scall .GiveCoins
|
scall .GiveCoins
|
||||||
givecoins 18
|
givecoins 18
|
||||||
@@ -110,7 +110,7 @@ CeladonGameCornerPoster2Script:
|
|||||||
|
|
||||||
CeladonGameCornerLuckySlotMachineScript:
|
CeladonGameCornerLuckySlotMachineScript:
|
||||||
random 6
|
random 6
|
||||||
if_equal 0, CeladonGameCornerSlotMachineScript
|
ifequal 0, CeladonGameCornerSlotMachineScript
|
||||||
refreshscreen
|
refreshscreen
|
||||||
writebyte FALSE
|
writebyte FALSE
|
||||||
special SlotMachine
|
special SlotMachine
|
||||||
|
@@ -26,14 +26,14 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
loadmenuheader CeladonPrizeRoom_TMMenuHeader
|
loadmenuheader CeladonPrizeRoom_TMMenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .doubleteam
|
ifequal 1, .doubleteam
|
||||||
if_equal 2, .psychic
|
ifequal 2, .psychic
|
||||||
if_equal 3, .hyperbeam
|
ifequal 3, .hyperbeam
|
||||||
jump CeladonPrizeRoom_cancel
|
jump CeladonPrizeRoom_cancel
|
||||||
|
|
||||||
.doubleteam
|
.doubleteam
|
||||||
checkcoins 1500
|
checkcoins 1500
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
itemtotext TM_DOUBLE_TEAM, MEM_BUFFER_0
|
itemtotext TM_DOUBLE_TEAM, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
@@ -44,7 +44,7 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
|
|
||||||
.psychic
|
.psychic
|
||||||
checkcoins 3500
|
checkcoins 3500
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
itemtotext TM_PSYCHIC_M, MEM_BUFFER_0
|
itemtotext TM_PSYCHIC_M, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
@@ -55,7 +55,7 @@ CeladonPrizeRoom_tmcounterloop:
|
|||||||
|
|
||||||
.hyperbeam
|
.hyperbeam
|
||||||
checkcoins 7500
|
checkcoins 7500
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
itemtotext TM_HYPER_BEAM, MEM_BUFFER_0
|
itemtotext TM_HYPER_BEAM, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
@@ -127,16 +127,16 @@ CeladonGameCornerPrizeRoomPokemonVendor:
|
|||||||
loadmenuheader .MenuHeader
|
loadmenuheader .MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .pikachu
|
ifequal 1, .pikachu
|
||||||
if_equal 2, .porygon
|
ifequal 2, .porygon
|
||||||
if_equal 3, .larvitar
|
ifequal 3, .larvitar
|
||||||
jump CeladonPrizeRoom_cancel
|
jump CeladonPrizeRoom_cancel
|
||||||
|
|
||||||
.pikachu
|
.pikachu
|
||||||
checkcoins 2222
|
checkcoins 2222
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
ifequal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
||||||
pokenamemem PIKACHU, MEM_BUFFER_0
|
pokenamemem PIKACHU, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
@@ -152,9 +152,9 @@ CeladonGameCornerPrizeRoomPokemonVendor:
|
|||||||
|
|
||||||
.porygon
|
.porygon
|
||||||
checkcoins 5555
|
checkcoins 5555
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
ifequal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
||||||
pokenamemem PORYGON, MEM_BUFFER_0
|
pokenamemem PORYGON, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
@@ -170,9 +170,9 @@ CeladonGameCornerPrizeRoomPokemonVendor:
|
|||||||
|
|
||||||
.larvitar
|
.larvitar
|
||||||
checkcoins 8888
|
checkcoins 8888
|
||||||
if_equal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
ifequal PARTY_LENGTH, CeladonPrizeRoom_notenoughroom
|
||||||
pokenamemem LARVITAR, MEM_BUFFER_0
|
pokenamemem LARVITAR, MEM_BUFFER_0
|
||||||
scall CeladonPrizeRoom_askbuy
|
scall CeladonPrizeRoom_askbuy
|
||||||
iffalse CeladonPrizeRoom_cancel
|
iffalse CeladonPrizeRoom_cancel
|
||||||
|
@@ -51,7 +51,7 @@ TrainerLassMichelle:
|
|||||||
trainer LASS, MICHELLE, EVENT_BEAT_LASS_MICHELLE, LassMichelleSeenText, LassMichelleBeatenText, 0, .Script
|
trainer LASS, MICHELLE, EVENT_BEAT_LASS_MICHELLE, LassMichelleSeenText, LassMichelleBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassMichelleAfterBattleText
|
writetext LassMichelleAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -62,7 +62,7 @@ TrainerPicnickerTanya:
|
|||||||
trainer PICNICKER, TANYA, EVENT_BEAT_PICNICKER_TANYA, PicnickerTanyaSeenText, PicnickerTanyaBeatenText, 0, .Script
|
trainer PICNICKER, TANYA, EVENT_BEAT_PICNICKER_TANYA, PicnickerTanyaSeenText, PicnickerTanyaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PicnickerTanyaAfterBattleText
|
writetext PicnickerTanyaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -73,7 +73,7 @@ TrainerBeautyJulia:
|
|||||||
trainer BEAUTY, JULIA, EVENT_BEAT_BEAUTY_JULIA, BeautyJuliaSeenText, BeautyJuliaBeatenText, 0, .Script
|
trainer BEAUTY, JULIA, EVENT_BEAT_BEAUTY_JULIA, BeautyJuliaSeenText, BeautyJuliaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BeautyJuliaAfterBattleText
|
writetext BeautyJuliaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -84,7 +84,7 @@ TrainerTwinsJoandzoe1:
|
|||||||
trainer TWINS, JOANDZOE1, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe1SeenText, TwinsJoandzoe1BeatenText, 0, .Script
|
trainer TWINS, JOANDZOE1, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe1SeenText, TwinsJoandzoe1BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsJoandzoe1AfterBattleText
|
writetext TwinsJoandzoe1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -95,7 +95,7 @@ TrainerTwinsJoandzoe2:
|
|||||||
trainer TWINS, JOANDZOE2, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe2SeenText, TwinsJoandzoe2BeatenText, 0, .Script
|
trainer TWINS, JOANDZOE2, EVENT_BEAT_TWINS_JO_AND_ZOE, TwinsJoandzoe2SeenText, TwinsJoandzoe2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsJoandzoe2AfterBattleText
|
writetext TwinsJoandzoe2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -14,7 +14,7 @@ CooltrainerMScript_0x71670:
|
|||||||
opentext
|
opentext
|
||||||
writetext UnknownText_0x716ce
|
writetext UnknownText_0x716ce
|
||||||
checkcode VAR_DEXCAUGHT
|
checkcode VAR_DEXCAUGHT
|
||||||
if_greater_than NUM_POKEMON - 2 - 1, UnknownScript_0x7167e ; ignore Mew and Celebi
|
ifgreater NUM_POKEMON - 2 - 1, UnknownScript_0x7167e ; ignore Mew and Celebi
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
@@ -43,7 +43,7 @@ CeladonEusine:
|
|||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal UP, .Location1
|
ifequal UP, .Location1
|
||||||
applymovement CELADONPOKECENTER1F_EUSINE, .Movement1
|
applymovement CELADONPOKECENTER1F_EUSINE, .Movement1
|
||||||
jump .Continue
|
jump .Continue
|
||||||
|
|
||||||
|
@@ -87,7 +87,7 @@ TrainerSwimmerfDiana:
|
|||||||
trainer SWIMMERF, DIANA, EVENT_BEAT_SWIMMERF_DIANA, SwimmerfDianaSeenText, SwimmerfDianaBeatenText, 0, .Script
|
trainer SWIMMERF, DIANA, EVENT_BEAT_SWIMMERF_DIANA, SwimmerfDianaSeenText, SwimmerfDianaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfDianaAfterBattleText
|
writetext SwimmerfDianaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -98,7 +98,7 @@ TrainerSwimmerfBriana:
|
|||||||
trainer SWIMMERF, BRIANA, EVENT_BEAT_SWIMMERF_BRIANA, SwimmerfBrianaSeenText, SwimmerfBrianaBeatenText, 0, .Script
|
trainer SWIMMERF, BRIANA, EVENT_BEAT_SWIMMERF_BRIANA, SwimmerfBrianaSeenText, SwimmerfBrianaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfBrianaAfterBattleText
|
writetext SwimmerfBrianaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -109,7 +109,7 @@ TrainerSwimmermParker:
|
|||||||
trainer SWIMMERM, PARKER, EVENT_BEAT_SWIMMERM_PARKER, SwimmermParkerSeenText, SwimmermParkerBeatenText, 0, .Script
|
trainer SWIMMERM, PARKER, EVENT_BEAT_SWIMMERM_PARKER, SwimmermParkerSeenText, SwimmermParkerBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermParkerAfterBattleText
|
writetext SwimmermParkerAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -74,8 +74,8 @@ ChuckScript_0x9d60f:
|
|||||||
end
|
end
|
||||||
|
|
||||||
CianwoodGymActivateRockets:
|
CianwoodGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
@@ -88,7 +88,7 @@ TrainerBlackbeltYoshi:
|
|||||||
trainer BLACKBELT_T, YOSHI, EVENT_BEAT_BLACKBELT_YOSHI, BlackbeltYoshiSeenText, BlackbeltYoshiBeatenText, 0, .Script
|
trainer BLACKBELT_T, YOSHI, EVENT_BEAT_BLACKBELT_YOSHI, BlackbeltYoshiSeenText, BlackbeltYoshiBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BlackbeltYoshiAfterText
|
writetext BlackbeltYoshiAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -99,7 +99,7 @@ TrainerBlackbeltLao:
|
|||||||
trainer BLACKBELT_T, LAO, EVENT_BEAT_BLACKBELT_LAO, BlackbeltLaoSeenText, BlackbeltLaoBeatenText, 0, .Script
|
trainer BLACKBELT_T, LAO, EVENT_BEAT_BLACKBELT_LAO, BlackbeltLaoSeenText, BlackbeltLaoBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BlackbeltLaoAfterText
|
writetext BlackbeltLaoAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -110,7 +110,7 @@ TrainerBlackbeltNob:
|
|||||||
trainer BLACKBELT_T, NOB, EVENT_BEAT_BLACKBELT_NOB, BlackbeltNobSeenText, BlackbeltNobBeatenText, 0, .Script
|
trainer BLACKBELT_T, NOB, EVENT_BEAT_BLACKBELT_NOB, BlackbeltNobSeenText, BlackbeltNobBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BlackbeltNobAfterText
|
writetext BlackbeltNobAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -121,7 +121,7 @@ TrainerBlackbeltLung:
|
|||||||
trainer BLACKBELT_T, LUNG, EVENT_BEAT_BLACKBELT_LUNG, BlackbeltLungSeenText, BlackbeltLungBeatenText, 0, .Script
|
trainer BLACKBELT_T, LUNG, EVENT_BEAT_BLACKBELT_LUNG, BlackbeltLungSeenText, BlackbeltLungBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BlackbeltLungAfterText
|
writetext BlackbeltLungAfterText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -18,7 +18,7 @@ TrainerKimonoGirlNaoko2:
|
|||||||
trainer KIMONO_GIRL, NAOKO2, EVENT_BEAT_KIMONO_GIRL_NAOKO, KimonoGirlNaoko2SeenText, KimonoGirlNaoko2BeatenText, 0, .Script
|
trainer KIMONO_GIRL, NAOKO2, EVENT_BEAT_KIMONO_GIRL_NAOKO, KimonoGirlNaoko2SeenText, KimonoGirlNaoko2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext KimonoGirlNaoko2AfterBattleText
|
writetext KimonoGirlNaoko2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -29,7 +29,7 @@ TrainerKimonoGirlSayo:
|
|||||||
trainer KIMONO_GIRL, SAYO, EVENT_BEAT_KIMONO_GIRL_SAYO, KimonoGirlSayoSeenText, KimonoGirlSayoBeatenText, 0, .Script
|
trainer KIMONO_GIRL, SAYO, EVENT_BEAT_KIMONO_GIRL_SAYO, KimonoGirlSayoSeenText, KimonoGirlSayoBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext KimonoGirlSayoAfterBattleText
|
writetext KimonoGirlSayoAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -40,7 +40,7 @@ TrainerKimonoGirlZuki:
|
|||||||
trainer KIMONO_GIRL, ZUKI, EVENT_BEAT_KIMONO_GIRL_ZUKI, KimonoGirlZukiSeenText, KimonoGirlZukiBeatenText, 0, .Script
|
trainer KIMONO_GIRL, ZUKI, EVENT_BEAT_KIMONO_GIRL_ZUKI, KimonoGirlZukiSeenText, KimonoGirlZukiBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext KimonoGirlZukiAfterBattleText
|
writetext KimonoGirlZukiAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -51,7 +51,7 @@ TrainerKimonoGirlKuni:
|
|||||||
trainer KIMONO_GIRL, KUNI, EVENT_BEAT_KIMONO_GIRL_KUNI, KimonoGirlKuniSeenText, KimonoGirlKuniBeatenText, 0, .Script
|
trainer KIMONO_GIRL, KUNI, EVENT_BEAT_KIMONO_GIRL_KUNI, KimonoGirlKuniSeenText, KimonoGirlKuniBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext KimonoGirlKuniAfterBattleText
|
writetext KimonoGirlKuniAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -62,7 +62,7 @@ TrainerKimonoGirlMiki:
|
|||||||
trainer KIMONO_GIRL, MIKI, EVENT_BEAT_KIMONO_GIRL_MIKI, KimonoGirlMikiSeenText, KimonoGirlMikiBeatenText, 0, .Script
|
trainer KIMONO_GIRL, MIKI, EVENT_BEAT_KIMONO_GIRL_MIKI, KimonoGirlMikiSeenText, KimonoGirlMikiBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext KimonoGirlMikiAfterBattleText
|
writetext KimonoGirlMikiAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -29,7 +29,7 @@ DayCareManScript_Inside:
|
|||||||
buttonsound
|
buttonsound
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, .PartyFull
|
ifequal PARTY_LENGTH, .PartyFull
|
||||||
special GiveOddEgg
|
special GiveOddEgg
|
||||||
opentext
|
opentext
|
||||||
writetext DayCareText_GotOddEgg
|
writetext DayCareText_GotOddEgg
|
||||||
|
@@ -31,9 +31,9 @@ DragonShrine_MapScripts:
|
|||||||
loadmenuheader DragonShrineQuestion1_MenuHeader
|
loadmenuheader DragonShrineQuestion1_MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .RightAnswer
|
ifequal 1, .RightAnswer
|
||||||
if_equal 2, .WrongAnswer
|
ifequal 2, .WrongAnswer
|
||||||
if_equal 3, .RightAnswer
|
ifequal 3, .RightAnswer
|
||||||
end
|
end
|
||||||
|
|
||||||
.Question2:
|
.Question2:
|
||||||
@@ -43,9 +43,9 @@ DragonShrine_MapScripts:
|
|||||||
loadmenuheader DragonShrineQuestion2_MenuHeader
|
loadmenuheader DragonShrineQuestion2_MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .RightAnswer
|
ifequal 1, .RightAnswer
|
||||||
if_equal 2, .RightAnswer
|
ifequal 2, .RightAnswer
|
||||||
if_equal 3, .WrongAnswer
|
ifequal 3, .WrongAnswer
|
||||||
.Question3:
|
.Question3:
|
||||||
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4
|
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_4
|
||||||
writetext DragonShrineQuestion3Text
|
writetext DragonShrineQuestion3Text
|
||||||
@@ -53,9 +53,9 @@ DragonShrine_MapScripts:
|
|||||||
loadmenuheader DragonShrineQuestion3_MenuHeader
|
loadmenuheader DragonShrineQuestion3_MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .WrongAnswer
|
ifequal 1, .WrongAnswer
|
||||||
if_equal 2, .RightAnswer
|
ifequal 2, .RightAnswer
|
||||||
if_equal 3, .RightAnswer
|
ifequal 3, .RightAnswer
|
||||||
.Question4:
|
.Question4:
|
||||||
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5
|
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_5
|
||||||
writetext DragonShrineQuestion4Text
|
writetext DragonShrineQuestion4Text
|
||||||
@@ -63,9 +63,9 @@ DragonShrine_MapScripts:
|
|||||||
loadmenuheader DragonShrineQuestion4_MenuHeader
|
loadmenuheader DragonShrineQuestion4_MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .RightAnswer
|
ifequal 1, .RightAnswer
|
||||||
if_equal 2, .WrongAnswer
|
ifequal 2, .WrongAnswer
|
||||||
if_equal 3, .RightAnswer
|
ifequal 3, .RightAnswer
|
||||||
.Question5:
|
.Question5:
|
||||||
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
|
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
|
||||||
writetext DragonShrineQuestion5Text
|
writetext DragonShrineQuestion5Text
|
||||||
@@ -73,9 +73,9 @@ DragonShrine_MapScripts:
|
|||||||
loadmenuheader DragonShrineQuestion5_MenuHeader
|
loadmenuheader DragonShrineQuestion5_MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .WrongAnswer
|
ifequal 1, .WrongAnswer
|
||||||
if_equal 2, .RightAnswer
|
ifequal 2, .RightAnswer
|
||||||
if_equal 3, .WrongAnswer
|
ifequal 3, .WrongAnswer
|
||||||
.RightAnswer:
|
.RightAnswer:
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_6
|
||||||
iftrue .PassedTheTest
|
iftrue .PassedTheTest
|
||||||
@@ -209,7 +209,7 @@ DragonShrineElder1Script:
|
|||||||
writetext DragonShrineTakeThisDratiniText
|
writetext DragonShrineTakeThisDratiniText
|
||||||
waitbutton
|
waitbutton
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, .PartyFull
|
ifequal PARTY_LENGTH, .PartyFull
|
||||||
writetext DragonShrinePlayerReceivedDratiniText
|
writetext DragonShrinePlayerReceivedDratiniText
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
|
@@ -31,8 +31,8 @@ DragonsDenB1F_MapScripts:
|
|||||||
|
|
||||||
.CheckDay:
|
.CheckDay:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, .AppearSilver
|
ifequal TUESDAY, .AppearSilver
|
||||||
if_equal THURSDAY, .AppearSilver
|
ifequal THURSDAY, .AppearSilver
|
||||||
disappear DRAGONSDENB1F_SILVER
|
disappear DRAGONSDENB1F_SILVER
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -85,7 +85,7 @@ TrainerCooltrainermDarin:
|
|||||||
trainer COOLTRAINERM, DARIN, EVENT_BEAT_COOLTRAINERM_DARIN, CooltrainermDarinSeenText, CooltrainermDarinBeatenText, 0, .Script
|
trainer COOLTRAINERM, DARIN, EVENT_BEAT_COOLTRAINERM_DARIN, CooltrainermDarinSeenText, CooltrainermDarinBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermDarinAfterBattleText
|
writetext CooltrainermDarinAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -96,7 +96,7 @@ TrainerCooltrainerfCara:
|
|||||||
trainer COOLTRAINERF, CARA, EVENT_BEAT_COOLTRAINERF_CARA, CooltrainerfCaraSeenText, CooltrainerfCaraBeatenText, 0, .Script
|
trainer COOLTRAINERF, CARA, EVENT_BEAT_COOLTRAINERF_CARA, CooltrainerfCaraSeenText, CooltrainerfCaraBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfCaraAfterBattleText
|
writetext CooltrainerfCaraAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -107,7 +107,7 @@ TrainerTwinsLeaandpia1:
|
|||||||
trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia1SeenText, TwinsLeaandpia1BeatenText, 0, .Script
|
trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia1SeenText, TwinsLeaandpia1BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsLeaandpia1AfterBattleText
|
writetext TwinsLeaandpia1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -118,7 +118,7 @@ TrainerTwinsLeaandpia2:
|
|||||||
trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia2SeenText, TwinsLeaandpia2BeatenText, 0, .Script
|
trainer TWINS, LEAANDPIA1, EVENT_BEAT_TWINS_LEA_AND_PIA, TwinsLeaandpia2SeenText, TwinsLeaandpia2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsLeaandpia2AfterBattleText
|
writetext TwinsLeaandpia2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -67,11 +67,11 @@ AcademyBlackboard:
|
|||||||
loadmenuheader .BlackboardMenuHeader
|
loadmenuheader .BlackboardMenuHeader
|
||||||
_2dmenu
|
_2dmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .Poison
|
ifequal 1, .Poison
|
||||||
if_equal 2, .Paralysis
|
ifequal 2, .Paralysis
|
||||||
if_equal 3, .Sleep
|
ifequal 3, .Sleep
|
||||||
if_equal 4, .Burn
|
ifequal 4, .Burn
|
||||||
if_equal 5, .Freeze
|
ifequal 5, .Freeze
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@@ -69,8 +69,8 @@ MortyScript_0x99d58:
|
|||||||
end
|
end
|
||||||
|
|
||||||
EcruteakGymActivateRockets:
|
EcruteakGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
@@ -99,7 +99,7 @@ TrainerSageJeffrey:
|
|||||||
trainer SAGE, JEFFREY, EVENT_BEAT_SAGE_JEFFREY, SageJeffreySeenText, SageJeffreyBeatenText, 0, .Script
|
trainer SAGE, JEFFREY, EVENT_BEAT_SAGE_JEFFREY, SageJeffreySeenText, SageJeffreyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SageJeffreyAfterBattleText
|
writetext SageJeffreyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -110,7 +110,7 @@ TrainerSagePing:
|
|||||||
trainer SAGE, PING, EVENT_BEAT_SAGE_PING, SagePingSeenText, SagePingBeatenText, 0, .Script
|
trainer SAGE, PING, EVENT_BEAT_SAGE_PING, SagePingSeenText, SagePingBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SagePingAfterBattleText
|
writetext SagePingAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -121,7 +121,7 @@ TrainerMediumMartha:
|
|||||||
trainer MEDIUM, MARTHA, EVENT_BEAT_MEDIUM_MARTHA, MediumMarthaSeenText, MediumMarthaBeatenText, 0, .Script
|
trainer MEDIUM, MARTHA, EVENT_BEAT_MEDIUM_MARTHA, MediumMarthaSeenText, MediumMarthaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext MediumMarthaAfterBattleText
|
writetext MediumMarthaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -132,7 +132,7 @@ TrainerMediumGrace:
|
|||||||
trainer MEDIUM, GRACE, EVENT_BEAT_MEDIUM_GRACE, MediumGraceSeenText, MediumGraceBeatenText, 0, .Script
|
trainer MEDIUM, GRACE, EVENT_BEAT_MEDIUM_GRACE, MediumGraceSeenText, MediumGraceBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext MediumGraceAfterBattleText
|
writetext MediumGraceAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -181,7 +181,7 @@ CyndaquilPokeBallScript:
|
|||||||
givepoke CYNDAQUIL, 5, BERRY
|
givepoke CYNDAQUIL, 5, BERRY
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal RIGHT, ElmDirectionsScript
|
ifequal RIGHT, ElmDirectionsScript
|
||||||
applymovement PLAYER, AfterCyndaquilMovement
|
applymovement PLAYER, AfterCyndaquilMovement
|
||||||
jump ElmDirectionsScript
|
jump ElmDirectionsScript
|
||||||
|
|
||||||
@@ -420,19 +420,19 @@ ElmGiveTicketScript:
|
|||||||
ElmJumpBackScript1:
|
ElmJumpBackScript1:
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal DOWN, ElmJumpDownScript
|
ifequal DOWN, ElmJumpDownScript
|
||||||
if_equal UP, ElmJumpUpScript
|
ifequal UP, ElmJumpUpScript
|
||||||
if_equal LEFT, ElmJumpLeftScript
|
ifequal LEFT, ElmJumpLeftScript
|
||||||
if_equal RIGHT, ElmJumpRightScript
|
ifequal RIGHT, ElmJumpRightScript
|
||||||
end
|
end
|
||||||
|
|
||||||
ElmJumpBackScript2:
|
ElmJumpBackScript2:
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal DOWN, ElmJumpUpScript
|
ifequal DOWN, ElmJumpUpScript
|
||||||
if_equal UP, ElmJumpDownScript
|
ifequal UP, ElmJumpDownScript
|
||||||
if_equal LEFT, ElmJumpRightScript
|
ifequal LEFT, ElmJumpRightScript
|
||||||
if_equal RIGHT, ElmJumpLeftScript
|
ifequal RIGHT, ElmJumpLeftScript
|
||||||
end
|
end
|
||||||
|
|
||||||
ElmJumpUpScript:
|
ElmJumpUpScript:
|
||||||
|
@@ -88,7 +88,7 @@ SailorScript_0x75160:
|
|||||||
|
|
||||||
.LetThePlayerOut:
|
.LetThePlayerOut:
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal RIGHT, .YouAreFacingRight
|
ifequal RIGHT, .YouAreFacingRight
|
||||||
applymovement FASTSHIP1F_SAILOR1, MovementData_0x7520e
|
applymovement FASTSHIP1F_SAILOR1, MovementData_0x7520e
|
||||||
applymovement PLAYER, MovementData_0x75235
|
applymovement PLAYER, MovementData_0x75235
|
||||||
end
|
end
|
||||||
|
@@ -95,7 +95,7 @@ TrainerSailorJeff:
|
|||||||
trainer SAILOR, JEFF, EVENT_BEAT_SAILOR_JEFF, SailorJeffSeenText, SailorJeffBeatenText, 0, .Script
|
trainer SAILOR, JEFF, EVENT_BEAT_SAILOR_JEFF, SailorJeffSeenText, SailorJeffBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorJeffAfterBattleText
|
writetext SailorJeffAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -106,7 +106,7 @@ TrainerPicnickerDebra:
|
|||||||
trainer PICNICKER, DEBRA, EVENT_BEAT_PICNICKER_DEBRA, PicnickerDebraSeenText, PicnickerDebraBeatenText, 0, .Script
|
trainer PICNICKER, DEBRA, EVENT_BEAT_PICNICKER_DEBRA, PicnickerDebraSeenText, PicnickerDebraBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PicnickerDebraAfterBattleText
|
writetext PicnickerDebraAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -117,7 +117,7 @@ TrainerJugglerFritz:
|
|||||||
trainer JUGGLER, FRITZ, EVENT_BEAT_JUGGLER_FRITZ, JugglerFritzSeenText, JugglerFritzBeatenText, 0, .Script
|
trainer JUGGLER, FRITZ, EVENT_BEAT_JUGGLER_FRITZ, JugglerFritzSeenText, JugglerFritzBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext JugglerFritzAfterBattleText
|
writetext JugglerFritzAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -128,7 +128,7 @@ TrainerSailorGarrett:
|
|||||||
trainer SAILOR, GARRETT, EVENT_BEAT_SAILOR_GARRETT, SailorGarrettSeenText, SailorGarrettBeatenText, 0, .Script
|
trainer SAILOR, GARRETT, EVENT_BEAT_SAILOR_GARRETT, SailorGarrettSeenText, SailorGarrettBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorGarrettAfterBattleText
|
writetext SailorGarrettAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -139,7 +139,7 @@ TrainerFisherJonah:
|
|||||||
trainer FISHER, JONAH, EVENT_BEAT_FISHER_JONAH, FisherJonahSeenText, FisherJonahBeatenText, 0, .Script
|
trainer FISHER, JONAH, EVENT_BEAT_FISHER_JONAH, FisherJonahSeenText, FisherJonahBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherJonahAfterBattleText
|
writetext FisherJonahAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -150,7 +150,7 @@ TrainerBlackbeltWai:
|
|||||||
trainer BLACKBELT_T, WAI, EVENT_BEAT_BLACKBELT_WAI, BlackbeltWaiSeenText, BlackbeltWaiBeatenText, 0, .Script
|
trainer BLACKBELT_T, WAI, EVENT_BEAT_BLACKBELT_WAI, BlackbeltWaiSeenText, BlackbeltWaiBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BlackbeltWaiAfterBattleText
|
writetext BlackbeltWaiAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -161,7 +161,7 @@ TrainerSailorKenneth:
|
|||||||
trainer SAILOR, KENNETH, EVENT_BEAT_SAILOR_KENNETH, SailorKennethSeenText, SailorKennethBeatenText, 0, .Script
|
trainer SAILOR, KENNETH, EVENT_BEAT_SAILOR_KENNETH, SailorKennethSeenText, SailorKennethBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorKennethAfterBattleText
|
writetext SailorKennethAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -172,7 +172,7 @@ TrainerTeacherShirley:
|
|||||||
trainer TEACHER, SHIRLEY, EVENT_BEAT_TEACHER_SHIRLEY, TeacherShirleySeenText, TeacherShirleyBeatenText, 0, .Script
|
trainer TEACHER, SHIRLEY, EVENT_BEAT_TEACHER_SHIRLEY, TeacherShirleySeenText, TeacherShirleyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TeacherShirleyAfterBattleText
|
writetext TeacherShirleyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -183,7 +183,7 @@ TrainerSchoolboyNate:
|
|||||||
trainer SCHOOLBOY, NATE, EVENT_BEAT_SCHOOLBOY_NATE, SchoolboyNateSeenText, SchoolboyNateBeatenText, 0, .Script
|
trainer SCHOOLBOY, NATE, EVENT_BEAT_SCHOOLBOY_NATE, SchoolboyNateSeenText, SchoolboyNateBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyNateAfterBattleText
|
writetext SchoolboyNateAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -194,7 +194,7 @@ TrainerSchoolboyRicky:
|
|||||||
trainer SCHOOLBOY, RICKY, EVENT_BEAT_SCHOOLBOY_RICKY, SchoolboyRickySeenText, SchoolboyRickyBeatenText, 0, .Script
|
trainer SCHOOLBOY, RICKY, EVENT_BEAT_SCHOOLBOY_RICKY, SchoolboyRickySeenText, SchoolboyRickyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyRickyAfterBattleText
|
writetext SchoolboyRickyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -16,7 +16,7 @@ TrainerCooltrainermSean:
|
|||||||
trainer COOLTRAINERM, SEAN, EVENT_BEAT_COOLTRAINERM_SEAN, CooltrainermSeanSeenText, CooltrainermSeanBeatenText, 0, .Script
|
trainer COOLTRAINERM, SEAN, EVENT_BEAT_COOLTRAINERM_SEAN, CooltrainermSeanSeenText, CooltrainermSeanBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermSeanAfterBattleText
|
writetext CooltrainermSeanAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -27,7 +27,7 @@ TrainerCooltrainerfCarol:
|
|||||||
trainer COOLTRAINERF, CAROL, EVENT_BEAT_COOLTRAINERF_CAROL, CooltrainerfCarolSeenText, CooltrainerfCarolBeatenText, 0, .Script
|
trainer COOLTRAINERF, CAROL, EVENT_BEAT_COOLTRAINERF_CAROL, CooltrainerfCarolSeenText, CooltrainerfCarolBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfCarolAfterBattleText
|
writetext CooltrainerfCarolAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -38,7 +38,7 @@ TrainerPokemaniacEthan:
|
|||||||
trainer POKEMANIAC, ETHAN, EVENT_BEAT_POKEMANIAC_ETHAN, PokemaniacEthanSeenText, PokemaniacEthanBeatenText, 0, .Script
|
trainer POKEMANIAC, ETHAN, EVENT_BEAT_POKEMANIAC_ETHAN, PokemaniacEthanSeenText, PokemaniacEthanBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokemaniacEthanAfterBattleText
|
writetext PokemaniacEthanAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -49,7 +49,7 @@ TrainerHikerNoland:
|
|||||||
trainer HIKER, NOLAND, EVENT_BEAT_HIKER_NOLAND, HikerNolandSeenText, HikerNolandBeatenText, 0, .Script
|
trainer HIKER, NOLAND, EVENT_BEAT_HIKER_NOLAND, HikerNolandSeenText, HikerNolandBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext HikerNolandAfterBattleText
|
writetext HikerNolandAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -60,7 +60,7 @@ TrainerGentlemanEdward:
|
|||||||
trainer GENTLEMAN, EDWARD, EVENT_BEAT_GENTLEMAN_EDWARD, GentlemanEdwardSeenText, GentlemanEdwardBeatenText, 0, .Script
|
trainer GENTLEMAN, EDWARD, EVENT_BEAT_GENTLEMAN_EDWARD, GentlemanEdwardSeenText, GentlemanEdwardBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GentlemanEdwardAfterBattleText
|
writetext GentlemanEdwardAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -71,7 +71,7 @@ TrainerBurglarCorey:
|
|||||||
trainer BURGLAR, COREY, EVENT_BEAT_BURGLAR_COREY, BurglarCoreySeenText, BurglarCoreyBeatenText, 0, .Script
|
trainer BURGLAR, COREY, EVENT_BEAT_BURGLAR_COREY, BurglarCoreySeenText, BurglarCoreyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BurglarCoreyAfterBattleText
|
writetext BurglarCoreyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -98,7 +98,7 @@ SailorScript_0x755f1:
|
|||||||
setevent EVENT_FAST_SHIP_LAZY_SAILOR
|
setevent EVENT_FAST_SHIP_LAZY_SAILOR
|
||||||
setmapscene FAST_SHIP_B1F, SCENE_FINISHED
|
setmapscene FAST_SHIP_B1F, SCENE_FINISHED
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal RIGHT, UnknownScript_0x75629
|
ifequal RIGHT, UnknownScript_0x75629
|
||||||
applymovement FASTSHIPCABINS_NNW_NNE_NE_SAILOR, MovementData_0x75637
|
applymovement FASTSHIPCABINS_NNW_NNE_NE_SAILOR, MovementData_0x75637
|
||||||
playsound SFX_EXIT_BUILDING
|
playsound SFX_EXIT_BUILDING
|
||||||
disappear FASTSHIPCABINS_NNW_NNE_NE_SAILOR
|
disappear FASTSHIPCABINS_NNW_NNE_NE_SAILOR
|
||||||
|
@@ -142,7 +142,7 @@ TrainerPokefanmColin:
|
|||||||
trainer POKEFANM, COLIN, EVENT_BEAT_POKEFANM_COLIN, PokefanmColinSeenText, PokefanmColinBeatenText, 0, .Script
|
trainer POKEFANM, COLIN, EVENT_BEAT_POKEFANM_COLIN, PokefanmColinSeenText, PokefanmColinBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmColinAfterBattleText
|
writetext PokefanmColinAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -153,7 +153,7 @@ TrainerTwinsMegandpeg1:
|
|||||||
trainer TWINS, MEGANDPEG1, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg1SeenText, TwinsMegandpeg1BeatenText, 0, .Script
|
trainer TWINS, MEGANDPEG1, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg1SeenText, TwinsMegandpeg1BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsMegandpeg1AfterBattleText
|
writetext TwinsMegandpeg1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -164,7 +164,7 @@ TrainerTwinsMegandpeg2:
|
|||||||
trainer TWINS, MEGANDPEG2, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg2SeenText, TwinsMegandpeg2BeatenText, 0, .Script
|
trainer TWINS, MEGANDPEG2, EVENT_BEAT_TWINS_MEG_AND_PEG, TwinsMegandpeg2SeenText, TwinsMegandpeg2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TwinsMegandpeg2AfterBattleText
|
writetext TwinsMegandpeg2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -175,7 +175,7 @@ TrainerPsychicRodney:
|
|||||||
trainer PSYCHIC_T, RODNEY, EVENT_BEAT_PSYCHIC_RODNEY, PsychicRodneySeenText, PsychicRodneyBeatenText, 0, .Script
|
trainer PSYCHIC_T, RODNEY, EVENT_BEAT_PSYCHIC_RODNEY, PsychicRodneySeenText, PsychicRodneyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PsychicRodneyAfterBattleText
|
writetext PsychicRodneyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -186,7 +186,7 @@ TrainerPokefanmJeremy:
|
|||||||
trainer POKEFANM, JEREMY, EVENT_BEAT_POKEFANM_JEREMY, PokefanmJeremySeenText, PokefanmJeremyBeatenText, 0, .Script
|
trainer POKEFANM, JEREMY, EVENT_BEAT_POKEFANM_JEREMY, PokefanmJeremySeenText, PokefanmJeremyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmJeremyAfterBattleText
|
writetext PokefanmJeremyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -197,7 +197,7 @@ TrainerPokefanfGeorgia:
|
|||||||
trainer POKEFANF, GEORGIA, EVENT_BEAT_POKEFANF_GEORGIA, PokefanfGeorgiaSeenText, PokefanfGeorgiaBeatenText, 0, .Script
|
trainer POKEFANF, GEORGIA, EVENT_BEAT_POKEFANF_GEORGIA, PokefanfGeorgiaSeenText, PokefanfGeorgiaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanfGeorgiaAfterBattleText
|
writetext PokefanfGeorgiaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -208,7 +208,7 @@ TrainerSupernerdShawn:
|
|||||||
trainer SUPER_NERD, SHAWN, EVENT_BEAT_SUPER_NERD_SHAWN, SupernerdShawnSeenText, SupernerdShawnBeatenText, 0, .Script
|
trainer SUPER_NERD, SHAWN, EVENT_BEAT_SUPER_NERD_SHAWN, SupernerdShawnSeenText, SupernerdShawnBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdShawnAfterBattleText
|
writetext SupernerdShawnAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -13,7 +13,7 @@ TrainerFirebreatherLyle:
|
|||||||
trainer FIREBREATHER, LYLE, EVENT_BEAT_FIREBREATHER_LYLE, FirebreatherLyleSeenText, FirebreatherLyleBeatenText, 0, .Script
|
trainer FIREBREATHER, LYLE, EVENT_BEAT_FIREBREATHER_LYLE, FirebreatherLyleSeenText, FirebreatherLyleBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FirebreatherLyleAfterBattleText
|
writetext FirebreatherLyleAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -24,7 +24,7 @@ TrainerBugCatcherKen:
|
|||||||
trainer BUG_CATCHER, KEN, EVENT_BEAT_BUG_CATCHER_KEN, BugCatcherKenSeenText, BugCatcherKenBeatenText, 0, .Script
|
trainer BUG_CATCHER, KEN, EVENT_BEAT_BUG_CATCHER_KEN, BugCatcherKenSeenText, BugCatcherKenBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherKenAfterBattleText
|
writetext BugCatcherKenAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -35,7 +35,7 @@ TrainerBeautyCassie:
|
|||||||
trainer BEAUTY, CASSIE, EVENT_BEAT_BEAUTY_CASSIE, BeautyCassieSeenText, BeautyCassieBeatenText, 0, .Script
|
trainer BEAUTY, CASSIE, EVENT_BEAT_BEAUTY_CASSIE, BeautyCassieSeenText, BeautyCassieBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BeautyCassieAfterBattleText
|
writetext BeautyCassieAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -46,7 +46,7 @@ TrainerGuitaristClyde:
|
|||||||
trainer GUITARIST, CLYDE, EVENT_BEAT_GUITARIST_CLYDE, GuitaristClydeSeenText, GuitaristClydeBeatenText, 0, .Script
|
trainer GUITARIST, CLYDE, EVENT_BEAT_GUITARIST_CLYDE, GuitaristClydeSeenText, GuitaristClydeBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
special Mobile_DummyReturnFalse
|
special Mobile_DummyReturnFalse
|
||||||
iftrue .mobile
|
iftrue .mobile
|
||||||
opentext
|
opentext
|
||||||
|
@@ -37,8 +37,8 @@ GoldenrodCity_MapScripts:
|
|||||||
checkitem COIN_CASE
|
checkitem COIN_CASE
|
||||||
iffalse .MoveTutorDisappear
|
iffalse .MoveTutorDisappear
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal WEDNESDAY, .MoveTutorAppear
|
ifequal WEDNESDAY, .MoveTutorAppear
|
||||||
if_equal SATURDAY, .MoveTutorAppear
|
ifequal SATURDAY, .MoveTutorAppear
|
||||||
.MoveTutorDisappear:
|
.MoveTutorDisappear:
|
||||||
disappear GOLDENRODCITY_POKEFAN_M2
|
disappear GOLDENRODCITY_POKEFAN_M2
|
||||||
return
|
return
|
||||||
@@ -61,35 +61,35 @@ MoveTutorScript:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused2
|
iffalse .Refused2
|
||||||
checkcoins 4000
|
checkcoins 4000
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
writetext UnknownText_0x1990ce
|
writetext UnknownText_0x1990ce
|
||||||
loadmenuheader .MoveMenuHeader
|
loadmenuheader .MoveMenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal MOVETUTOR_FLAMETHROWER, .Flamethrower
|
ifequal MOVETUTOR_FLAMETHROWER, .Flamethrower
|
||||||
if_equal MOVETUTOR_THUNDERBOLT, .Thunderbolt
|
ifequal MOVETUTOR_THUNDERBOLT, .Thunderbolt
|
||||||
if_equal MOVETUTOR_ICE_BEAM, .IceBeam
|
ifequal MOVETUTOR_ICE_BEAM, .IceBeam
|
||||||
jump .Incompatible
|
jump .Incompatible
|
||||||
|
|
||||||
.Flamethrower:
|
.Flamethrower:
|
||||||
writebyte MOVETUTOR_FLAMETHROWER
|
writebyte MOVETUTOR_FLAMETHROWER
|
||||||
writetext UnknownText_0x1991cf
|
writetext UnknownText_0x1991cf
|
||||||
special MoveTutor
|
special MoveTutor
|
||||||
if_equal FALSE, .TeachMove
|
ifequal FALSE, .TeachMove
|
||||||
jump .Incompatible
|
jump .Incompatible
|
||||||
|
|
||||||
.Thunderbolt:
|
.Thunderbolt:
|
||||||
writebyte MOVETUTOR_THUNDERBOLT
|
writebyte MOVETUTOR_THUNDERBOLT
|
||||||
writetext UnknownText_0x1991cf
|
writetext UnknownText_0x1991cf
|
||||||
special MoveTutor
|
special MoveTutor
|
||||||
if_equal FALSE, .TeachMove
|
ifequal FALSE, .TeachMove
|
||||||
jump .Incompatible
|
jump .Incompatible
|
||||||
|
|
||||||
.IceBeam:
|
.IceBeam:
|
||||||
writebyte MOVETUTOR_ICE_BEAM
|
writebyte MOVETUTOR_ICE_BEAM
|
||||||
writetext UnknownText_0x1991cf
|
writetext UnknownText_0x1991cf
|
||||||
special MoveTutor
|
special MoveTutor
|
||||||
if_equal FALSE, .TeachMove
|
ifequal FALSE, .TeachMove
|
||||||
jump .Incompatible
|
jump .Incompatible
|
||||||
|
|
||||||
.MoveMenuHeader:
|
.MoveMenuHeader:
|
||||||
@@ -129,7 +129,7 @@ MoveTutorScript:
|
|||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal LEFT, .WalkAroundPlayer
|
ifequal LEFT, .WalkAroundPlayer
|
||||||
applymovement GOLDENRODCITY_POKEFAN_M2, MovementData_0x198a5f
|
applymovement GOLDENRODCITY_POKEFAN_M2, MovementData_0x198a5f
|
||||||
jump .GoInside
|
jump .GoInside
|
||||||
|
|
||||||
|
@@ -14,7 +14,7 @@ GoldenrodDeptStore5F_MapScripts:
|
|||||||
|
|
||||||
.CheckIfSunday:
|
.CheckIfSunday:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, .yes
|
ifequal SUNDAY, .yes
|
||||||
disappear GOLDENRODDEPTSTORE5F_RECEPTIONIST
|
disappear GOLDENRODDEPTSTORE5F_RECEPTIONIST
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -60,14 +60,14 @@ ReceptionistScript_0x560ce:
|
|||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal SUNDAY, .EventIsOver
|
ifnotequal SUNDAY, .EventIsOver
|
||||||
checkflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN
|
checkflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN
|
||||||
iftrue .EventIsOver
|
iftrue .EventIsOver
|
||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
writetext UnknownText_0x56143
|
writetext UnknownText_0x56143
|
||||||
buttonsound
|
buttonsound
|
||||||
if_greater_than 150 - 1, .VeryHappy
|
ifgreater 150 - 1, .VeryHappy
|
||||||
if_greater_than 50 - 1, .SomewhatHappy
|
ifgreater 50 - 1, .SomewhatHappy
|
||||||
jump .NotVeryHappy
|
jump .NotVeryHappy
|
||||||
|
|
||||||
.VeryHappy:
|
.VeryHappy:
|
||||||
@@ -105,7 +105,7 @@ Carrie:
|
|||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
special GameboyCheck
|
special GameboyCheck
|
||||||
if_not_equal GBCHECK_CGB, .NotGBC ; This is a dummy check from Gold/Silver
|
ifnotequal GBCHECK_CGB, .NotGBC ; This is a dummy check from Gold/Silver
|
||||||
writetext UnknownText_0x56241
|
writetext UnknownText_0x56241
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@@ -15,15 +15,15 @@ GoldenrodVendingMachine:
|
|||||||
loadmenuheader .MenuHeader
|
loadmenuheader .MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .FreshWater
|
ifequal 1, .FreshWater
|
||||||
if_equal 2, .SodaPop
|
ifequal 2, .SodaPop
|
||||||
if_equal 3, .Lemonade
|
ifequal 3, .Lemonade
|
||||||
closetext
|
closetext
|
||||||
end
|
end
|
||||||
|
|
||||||
.FreshWater:
|
.FreshWater:
|
||||||
checkmoney YOUR_MONEY, 200
|
checkmoney YOUR_MONEY, 200
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem FRESH_WATER
|
giveitem FRESH_WATER
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 200
|
takemoney YOUR_MONEY, 200
|
||||||
@@ -32,7 +32,7 @@ GoldenrodVendingMachine:
|
|||||||
|
|
||||||
.SodaPop:
|
.SodaPop:
|
||||||
checkmoney YOUR_MONEY, 300
|
checkmoney YOUR_MONEY, 300
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem SODA_POP
|
giveitem SODA_POP
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 300
|
takemoney YOUR_MONEY, 300
|
||||||
@@ -41,7 +41,7 @@ GoldenrodVendingMachine:
|
|||||||
|
|
||||||
.Lemonade:
|
.Lemonade:
|
||||||
checkmoney YOUR_MONEY, 350
|
checkmoney YOUR_MONEY, 350
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
giveitem LEMONADE
|
giveitem LEMONADE
|
||||||
iffalse .NotEnoughSpace
|
iffalse .NotEnoughSpace
|
||||||
takemoney YOUR_MONEY, 350
|
takemoney YOUR_MONEY, 350
|
||||||
|
@@ -24,8 +24,8 @@ GoldenrodGameCorner_MapScripts:
|
|||||||
checkitem COIN_CASE
|
checkitem COIN_CASE
|
||||||
iffalse .move_tutor_inside
|
iffalse .move_tutor_inside
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal WEDNESDAY, .move_tutor_outside
|
ifequal WEDNESDAY, .move_tutor_outside
|
||||||
if_equal SATURDAY, .move_tutor_outside
|
ifequal SATURDAY, .move_tutor_outside
|
||||||
.move_tutor_inside
|
.move_tutor_inside
|
||||||
appear GOLDENRODGAMECORNER_POKEFAN_M3
|
appear GOLDENRODGAMECORNER_POKEFAN_M3
|
||||||
return
|
return
|
||||||
@@ -62,14 +62,14 @@ GoldenrodGmeCornerTMVendor_LoopScript: ; 056c36
|
|||||||
loadmenuheader GoldenrodGameCornerTMVendorMenuHeader
|
loadmenuheader GoldenrodGameCornerTMVendorMenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .Thunder
|
ifequal 1, .Thunder
|
||||||
if_equal 2, .Blizzard
|
ifequal 2, .Blizzard
|
||||||
if_equal 3, .FireBlast
|
ifequal 3, .FireBlast
|
||||||
jump GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
jump GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
|
|
||||||
.Thunder:
|
.Thunder:
|
||||||
checkcoins 5500
|
checkcoins 5500
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
itemtotext TM_THUNDER, MEM_BUFFER_0
|
itemtotext TM_THUNDER, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -80,7 +80,7 @@ GoldenrodGmeCornerTMVendor_LoopScript: ; 056c36
|
|||||||
|
|
||||||
.Blizzard:
|
.Blizzard:
|
||||||
checkcoins 5500
|
checkcoins 5500
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
itemtotext TM_BLIZZARD, MEM_BUFFER_0
|
itemtotext TM_BLIZZARD, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -91,7 +91,7 @@ GoldenrodGmeCornerTMVendor_LoopScript: ; 056c36
|
|||||||
|
|
||||||
.FireBlast:
|
.FireBlast:
|
||||||
checkcoins 5500
|
checkcoins 5500
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
itemtotext TM_FIRE_BLAST, MEM_BUFFER_0
|
itemtotext TM_FIRE_BLAST, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -163,16 +163,16 @@ GoldenrodGameCornerPrizeMonVendorScript:
|
|||||||
loadmenuheader .MenuHeader
|
loadmenuheader .MenuHeader
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, .abra
|
ifequal 1, .abra
|
||||||
if_equal 2, .cubone
|
ifequal 2, .cubone
|
||||||
if_equal 3, .wobbuffet
|
ifequal 3, .wobbuffet
|
||||||
jump GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
jump GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
|
|
||||||
.abra
|
.abra
|
||||||
checkcoins 100
|
checkcoins 100
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
ifequal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
||||||
pokenamemem ABRA, MEM_BUFFER_0
|
pokenamemem ABRA, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -188,9 +188,9 @@ GoldenrodGameCornerPrizeMonVendorScript:
|
|||||||
|
|
||||||
.cubone
|
.cubone
|
||||||
checkcoins 800
|
checkcoins 800
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
ifequal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
||||||
pokenamemem CUBONE, MEM_BUFFER_0
|
pokenamemem CUBONE, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -206,9 +206,9 @@ GoldenrodGameCornerPrizeMonVendorScript:
|
|||||||
|
|
||||||
.wobbuffet
|
.wobbuffet
|
||||||
checkcoins 1500
|
checkcoins 1500
|
||||||
if_equal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
ifequal HAVE_LESS, GoldenrodGameCornerPrizeVendor_NotEnoughCoinsScript
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
ifequal PARTY_LENGTH, GoldenrodGameCornerPrizeMonVendor_NoRoomForPrizeScript
|
||||||
pokenamemem WOBBUFFET, MEM_BUFFER_0
|
pokenamemem WOBBUFFET, MEM_BUFFER_0
|
||||||
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
scall GoldenrodGameCornerPrizeVendor_ConfirmPurchaseScript
|
||||||
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
iffalse GoldenrodGameCornerPrizeVendor_CancelPurchaseScript
|
||||||
@@ -292,7 +292,7 @@ GoldenrodGameCornerLeftTheirDrinkScript:
|
|||||||
|
|
||||||
GoldenrodGameCornerSlotsMachineScript:
|
GoldenrodGameCornerSlotsMachineScript:
|
||||||
random 6
|
random 6
|
||||||
if_equal 0, GoldenrodGameCornerLuckySlotsMachineScript
|
ifequal 0, GoldenrodGameCornerLuckySlotsMachineScript
|
||||||
refreshscreen
|
refreshscreen
|
||||||
writebyte FALSE
|
writebyte FALSE
|
||||||
special SlotMachine
|
special SlotMachine
|
||||||
|
@@ -80,8 +80,8 @@ UnknownScript_0x5407b:
|
|||||||
end
|
end
|
||||||
|
|
||||||
GoldenrodGymActivateRockets:
|
GoldenrodGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
@@ -94,7 +94,7 @@ TrainerLassCarrie:
|
|||||||
trainer LASS, CARRIE, EVENT_BEAT_LASS_CARRIE, LassCarrieSeenText, LassCarrieBeatenText, 0, .Script
|
trainer LASS, CARRIE, EVENT_BEAT_LASS_CARRIE, LassCarrieSeenText, LassCarrieBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassCarrieAfterBattleText
|
writetext LassCarrieAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -118,7 +118,7 @@ TrainerLassBridget:
|
|||||||
trainer LASS, BRIDGET, EVENT_BEAT_LASS_BRIDGET, LassBridgetSeenText, LassBridgetBeatenText, 0, .Script
|
trainer LASS, BRIDGET, EVENT_BEAT_LASS_BRIDGET, LassBridgetSeenText, LassBridgetBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassBridgetAfterBattleText
|
writetext LassBridgetAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -129,7 +129,7 @@ TrainerBeautyVictoria:
|
|||||||
trainer BEAUTY, VICTORIA, EVENT_BEAT_BEAUTY_VICTORIA, BeautyVictoriaSeenText, BeautyVictoriaBeatenText, 0, .Script
|
trainer BEAUTY, VICTORIA, EVENT_BEAT_BEAUTY_VICTORIA, BeautyVictoriaSeenText, BeautyVictoriaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BeautyVictoriaAfterBattleText
|
writetext BeautyVictoriaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -140,7 +140,7 @@ TrainerBeautySamantha:
|
|||||||
trainer BEAUTY, SAMANTHA, EVENT_BEAT_BEAUTY_SAMANTHA, BeautySamanthaSeenText, BeautySamanthaBeatenText, 0, .Script
|
trainer BEAUTY, SAMANTHA, EVENT_BEAT_BEAUTY_SAMANTHA, BeautySamanthaSeenText, BeautySamanthaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BeautySamanthaAfterBattleText
|
writetext BeautySamanthaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -14,11 +14,11 @@ TeacherScript_0x54953:
|
|||||||
special GetFirstPokemonHappiness
|
special GetFirstPokemonHappiness
|
||||||
writetext UnknownText_0x549a3
|
writetext UnknownText_0x549a3
|
||||||
buttonsound
|
buttonsound
|
||||||
if_greater_than 250 - 1, UnknownScript_0x54973
|
ifgreater 250 - 1, UnknownScript_0x54973
|
||||||
if_greater_than 200 - 1, UnknownScript_0x54979
|
ifgreater 200 - 1, UnknownScript_0x54979
|
||||||
if_greater_than 150 - 1, UnknownScript_0x5497f
|
ifgreater 150 - 1, UnknownScript_0x5497f
|
||||||
if_greater_than 100 - 1, UnknownScript_0x54985
|
ifgreater 100 - 1, UnknownScript_0x54985
|
||||||
if_greater_than 50 - 1, UnknownScript_0x5498b
|
ifgreater 50 - 1, UnknownScript_0x5498b
|
||||||
jump UnknownScript_0x54991
|
jump UnknownScript_0x54991
|
||||||
|
|
||||||
UnknownScript_0x54973:
|
UnknownScript_0x54973:
|
||||||
|
@@ -16,7 +16,7 @@ NurseScript_0x60f91:
|
|||||||
GoldenrodPokecenter1F_GSBallSceneLeft:
|
GoldenrodPokecenter1F_GSBallSceneLeft:
|
||||||
writebyte BATTLETOWERACTION_CHECKMOBILEEVENT
|
writebyte BATTLETOWERACTION_CHECKMOBILEEVENT
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
ifequal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
||||||
end
|
end
|
||||||
|
|
||||||
.gsball
|
.gsball
|
||||||
@@ -48,7 +48,7 @@ GoldenrodPokecenter1F_GSBallSceneLeft:
|
|||||||
GoldenrodPokecenter1F_GSBallSceneRight:
|
GoldenrodPokecenter1F_GSBallSceneRight:
|
||||||
writebyte BATTLETOWERACTION_CHECKMOBILEEVENT
|
writebyte BATTLETOWERACTION_CHECKMOBILEEVENT
|
||||||
special BattleTowerAction
|
special BattleTowerAction
|
||||||
if_equal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
ifequal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
||||||
end
|
end
|
||||||
|
|
||||||
.gsball
|
.gsball
|
||||||
|
@@ -48,12 +48,12 @@ GoldenrodUnderground_MapScripts:
|
|||||||
|
|
||||||
.CheckDayOfWeek:
|
.CheckDayOfWeek:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal MONDAY, .Monday
|
ifequal MONDAY, .Monday
|
||||||
if_equal TUESDAY, .Tuesday
|
ifequal TUESDAY, .Tuesday
|
||||||
if_equal WEDNESDAY, .Wednesday
|
ifequal WEDNESDAY, .Wednesday
|
||||||
if_equal THURSDAY, .Thursday
|
ifequal THURSDAY, .Thursday
|
||||||
if_equal FRIDAY, .Friday
|
ifequal FRIDAY, .Friday
|
||||||
if_equal SATURDAY, .Saturday
|
ifequal SATURDAY, .Saturday
|
||||||
|
|
||||||
.Sunday:
|
.Sunday:
|
||||||
disappear GOLDENRODUNDERGROUND_GRAMPS
|
disappear GOLDENRODUNDERGROUND_GRAMPS
|
||||||
@@ -112,7 +112,7 @@ TrainerSupernerdEric:
|
|||||||
trainer SUPER_NERD, ERIC, EVENT_BEAT_SUPER_NERD_ERIC, SupernerdEricSeenText, SupernerdEricBeatenText, 0, .Script
|
trainer SUPER_NERD, ERIC, EVENT_BEAT_SUPER_NERD_ERIC, SupernerdEricSeenText, SupernerdEricBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdEricAfterBattleText
|
writetext SupernerdEricAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -123,7 +123,7 @@ TrainerSupernerdTeru:
|
|||||||
trainer SUPER_NERD, TERU, EVENT_BEAT_SUPER_NERD_TERU, SupernerdTeruSeenText, SupernerdTeruBeatenText, 0, .Script
|
trainer SUPER_NERD, TERU, EVENT_BEAT_SUPER_NERD_TERU, SupernerdTeruSeenText, SupernerdTeruBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdTeruAfterBattleText
|
writetext SupernerdTeruAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -134,7 +134,7 @@ TrainerPokemaniacIssac:
|
|||||||
trainer POKEMANIAC, ISSAC, EVENT_BEAT_POKEMANIAC_ISSAC, PokemaniacIssacSeenText, PokemaniacIssacBeatenText, 0, .Script
|
trainer POKEMANIAC, ISSAC, EVENT_BEAT_POKEMANIAC_ISSAC, PokemaniacIssacSeenText, PokemaniacIssacBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokemaniacIssacAfterBattleText
|
writetext PokemaniacIssacAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -145,7 +145,7 @@ TrainerPokemaniacDonald:
|
|||||||
trainer POKEMANIAC, DONALD, EVENT_BEAT_POKEMANIAC_DONALD, PokemaniacDonaldSeenText, PokemaniacDonaldBeatenText, 0, .Script
|
trainer POKEMANIAC, DONALD, EVENT_BEAT_POKEMANIAC_DONALD, PokemaniacDonaldSeenText, PokemaniacDonaldBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokemaniacDonaldAfterBattleText
|
writetext PokemaniacDonaldAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -155,8 +155,8 @@ TrainerPokemaniacDonald:
|
|||||||
GrannyScript_0x7c132:
|
GrannyScript_0x7c132:
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, .Open
|
ifequal SUNDAY, .Open
|
||||||
if_equal SATURDAY, .Open
|
ifequal SATURDAY, .Open
|
||||||
jump GoldenrodUndergroundScript_ShopClosed
|
jump GoldenrodUndergroundScript_ShopClosed
|
||||||
|
|
||||||
.Open:
|
.Open:
|
||||||
@@ -169,7 +169,7 @@ GrampsScript_0x7c146:
|
|||||||
checkflag ENGINE_GOLDENROD_UNDERGROUND_MERCHANT_CLOSED
|
checkflag ENGINE_GOLDENROD_UNDERGROUND_MERCHANT_CLOSED
|
||||||
iftrue GoldenrodUndergroundScript_ShopClosed
|
iftrue GoldenrodUndergroundScript_ShopClosed
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal MONDAY, .CheckMorn
|
ifequal MONDAY, .CheckMorn
|
||||||
jump GoldenrodUndergroundScript_ShopClosed
|
jump GoldenrodUndergroundScript_ShopClosed
|
||||||
|
|
||||||
.CheckMorn:
|
.CheckMorn:
|
||||||
@@ -182,9 +182,9 @@ GrampsScript_0x7c146:
|
|||||||
OlderHaircutBrotherScript:
|
OlderHaircutBrotherScript:
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal TUESDAY, .DoHaircut
|
ifequal TUESDAY, .DoHaircut
|
||||||
if_equal THURSDAY, .DoHaircut
|
ifequal THURSDAY, .DoHaircut
|
||||||
if_equal SATURDAY, .DoHaircut
|
ifequal SATURDAY, .DoHaircut
|
||||||
jump GoldenrodUndergroundScript_ShopClosed
|
jump GoldenrodUndergroundScript_ShopClosed
|
||||||
|
|
||||||
.DoHaircut:
|
.DoHaircut:
|
||||||
@@ -195,15 +195,15 @@ OlderHaircutBrotherScript:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
checkmoney YOUR_MONEY, 500
|
checkmoney YOUR_MONEY, 500
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
writetext UnknownText_0x7c69a
|
writetext UnknownText_0x7c69a
|
||||||
buttonsound
|
buttonsound
|
||||||
special YoungerHaircutBrother
|
special YoungerHaircutBrother
|
||||||
if_equal $0, .Refused
|
ifequal $0, .Refused
|
||||||
if_equal $1, .Refused
|
ifequal $1, .Refused
|
||||||
setflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
|
setflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
|
||||||
if_equal $2, .two
|
ifequal $2, .two
|
||||||
if_equal $3, .three
|
ifequal $3, .three
|
||||||
jump .else
|
jump .else
|
||||||
|
|
||||||
.two
|
.two
|
||||||
@@ -265,9 +265,9 @@ OlderHaircutBrotherScript:
|
|||||||
YoungerHaircutBrotherScript:
|
YoungerHaircutBrotherScript:
|
||||||
opentext
|
opentext
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, .DoHaircut
|
ifequal SUNDAY, .DoHaircut
|
||||||
if_equal WEDNESDAY, .DoHaircut
|
ifequal WEDNESDAY, .DoHaircut
|
||||||
if_equal FRIDAY, .DoHaircut
|
ifequal FRIDAY, .DoHaircut
|
||||||
jump GoldenrodUndergroundScript_ShopClosed
|
jump GoldenrodUndergroundScript_ShopClosed
|
||||||
|
|
||||||
.DoHaircut:
|
.DoHaircut:
|
||||||
@@ -278,15 +278,15 @@ YoungerHaircutBrotherScript:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .Refused
|
iffalse .Refused
|
||||||
checkmoney YOUR_MONEY, 300
|
checkmoney YOUR_MONEY, 300
|
||||||
if_equal HAVE_LESS, .NotEnoughMoney
|
ifequal HAVE_LESS, .NotEnoughMoney
|
||||||
writetext UnknownText_0x7c7f1
|
writetext UnknownText_0x7c7f1
|
||||||
buttonsound
|
buttonsound
|
||||||
special OlderHaircutBrother
|
special OlderHaircutBrother
|
||||||
if_equal $0, .Refused
|
ifequal $0, .Refused
|
||||||
if_equal $1, .Refused
|
ifequal $1, .Refused
|
||||||
setflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
|
setflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
|
||||||
if_equal $2, .two
|
ifequal $2, .two
|
||||||
if_equal $3, .three
|
ifequal $3, .three
|
||||||
jump .else
|
jump .else
|
||||||
|
|
||||||
.two
|
.two
|
||||||
|
@@ -208,7 +208,7 @@ TrainerGruntM11:
|
|||||||
trainer GRUNTM, GRUNTM_11, EVENT_BEAT_ROCKET_GRUNTM_11, GruntM11SeenText, GruntM11BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_11, EVENT_BEAT_ROCKET_GRUNTM_11, GruntM11SeenText, GruntM11BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM11AfterBattleText
|
writetext GruntM11AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -219,7 +219,7 @@ TrainerGruntM25:
|
|||||||
trainer GRUNTM, GRUNTM_25, EVENT_BEAT_ROCKET_GRUNTM_25, GruntM25SeenText, GruntM25BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_25, EVENT_BEAT_ROCKET_GRUNTM_25, GruntM25SeenText, GruntM25BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM25AfterBattleText
|
writetext GruntM25AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -230,7 +230,7 @@ TrainerBurglarDuncan:
|
|||||||
trainer BURGLAR, DUNCAN, EVENT_BEAT_BURGLAR_DUNCAN, BurglarDuncanSeenText, BurglarDuncanBeatenText, 0, .Script
|
trainer BURGLAR, DUNCAN, EVENT_BEAT_BURGLAR_DUNCAN, BurglarDuncanSeenText, BurglarDuncanBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BurglarDuncanAfterBattleText
|
writetext BurglarDuncanAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -241,7 +241,7 @@ TrainerBurglarEddie:
|
|||||||
trainer BURGLAR, EDDIE, EVENT_BEAT_BURGLAR_EDDIE, BurglarEddieSeenText, BurglarEddieBeatenText, 0, .Script
|
trainer BURGLAR, EDDIE, EVENT_BEAT_BURGLAR_EDDIE, BurglarEddieSeenText, BurglarEddieBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BurglarEddieAfterBattleText
|
writetext BurglarEddieAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -252,7 +252,7 @@ TrainerGruntM13:
|
|||||||
trainer GRUNTM, GRUNTM_13, EVENT_BEAT_ROCKET_GRUNTM_13, GruntM13SeenText, GruntM13BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_13, EVENT_BEAT_ROCKET_GRUNTM_13, GruntM13SeenText, GruntM13BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM13AfterBattleText
|
writetext GruntM13AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -263,7 +263,7 @@ TrainerGruntF3:
|
|||||||
trainer GRUNTF, GRUNTF_3, EVENT_BEAT_ROCKET_GRUNTF_3, GruntF3SeenText, GruntF3BeatenText, 0, .Script
|
trainer GRUNTF, GRUNTF_3, EVENT_BEAT_ROCKET_GRUNTF_3, GruntF3SeenText, GruntF3BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntF3AfterBattleText
|
writetext GruntF3AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -380,14 +380,14 @@ GoldenrodUndergroundSwitchRoomEntrances_DontToggle:
|
|||||||
|
|
||||||
GoldenrodUndergroundSwitchRoomEntrances_UpdateDoors:
|
GoldenrodUndergroundSwitchRoomEntrances_UpdateDoors:
|
||||||
copybytetovar UndergroundSwitchPositions
|
copybytetovar UndergroundSwitchPositions
|
||||||
if_equal 0, .Position0
|
ifequal 0, .Position0
|
||||||
if_equal 1, .Position1
|
ifequal 1, .Position1
|
||||||
if_equal 2, .Position2
|
ifequal 2, .Position2
|
||||||
if_equal 3, .Position3
|
ifequal 3, .Position3
|
||||||
if_equal 4, .Position4
|
ifequal 4, .Position4
|
||||||
if_equal 5, .Position5
|
ifequal 5, .Position5
|
||||||
if_equal 6, .Position6
|
ifequal 6, .Position6
|
||||||
if_equal 7, .EmergencyPosition
|
ifequal 7, .EmergencyPosition
|
||||||
.Position0:
|
.Position0:
|
||||||
playsound SFX_ENTER_DOOR
|
playsound SFX_ENTER_DOOR
|
||||||
scall .Clear4
|
scall .Clear4
|
||||||
|
@@ -37,7 +37,7 @@ TrainerGruntM24:
|
|||||||
trainer GRUNTM, GRUNTM_24, EVENT_BEAT_ROCKET_GRUNTM_24, GruntM24SeenText, GruntM24BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_24, EVENT_BEAT_ROCKET_GRUNTM_24, GruntM24SeenText, GruntM24BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM24AfterBattleText
|
writetext GruntM24AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -48,7 +48,7 @@ TrainerGruntM14:
|
|||||||
trainer GRUNTM, GRUNTM_14, EVENT_BEAT_ROCKET_GRUNTM_14, GruntM14SeenText, GruntM14BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_14, EVENT_BEAT_ROCKET_GRUNTM_14, GruntM14SeenText, GruntM14BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM14AfterBattleText
|
writetext GruntM14AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -59,7 +59,7 @@ TrainerGruntM15:
|
|||||||
trainer GRUNTM, GRUNTM_15, EVENT_BEAT_ROCKET_GRUNTM_15, GruntM15SeenText, GruntM15BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_15, EVENT_BEAT_ROCKET_GRUNTM_15, GruntM15SeenText, GruntM15BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM15AfterBattleText
|
writetext GruntM15AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -21,16 +21,16 @@ IlexForest_MapScripts:
|
|||||||
checkevent EVENT_GOT_HM01_CUT
|
checkevent EVENT_GOT_HM01_CUT
|
||||||
iftrue .Static
|
iftrue .Static
|
||||||
copybytetovar FarfetchdPosition
|
copybytetovar FarfetchdPosition
|
||||||
if_equal 1, .PositionOne
|
ifequal 1, .PositionOne
|
||||||
if_equal 2, .PositionTwo
|
ifequal 2, .PositionTwo
|
||||||
if_equal 3, .PositionThree
|
ifequal 3, .PositionThree
|
||||||
if_equal 4, .PositionFour
|
ifequal 4, .PositionFour
|
||||||
if_equal 5, .PositionFive
|
ifequal 5, .PositionFive
|
||||||
if_equal 6, .PositionSix
|
ifequal 6, .PositionSix
|
||||||
if_equal 7, .PositionSeven
|
ifequal 7, .PositionSeven
|
||||||
if_equal 8, .PositionEight
|
ifequal 8, .PositionEight
|
||||||
if_equal 9, .PositionNine
|
ifequal 9, .PositionNine
|
||||||
if_equal 10, .PositionTen
|
ifequal 10, .PositionTen
|
||||||
.Static:
|
.Static:
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -102,16 +102,16 @@ IlexForestCharcoalApprenticeScript:
|
|||||||
|
|
||||||
IlexForestFarfetchdScript:
|
IlexForestFarfetchdScript:
|
||||||
copybytetovar FarfetchdPosition
|
copybytetovar FarfetchdPosition
|
||||||
if_equal 1, .Position1
|
ifequal 1, .Position1
|
||||||
if_equal 2, .Position2
|
ifequal 2, .Position2
|
||||||
if_equal 3, .Position3
|
ifequal 3, .Position3
|
||||||
if_equal 4, .Position4
|
ifequal 4, .Position4
|
||||||
if_equal 5, .Position5
|
ifequal 5, .Position5
|
||||||
if_equal 6, .Position6
|
ifequal 6, .Position6
|
||||||
if_equal 7, .Position7
|
ifequal 7, .Position7
|
||||||
if_equal 8, .Position8
|
ifequal 8, .Position8
|
||||||
if_equal 9, .Position9
|
ifequal 9, .Position9
|
||||||
if_equal 10, .Position10
|
ifequal 10, .Position10
|
||||||
|
|
||||||
.Position1:
|
.Position1:
|
||||||
faceplayer
|
faceplayer
|
||||||
@@ -131,7 +131,7 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position2:
|
.Position2:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal DOWN, .Position2_Down
|
ifequal DOWN, .Position2_Down
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos2_Pos3
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos2_Pos3
|
||||||
moveobject ILEXFOREST_FARFETCHD, 20, 24
|
moveobject ILEXFOREST_FARFETCHD, 20, 24
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -149,7 +149,7 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position3:
|
.Position3:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal LEFT, .Position3_Left
|
ifequal LEFT, .Position3_Left
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos3_Pos4
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos3_Pos4
|
||||||
moveobject ILEXFOREST_FARFETCHD, 29, 22
|
moveobject ILEXFOREST_FARFETCHD, 29, 22
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -167,7 +167,7 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position4:
|
.Position4:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal UP, .Position4_Up
|
ifequal UP, .Position4_Up
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos4_Pos5
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos4_Pos5
|
||||||
moveobject ILEXFOREST_FARFETCHD, 28, 31
|
moveobject ILEXFOREST_FARFETCHD, 28, 31
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -185,9 +185,9 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position5:
|
.Position5:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal UP, .Position5_Up
|
ifequal UP, .Position5_Up
|
||||||
if_equal LEFT, .Position5_Left
|
ifequal LEFT, .Position5_Left
|
||||||
if_equal RIGHT, .Position5_Right
|
ifequal RIGHT, .Position5_Right
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos5_Pos6
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetchd_Pos5_Pos6
|
||||||
moveobject ILEXFOREST_FARFETCHD, 24, 35
|
moveobject ILEXFOREST_FARFETCHD, 24, 35
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -221,7 +221,7 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position6:
|
.Position6:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal RIGHT, .Position6_Right
|
ifequal RIGHT, .Position6_Right
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos6_Pos7
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos6_Pos7
|
||||||
moveobject ILEXFOREST_FARFETCHD, 22, 31
|
moveobject ILEXFOREST_FARFETCHD, 22, 31
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -239,8 +239,8 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position7:
|
.Position7:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal DOWN, .Position7_Down
|
ifequal DOWN, .Position7_Down
|
||||||
if_equal LEFT, .Position7_Left
|
ifequal LEFT, .Position7_Left
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos7_Pos8
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos7_Pos8
|
||||||
moveobject ILEXFOREST_FARFETCHD, 15, 29
|
moveobject ILEXFOREST_FARFETCHD, 15, 29
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -266,9 +266,9 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position8:
|
.Position8:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal UP, .Position8_Up
|
ifequal UP, .Position8_Up
|
||||||
if_equal LEFT, .Position8_Left
|
ifequal LEFT, .Position8_Left
|
||||||
if_equal RIGHT, .Position8_Right
|
ifequal RIGHT, .Position8_Right
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos8_Pos9
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos8_Pos9
|
||||||
moveobject ILEXFOREST_FARFETCHD, 10, 35
|
moveobject ILEXFOREST_FARFETCHD, 10, 35
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -295,8 +295,8 @@ IlexForestFarfetchdScript:
|
|||||||
|
|
||||||
.Position9:
|
.Position9:
|
||||||
scall .CryAndCheckFacing
|
scall .CryAndCheckFacing
|
||||||
if_equal DOWN, .Position9_Down
|
ifequal DOWN, .Position9_Down
|
||||||
if_equal RIGHT, .Position9_Right
|
ifequal RIGHT, .Position9_Right
|
||||||
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos9_Pos10
|
applymovement ILEXFOREST_FARFETCHD, MovementData_Farfetched_Pos9_Pos10
|
||||||
moveobject ILEXFOREST_FARFETCHD, 6, 28
|
moveobject ILEXFOREST_FARFETCHD, 6, 28
|
||||||
disappear ILEXFOREST_FARFETCHD
|
disappear ILEXFOREST_FARFETCHD
|
||||||
@@ -389,7 +389,7 @@ TrainerBugCatcherWayne:
|
|||||||
trainer BUG_CATCHER, WAYNE, EVENT_BEAT_BUG_CATCHER_WAYNE, BugCatcherWayneSeenText, BugCatcherWayneBeatenText, 0, .Script
|
trainer BUG_CATCHER, WAYNE, EVENT_BEAT_BUG_CATCHER_WAYNE, BugCatcherWayneSeenText, BugCatcherWayneBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherWayneAfterBattleText
|
writetext BugCatcherWayneAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -47,11 +47,11 @@ PlateauRivalBattle1:
|
|||||||
checkflag ENGINE_INDIGO_PLATEAU_RIVAL_FIGHT
|
checkflag ENGINE_INDIGO_PLATEAU_RIVAL_FIGHT
|
||||||
iftrue PlateauRivalScriptDone
|
iftrue PlateauRivalScriptDone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, PlateauRivalScriptDone
|
ifequal SUNDAY, PlateauRivalScriptDone
|
||||||
if_equal TUESDAY, PlateauRivalScriptDone
|
ifequal TUESDAY, PlateauRivalScriptDone
|
||||||
if_equal THURSDAY, PlateauRivalScriptDone
|
ifequal THURSDAY, PlateauRivalScriptDone
|
||||||
if_equal FRIDAY, PlateauRivalScriptDone
|
ifequal FRIDAY, PlateauRivalScriptDone
|
||||||
if_equal SATURDAY, PlateauRivalScriptDone
|
ifequal SATURDAY, PlateauRivalScriptDone
|
||||||
moveobject INDIGOPLATEAUPOKECENTER1F_SILVER, 17, 9
|
moveobject INDIGOPLATEAUPOKECENTER1F_SILVER, 17, 9
|
||||||
appear INDIGOPLATEAUPOKECENTER1F_SILVER
|
appear INDIGOPLATEAUPOKECENTER1F_SILVER
|
||||||
spriteface PLAYER, DOWN
|
spriteface PLAYER, DOWN
|
||||||
@@ -69,11 +69,11 @@ PlateauRivalBattle2:
|
|||||||
checkflag ENGINE_INDIGO_PLATEAU_RIVAL_FIGHT
|
checkflag ENGINE_INDIGO_PLATEAU_RIVAL_FIGHT
|
||||||
iftrue PlateauRivalScriptDone
|
iftrue PlateauRivalScriptDone
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, PlateauRivalScriptDone
|
ifequal SUNDAY, PlateauRivalScriptDone
|
||||||
if_equal TUESDAY, PlateauRivalScriptDone
|
ifequal TUESDAY, PlateauRivalScriptDone
|
||||||
if_equal THURSDAY, PlateauRivalScriptDone
|
ifequal THURSDAY, PlateauRivalScriptDone
|
||||||
if_equal FRIDAY, PlateauRivalScriptDone
|
ifequal FRIDAY, PlateauRivalScriptDone
|
||||||
if_equal SATURDAY, PlateauRivalScriptDone
|
ifequal SATURDAY, PlateauRivalScriptDone
|
||||||
appear INDIGOPLATEAUPOKECENTER1F_SILVER
|
appear INDIGOPLATEAUPOKECENTER1F_SILVER
|
||||||
spriteface PLAYER, DOWN
|
spriteface PLAYER, DOWN
|
||||||
showemote EMOTE_SHOCK, PLAYER, 15
|
showemote EMOTE_SHOCK, PLAYER, 15
|
||||||
|
@@ -45,7 +45,7 @@ KurtScript_0x18e178:
|
|||||||
special FadeOutMusic
|
special FadeOutMusic
|
||||||
setevent EVENT_AZALEA_TOWN_SLOWPOKETAIL_ROCKET
|
setevent EVENT_AZALEA_TOWN_SLOWPOKETAIL_ROCKET
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal UP, .RunAround
|
ifequal UP, .RunAround
|
||||||
spriteface PLAYER, DOWN
|
spriteface PLAYER, DOWN
|
||||||
playsound SFX_FLY
|
playsound SFX_FLY
|
||||||
applymovement KURTSHOUSE_KURT1, MovementData_0x18e466
|
applymovement KURTSHOUSE_KURT1, MovementData_0x18e466
|
||||||
@@ -130,13 +130,13 @@ KurtScript_0x18e178:
|
|||||||
buttonsound
|
buttonsound
|
||||||
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3
|
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_3
|
||||||
special SelectApricornForKurt
|
special SelectApricornForKurt
|
||||||
if_equal FALSE, .Cancel
|
ifequal FALSE, .Cancel
|
||||||
if_equal BLU_APRICORN, .Blu
|
ifequal BLU_APRICORN, .Blu
|
||||||
if_equal YLW_APRICORN, .Ylw
|
ifequal YLW_APRICORN, .Ylw
|
||||||
if_equal GRN_APRICORN, .Grn
|
ifequal GRN_APRICORN, .Grn
|
||||||
if_equal WHT_APRICORN, .Wht
|
ifequal WHT_APRICORN, .Wht
|
||||||
if_equal BLK_APRICORN, .Blk
|
ifequal BLK_APRICORN, .Blk
|
||||||
if_equal PNK_APRICORN, .Pnk
|
ifequal PNK_APRICORN, .Pnk
|
||||||
; .Red
|
; .Red
|
||||||
setevent EVENT_GAVE_KURT_RED_APRICORN
|
setevent EVENT_GAVE_KURT_RED_APRICORN
|
||||||
jump .GaveKurtApricorns
|
jump .GaveKurtApricorns
|
||||||
@@ -293,7 +293,7 @@ KurtScript_0x18e178:
|
|||||||
pause 20
|
pause 20
|
||||||
showemote EMOTE_SHOCK, KURTSHOUSE_KURT1, 30
|
showemote EMOTE_SHOCK, KURTSHOUSE_KURT1, 30
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal UP, .GSBallRunAround
|
ifequal UP, .GSBallRunAround
|
||||||
spriteface PLAYER, DOWN
|
spriteface PLAYER, DOWN
|
||||||
playsound SFX_FLY
|
playsound SFX_FLY
|
||||||
applymovement KURTSHOUSE_KURT1, MovementData_0x18e466
|
applymovement KURTSHOUSE_KURT1, MovementData_0x18e466
|
||||||
|
@@ -33,7 +33,7 @@ LakeOfRage_MapScripts:
|
|||||||
|
|
||||||
.Wesley:
|
.Wesley:
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal WEDNESDAY, .WesleyAppears
|
ifequal WEDNESDAY, .WesleyAppears
|
||||||
disappear LAKEOFRAGE_WESLEY
|
disappear LAKEOFRAGE_WESLEY
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -87,7 +87,7 @@ GyaradosScript_0x70063:
|
|||||||
loadwildmon GYARADOS, 30
|
loadwildmon GYARADOS, 30
|
||||||
writecode VAR_BATTLETYPE, BATTLETYPE_SHINY
|
writecode VAR_BATTLETYPE, BATTLETYPE_SHINY
|
||||||
startbattle
|
startbattle
|
||||||
if_equal $1, UnknownScript_0x7007a
|
ifequal $1, UnknownScript_0x7007a
|
||||||
disappear LAKEOFRAGE_GYARADOS
|
disappear LAKEOFRAGE_GYARADOS
|
||||||
UnknownScript_0x7007a:
|
UnknownScript_0x7007a:
|
||||||
reloadmapafterbattle
|
reloadmapafterbattle
|
||||||
@@ -147,7 +147,7 @@ TrainerFisherAndre:
|
|||||||
trainer FISHER, ANDRE, EVENT_BEAT_FISHER_ANDRE, FisherAndreSeenText, FisherAndreBeatenText, 0, .Script
|
trainer FISHER, ANDRE, EVENT_BEAT_FISHER_ANDRE, FisherAndreSeenText, FisherAndreBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherAndreAfterBattleText
|
writetext FisherAndreAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -158,7 +158,7 @@ TrainerFisherRaymond:
|
|||||||
trainer FISHER, RAYMOND, EVENT_BEAT_FISHER_RAYMOND, FisherRaymondSeenText, FisherRaymondBeatenText, 0, .Script
|
trainer FISHER, RAYMOND, EVENT_BEAT_FISHER_RAYMOND, FisherRaymondSeenText, FisherRaymondBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherRaymondAfterBattleText
|
writetext FisherRaymondAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -169,7 +169,7 @@ TrainerCooltrainermAaron:
|
|||||||
trainer COOLTRAINERM, AARON, EVENT_BEAT_COOLTRAINERM_AARON, CooltrainermAaronSeenText, CooltrainermAaronBeatenText, 0, .Script
|
trainer COOLTRAINERM, AARON, EVENT_BEAT_COOLTRAINERM_AARON, CooltrainermAaronSeenText, CooltrainermAaronBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainermAaronAfterBattleText
|
writetext CooltrainermAaronAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -180,7 +180,7 @@ TrainerCooltrainerfLois:
|
|||||||
trainer COOLTRAINERF, LOIS, EVENT_BEAT_COOLTRAINERF_LOIS, CooltrainerfLoisSeenText, CooltrainerfLoisBeatenText, 0, .Script
|
trainer COOLTRAINERF, LOIS, EVENT_BEAT_COOLTRAINERF_LOIS, CooltrainerfLoisSeenText, CooltrainerfLoisBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfLoisAfterBattleText
|
writetext CooltrainerfLoisAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -193,7 +193,7 @@ WesleyScript:
|
|||||||
checkevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
checkevent EVENT_GOT_BLACKBELT_FROM_WESLEY
|
||||||
iftrue WesleyWednesdayScript
|
iftrue WesleyWednesdayScript
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal WEDNESDAY, WesleyNotWednesdayScript
|
ifnotequal WEDNESDAY, WesleyNotWednesdayScript
|
||||||
checkevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
checkevent EVENT_MET_WESLEY_OF_WEDNESDAY
|
||||||
iftrue .MetWesley
|
iftrue .MetWesley
|
||||||
writetext MeetWesleyText
|
writetext MeetWesleyText
|
||||||
|
@@ -43,9 +43,9 @@ UnknownScript_0x19a6e0:
|
|||||||
writetext UnknownText_0x19a93e
|
writetext UnknownText_0x19a93e
|
||||||
waitbutton
|
waitbutton
|
||||||
special CheckMagikarpLength
|
special CheckMagikarpLength
|
||||||
if_equal MAGIKARPLENGTH_NOT_MAGIKARP, UnknownScript_0x19a71c
|
ifequal MAGIKARPLENGTH_NOT_MAGIKARP, UnknownScript_0x19a71c
|
||||||
if_equal MAGIKARPLENGTH_REFUSED, UnknownScript_0x19a722
|
ifequal MAGIKARPLENGTH_REFUSED, UnknownScript_0x19a722
|
||||||
if_equal MAGIKARPLENGTH_TOO_SHORT, UnknownScript_0x19a716
|
ifequal MAGIKARPLENGTH_TOO_SHORT, UnknownScript_0x19a716
|
||||||
; MAGIKARPLENGTH_BEAT_RECORD
|
; MAGIKARPLENGTH_BEAT_RECORD
|
||||||
jump UnknownScript_0x19a6fe
|
jump UnknownScript_0x19a6fe
|
||||||
|
|
||||||
|
@@ -58,8 +58,8 @@ MahoganyGym_NoRoomForIcyWind:
|
|||||||
end
|
end
|
||||||
|
|
||||||
MahoganyGymActivateRockets:
|
MahoganyGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
@@ -72,7 +72,7 @@ TrainerSkierRoxanne:
|
|||||||
trainer SKIER, ROXANNE, EVENT_BEAT_SKIER_ROXANNE, SkierRoxanneSeenText, SkierRoxanneBeatenText, 0, .Script
|
trainer SKIER, ROXANNE, EVENT_BEAT_SKIER_ROXANNE, SkierRoxanneSeenText, SkierRoxanneBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SkierRoxanneAfterBattleText
|
writetext SkierRoxanneAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -83,7 +83,7 @@ TrainerSkierClarissa:
|
|||||||
trainer SKIER, CLARISSA, EVENT_BEAT_SKIER_CLARISSA, SkierClarissaSeenText, SkierClarissaBeatenText, 0, .Script
|
trainer SKIER, CLARISSA, EVENT_BEAT_SKIER_CLARISSA, SkierClarissaSeenText, SkierClarissaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SkierClarissaAfterBattleText
|
writetext SkierClarissaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -94,7 +94,7 @@ TrainerBoarderRonald:
|
|||||||
trainer BOARDER, RONALD, EVENT_BEAT_BOARDER_RONALD, BoarderRonaldSeenText, BoarderRonaldBeatenText, 0, .Script
|
trainer BOARDER, RONALD, EVENT_BEAT_BOARDER_RONALD, BoarderRonaldSeenText, BoarderRonaldBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BoarderRonaldAfterBattleText
|
writetext BoarderRonaldAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -105,7 +105,7 @@ TrainerBoarderBrad:
|
|||||||
trainer BOARDER, BRAD, EVENT_BEAT_BOARDER_BRAD, BoarderBradSeenText, BoarderBradBeatenText, 0, .Script
|
trainer BOARDER, BRAD, EVENT_BEAT_BOARDER_BRAD, BoarderBradSeenText, BoarderBradBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BoarderBradAfterBattleText
|
writetext BoarderBradAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -116,7 +116,7 @@ TrainerBoarderDouglas:
|
|||||||
trainer BOARDER, DOUGLAS, EVENT_BEAT_BOARDER_DOUGLAS, BoarderDouglasSeenText, BoarderDouglasBeatenText, 0, .Script
|
trainer BOARDER, DOUGLAS, EVENT_BEAT_BOARDER_DOUGLAS, BoarderDouglasSeenText, BoarderDouglasBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BoarderDouglasAfterBattleText
|
writetext BoarderDouglasAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -55,7 +55,7 @@ UnknownScript_0x190040:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse UnknownScript_0x190072
|
iffalse UnknownScript_0x190072
|
||||||
checkmoney YOUR_MONEY, 300
|
checkmoney YOUR_MONEY, 300
|
||||||
if_equal HAVE_LESS, UnknownScript_0x19006c
|
ifequal HAVE_LESS, UnknownScript_0x19006c
|
||||||
giveitem RAGECANDYBAR
|
giveitem RAGECANDYBAR
|
||||||
iffalse UnknownScript_0x190078
|
iffalse UnknownScript_0x190078
|
||||||
waitsfx
|
waitsfx
|
||||||
|
@@ -53,10 +53,10 @@ ManiaScript:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .refused
|
iffalse .refused
|
||||||
special ReturnShuckle
|
special ReturnShuckle
|
||||||
if_equal SHUCKIE_WRONG_MON, .wrong
|
ifequal SHUCKIE_WRONG_MON, .wrong
|
||||||
if_equal SHUCKIE_REFUSED, .refused
|
ifequal SHUCKIE_REFUSED, .refused
|
||||||
if_equal SHUCKIE_HAPPY, .superhappy
|
ifequal SHUCKIE_HAPPY, .superhappy
|
||||||
if_equal SHUCKIE_FAINTED, .default_postevent
|
ifequal SHUCKIE_FAINTED, .default_postevent
|
||||||
; SHUCKIE_RETURNED
|
; SHUCKIE_RETURNED
|
||||||
writetext ManiaText_ThankYou
|
writetext ManiaText_ThankYou
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -20,11 +20,11 @@ MobileBattleRoom_MapScripts:
|
|||||||
MapMobileBattleRoomSignpost0Script:
|
MapMobileBattleRoomSignpost0Script:
|
||||||
refreshscreen
|
refreshscreen
|
||||||
special Function1037c2
|
special Function1037c2
|
||||||
if_equal $1, .one
|
ifequal $1, .one
|
||||||
special Function1037eb
|
special Function1037eb
|
||||||
iffalse .false
|
iffalse .false
|
||||||
if_equal $1, .one_
|
ifequal $1, .one_
|
||||||
if_equal $2, .two_
|
ifequal $2, .two_
|
||||||
jump .false
|
jump .false
|
||||||
|
|
||||||
.one_
|
.one_
|
||||||
|
@@ -26,7 +26,7 @@ ClefairyDance:
|
|||||||
checkflag ENGINE_MT_MOON_SQUARE_CLEFAIRY
|
checkflag ENGINE_MT_MOON_SQUARE_CLEFAIRY
|
||||||
iftrue .NoDancing
|
iftrue .NoDancing
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_not_equal MONDAY, .NoDancing
|
ifnotequal MONDAY, .NoDancing
|
||||||
checknite
|
checknite
|
||||||
iffalse .NoDancing
|
iffalse .NoDancing
|
||||||
appear MOUNTMOONSQUARE_FAIRY1
|
appear MOUNTMOONSQUARE_FAIRY1
|
||||||
|
@@ -19,7 +19,7 @@ TrainerPokemaniacMiller:
|
|||||||
trainer POKEMANIAC, MILLER, EVENT_BEAT_POKEMANIAC_MILLER, PokemaniacMillerSeenText, PokemaniacMillerBeatenText, 0, .Script
|
trainer POKEMANIAC, MILLER, EVENT_BEAT_POKEMANIAC_MILLER, PokemaniacMillerSeenText, PokemaniacMillerBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokemaniacMillerAfterBattleText
|
writetext PokemaniacMillerAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -30,7 +30,7 @@ TrainerSupernerdMarkus:
|
|||||||
trainer SUPER_NERD, MARKUS, EVENT_BEAT_SUPER_NERD_MARKUS, SupernerdMarkusSeenText, SupernerdMarkusBeatenText, 0, .Script
|
trainer SUPER_NERD, MARKUS, EVENT_BEAT_SUPER_NERD_MARKUS, SupernerdMarkusSeenText, SupernerdMarkusBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdMarkusAfterBattleText
|
writetext SupernerdMarkusAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -16,7 +16,7 @@ TrainerSupernerdHugh:
|
|||||||
trainer SUPER_NERD, HUGH, EVENT_BEAT_SUPER_NERD_HUGH, SupernerdHughSeenText, SupernerdHughBeatenText, 0, .Script
|
trainer SUPER_NERD, HUGH, EVENT_BEAT_SUPER_NERD_HUGH, SupernerdHughSeenText, SupernerdHughBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdHughAfterBattleText
|
writetext SupernerdHughAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -33,7 +33,7 @@ UnknownScript_0x7e217:
|
|||||||
buttonsound
|
buttonsound
|
||||||
waitsfx
|
waitsfx
|
||||||
checkcode VAR_PARTYCOUNT
|
checkcode VAR_PARTYCOUNT
|
||||||
if_equal PARTY_LENGTH, UnknownScript_0x7e237
|
ifequal PARTY_LENGTH, UnknownScript_0x7e237
|
||||||
writetext UnknownText_0x7e355
|
writetext UnknownText_0x7e355
|
||||||
playsound SFX_CAUGHT_MON
|
playsound SFX_CAUGHT_MON
|
||||||
waitsfx
|
waitsfx
|
||||||
|
@@ -74,7 +74,7 @@ TrainerSchoolboyJack1:
|
|||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
writecode VAR_CALLERID, PHONE_SCHOOLBOY_JACK
|
writecode VAR_CALLERID, PHONE_SCHOOLBOY_JACK
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_JACK
|
checkflag ENGINE_JACK
|
||||||
iftrue UnknownScript_0x5c088
|
iftrue UnknownScript_0x5c088
|
||||||
@@ -92,8 +92,8 @@ UnknownScript_0x5c071:
|
|||||||
scall UnknownScript_0x5c100
|
scall UnknownScript_0x5c100
|
||||||
UnknownScript_0x5c074:
|
UnknownScript_0x5c074:
|
||||||
askforphonenumber PHONE_SCHOOLBOY_JACK
|
askforphonenumber PHONE_SCHOOLBOY_JACK
|
||||||
if_equal PHONE_CONTACTS_FULL, UnknownScript_0x5c110
|
ifequal PHONE_CONTACTS_FULL, UnknownScript_0x5c110
|
||||||
if_equal PHONE_CONTACT_REFUSED, UnknownScript_0x5c10c
|
ifequal PHONE_CONTACT_REFUSED, UnknownScript_0x5c10c
|
||||||
trainertotext SCHOOLBOY, JACK1, MEM_BUFFER_0
|
trainertotext SCHOOLBOY, JACK1, MEM_BUFFER_0
|
||||||
scall UnknownScript_0x5c104
|
scall UnknownScript_0x5c104
|
||||||
jump UnknownScript_0x5c108
|
jump UnknownScript_0x5c108
|
||||||
@@ -102,11 +102,11 @@ UnknownScript_0x5c088:
|
|||||||
scall UnknownScript_0x5c114
|
scall UnknownScript_0x5c114
|
||||||
winlosstext SchoolboyJack1BeatenText, 0
|
winlosstext SchoolboyJack1BeatenText, 0
|
||||||
copybytetovar wJackFightCount
|
copybytetovar wJackFightCount
|
||||||
if_equal 4, .Fight4
|
ifequal 4, .Fight4
|
||||||
if_equal 3, .Fight3
|
ifequal 3, .Fight3
|
||||||
if_equal 2, .Fight2
|
ifequal 2, .Fight2
|
||||||
if_equal 1, .Fight1
|
ifequal 1, .Fight1
|
||||||
if_equal 0, .LoadFight0
|
ifequal 0, .LoadFight0
|
||||||
.Fight4:
|
.Fight4:
|
||||||
checkevent EVENT_RESTORED_POWER_TO_KANTO
|
checkevent EVENT_RESTORED_POWER_TO_KANTO
|
||||||
iftrue .LoadFight4
|
iftrue .LoadFight4
|
||||||
@@ -190,7 +190,7 @@ TrainerPokefanmWilliam:
|
|||||||
trainer POKEFANM, WILLIAM, EVENT_BEAT_POKEFANM_WILLIAM, PokefanmWilliamSeenText, PokefanmWilliamBeatenText, 0, .Script
|
trainer POKEFANM, WILLIAM, EVENT_BEAT_POKEFANM_WILLIAM, PokefanmWilliamSeenText, PokefanmWilliamBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmWilliamAfterBattleText
|
writetext PokefanmWilliamAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -202,7 +202,7 @@ TrainerPokefanfBeverly1:
|
|||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
writecode VAR_CALLERID, PHONE_POKEFAN_BEVERLY
|
writecode VAR_CALLERID, PHONE_POKEFAN_BEVERLY
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_BEVERLY_HAS_NUGGET
|
checkflag ENGINE_BEVERLY_HAS_NUGGET
|
||||||
iftrue UnknownScript_0x5c177
|
iftrue UnknownScript_0x5c177
|
||||||
@@ -222,8 +222,8 @@ UnknownScript_0x5c160:
|
|||||||
scall UnknownScript_0x5c193
|
scall UnknownScript_0x5c193
|
||||||
UnknownScript_0x5c163:
|
UnknownScript_0x5c163:
|
||||||
askforphonenumber PHONE_POKEFAN_BEVERLY
|
askforphonenumber PHONE_POKEFAN_BEVERLY
|
||||||
if_equal PHONE_CONTACTS_FULL, UnknownScript_0x5c1a3
|
ifequal PHONE_CONTACTS_FULL, UnknownScript_0x5c1a3
|
||||||
if_equal PHONE_CONTACT_REFUSED, UnknownScript_0x5c19f
|
ifequal PHONE_CONTACT_REFUSED, UnknownScript_0x5c19f
|
||||||
trainertotext POKEFANF, BEVERLY1, MEM_BUFFER_0
|
trainertotext POKEFANF, BEVERLY1, MEM_BUFFER_0
|
||||||
scall UnknownScript_0x5c197
|
scall UnknownScript_0x5c197
|
||||||
jump UnknownScript_0x5c19b
|
jump UnknownScript_0x5c19b
|
||||||
@@ -280,7 +280,7 @@ TrainerLassKrise:
|
|||||||
trainer LASS, KRISE, EVENT_BEAT_LASS_KRISE, LassKriseSeenText, LassKriseBeatenText, 0, .Script
|
trainer LASS, KRISE, EVENT_BEAT_LASS_KRISE, LassKriseSeenText, LassKriseBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassKriseAfterBattleText
|
writetext LassKriseAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -24,8 +24,8 @@ Oak:
|
|||||||
setevent EVENT_TALKED_TO_OAK_IN_KANTO
|
setevent EVENT_TALKED_TO_OAK_IN_KANTO
|
||||||
.CheckBadges:
|
.CheckBadges:
|
||||||
checkcode VAR_BADGES
|
checkcode VAR_BADGES
|
||||||
if_equal NUM_BADGES, .OpenMtSilver
|
ifequal NUM_BADGES, .OpenMtSilver
|
||||||
if_equal NUM_JOHTO_BADGES, .Complain
|
ifequal NUM_JOHTO_BADGES, .Complain
|
||||||
jump .AhGood
|
jump .AhGood
|
||||||
|
|
||||||
.CheckPokedex:
|
.CheckPokedex:
|
||||||
|
@@ -77,7 +77,7 @@ StandingYoungsterScript_0x1a88a6:
|
|||||||
faceplayer
|
faceplayer
|
||||||
opentext
|
opentext
|
||||||
random 2
|
random 2
|
||||||
if_equal 0, UnknownScript_0x1a88b4
|
ifequal 0, UnknownScript_0x1a88b4
|
||||||
writetext UnknownText_0x1a8b04
|
writetext UnknownText_0x1a8b04
|
||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
|
@@ -48,8 +48,8 @@ JasmineScript_0x9c12f:
|
|||||||
end
|
end
|
||||||
|
|
||||||
OlivineGymActivateRockets:
|
OlivineGymActivateRockets:
|
||||||
if_equal 7, .RadioTowerRockets
|
ifequal 7, .RadioTowerRockets
|
||||||
if_equal 6, .GoldenrodRockets
|
ifequal 6, .GoldenrodRockets
|
||||||
end
|
end
|
||||||
|
|
||||||
.GoldenrodRockets:
|
.GoldenrodRockets:
|
||||||
|
@@ -11,7 +11,7 @@ TrainerGentlemanAlfred:
|
|||||||
trainer GENTLEMAN, ALFRED, EVENT_BEAT_GENTLEMAN_ALFRED, GentlemanAlfredSeenText, GentlemanAlfredBeatenText, 0, .Script
|
trainer GENTLEMAN, ALFRED, EVENT_BEAT_GENTLEMAN_ALFRED, GentlemanAlfredSeenText, GentlemanAlfredBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GentlemanAlfredAfterBattleText
|
writetext GentlemanAlfredAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -23,7 +23,7 @@ TrainerSailorHuey1:
|
|||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
writecode VAR_CALLERID, PHONE_SAILOR_HUEY
|
writecode VAR_CALLERID, PHONE_SAILOR_HUEY
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
checkflag ENGINE_HUEY
|
checkflag ENGINE_HUEY
|
||||||
iftrue UnknownScript_0x5afc7
|
iftrue UnknownScript_0x5afc7
|
||||||
@@ -39,8 +39,8 @@ UnknownScript_0x5afb0:
|
|||||||
scall UnknownScript_0x5b057
|
scall UnknownScript_0x5b057
|
||||||
UnknownScript_0x5afb3:
|
UnknownScript_0x5afb3:
|
||||||
askforphonenumber PHONE_SAILOR_HUEY
|
askforphonenumber PHONE_SAILOR_HUEY
|
||||||
if_equal PHONE_CONTACTS_FULL, UnknownScript_0x5b067
|
ifequal PHONE_CONTACTS_FULL, UnknownScript_0x5b067
|
||||||
if_equal PHONE_CONTACT_REFUSED, UnknownScript_0x5b063
|
ifequal PHONE_CONTACT_REFUSED, UnknownScript_0x5b063
|
||||||
trainertotext SAILOR, HUEY1, MEM_BUFFER_0
|
trainertotext SAILOR, HUEY1, MEM_BUFFER_0
|
||||||
scall UnknownScript_0x5b05b
|
scall UnknownScript_0x5b05b
|
||||||
jump UnknownScript_0x5b05f
|
jump UnknownScript_0x5b05f
|
||||||
@@ -49,10 +49,10 @@ UnknownScript_0x5afc7:
|
|||||||
scall UnknownScript_0x5b06b
|
scall UnknownScript_0x5b06b
|
||||||
winlosstext SailorHuey1BeatenText, 0
|
winlosstext SailorHuey1BeatenText, 0
|
||||||
copybytetovar wHueyFightCount
|
copybytetovar wHueyFightCount
|
||||||
if_equal 3, .Fight3
|
ifequal 3, .Fight3
|
||||||
if_equal 2, .Fight2
|
ifequal 2, .Fight2
|
||||||
if_equal 1, .Fight1
|
ifequal 1, .Fight1
|
||||||
if_equal 0, .LoadFight0
|
ifequal 0, .LoadFight0
|
||||||
.Fight3:
|
.Fight3:
|
||||||
checkevent EVENT_RESTORED_POWER_TO_KANTO
|
checkevent EVENT_RESTORED_POWER_TO_KANTO
|
||||||
iftrue .LoadFight3
|
iftrue .LoadFight3
|
||||||
|
@@ -13,7 +13,7 @@ TrainerBirdKeeperTheo:
|
|||||||
trainer BIRD_KEEPER, THEO, EVENT_BEAT_BIRD_KEEPER_THEO, BirdKeeperTheoSeenText, BirdKeeperTheoBeatenText, 0, .Script
|
trainer BIRD_KEEPER, THEO, EVENT_BEAT_BIRD_KEEPER_THEO, BirdKeeperTheoSeenText, BirdKeeperTheoBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperTheoAfterBattleText
|
writetext BirdKeeperTheoAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -24,7 +24,7 @@ TrainerGentlemanPreston:
|
|||||||
trainer GENTLEMAN, PRESTON, EVENT_BEAT_GENTLEMAN_PRESTON, GentlemanPrestonSeenText, GentlemanPrestonBeatenText, 0, .Script
|
trainer GENTLEMAN, PRESTON, EVENT_BEAT_GENTLEMAN_PRESTON, GentlemanPrestonSeenText, GentlemanPrestonBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GentlemanPrestonAfterBattleText
|
writetext GentlemanPrestonAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -35,7 +35,7 @@ TrainerSailorTerrell:
|
|||||||
trainer SAILOR, TERRELL, EVENT_BEAT_SAILOR_TERRELL, SailorTerrellSeenText, SailorTerrellBeatenText, 0, .Script
|
trainer SAILOR, TERRELL, EVENT_BEAT_SAILOR_TERRELL, SailorTerrellSeenText, SailorTerrellBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorTerrellAfterBattleText
|
writetext SailorTerrellAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -11,7 +11,7 @@ TrainerLassConnie:
|
|||||||
trainer LASS, CONNIE1, EVENT_BEAT_LASS_CONNIE, LassConnie1SeenText, LassConnie1BeatenText, 0, .Script
|
trainer LASS, CONNIE1, EVENT_BEAT_LASS_CONNIE, LassConnie1SeenText, LassConnie1BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassConnie1AfterBattleText
|
writetext LassConnie1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -22,7 +22,7 @@ TrainerSailorKent:
|
|||||||
trainer SAILOR, KENT, EVENT_BEAT_SAILOR_KENT, SailorKentSeenText, SailorKentBeatenText, 0, .Script
|
trainer SAILOR, KENT, EVENT_BEAT_SAILOR_KENT, SailorKentSeenText, SailorKentBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorKentAfterBattleText
|
writetext SailorKentAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -14,7 +14,7 @@ TrainerBirdKeeperDenis:
|
|||||||
trainer BIRD_KEEPER, DENIS, EVENT_BEAT_BIRD_KEEPER_DENIS, BirdKeeperDenisSeenText, BirdKeeperDenisBeatenText, 0, .Script
|
trainer BIRD_KEEPER, DENIS, EVENT_BEAT_BIRD_KEEPER_DENIS, BirdKeeperDenisSeenText, BirdKeeperDenisBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperDenisAfterBattleText
|
writetext BirdKeeperDenisAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -25,7 +25,7 @@ TrainerSailorErnest:
|
|||||||
trainer SAILOR, ERNEST, EVENT_BEAT_SAILOR_ERNEST, SailorErnestSeenText, SailorErnestBeatenText, 0, .Script
|
trainer SAILOR, ERNEST, EVENT_BEAT_SAILOR_ERNEST, SailorErnestSeenText, SailorErnestBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SailorErnestAfterBattleText
|
writetext SailorErnestAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -68,8 +68,8 @@ UnknownScript_0x60bab:
|
|||||||
setevent EVENT_JASMINE_RETURNED_TO_GYM
|
setevent EVENT_JASMINE_RETURNED_TO_GYM
|
||||||
clearevent EVENT_OLIVINE_GYM_JASMINE
|
clearevent EVENT_OLIVINE_GYM_JASMINE
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal DOWN, UnknownScript_0x60c17
|
ifequal DOWN, UnknownScript_0x60c17
|
||||||
if_equal RIGHT, UnknownScript_0x60c1e
|
ifequal RIGHT, UnknownScript_0x60c1e
|
||||||
applymovement OLIVINELIGHTHOUSE6F_JASMINE, MovementData_0x60c68
|
applymovement OLIVINELIGHTHOUSE6F_JASMINE, MovementData_0x60c68
|
||||||
disappear OLIVINELIGHTHOUSE6F_JASMINE
|
disappear OLIVINELIGHTHOUSE6F_JASMINE
|
||||||
end
|
end
|
||||||
|
@@ -83,11 +83,11 @@ UnknownScript_0x7491f:
|
|||||||
checkevent EVENT_FAST_SHIP_FIRST_TIME
|
checkevent EVENT_FAST_SHIP_FIRST_TIME
|
||||||
iffalse UnknownScript_0x7494e
|
iffalse UnknownScript_0x7494e
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, UnknownScript_0x74977
|
ifequal SUNDAY, UnknownScript_0x74977
|
||||||
if_equal SATURDAY, UnknownScript_0x74977
|
ifequal SATURDAY, UnknownScript_0x74977
|
||||||
if_equal TUESDAY, UnknownScript_0x74981
|
ifequal TUESDAY, UnknownScript_0x74981
|
||||||
if_equal WEDNESDAY, UnknownScript_0x74981
|
ifequal WEDNESDAY, UnknownScript_0x74981
|
||||||
if_equal THURSDAY, UnknownScript_0x74981
|
ifequal THURSDAY, UnknownScript_0x74981
|
||||||
UnknownScript_0x7494e:
|
UnknownScript_0x7494e:
|
||||||
writetext UnknownText_0x74a9c
|
writetext UnknownText_0x74a9c
|
||||||
yesorno
|
yesorno
|
||||||
@@ -148,11 +148,11 @@ SailorScript_0x7499c:
|
|||||||
checkevent EVENT_FAST_SHIP_FIRST_TIME
|
checkevent EVENT_FAST_SHIP_FIRST_TIME
|
||||||
iffalse UnknownScript_0x749c0
|
iffalse UnknownScript_0x749c0
|
||||||
checkcode VAR_WEEKDAY
|
checkcode VAR_WEEKDAY
|
||||||
if_equal SUNDAY, UnknownScript_0x749f2
|
ifequal SUNDAY, UnknownScript_0x749f2
|
||||||
if_equal SATURDAY, UnknownScript_0x749f2
|
ifequal SATURDAY, UnknownScript_0x749f2
|
||||||
if_equal TUESDAY, UnknownScript_0x749f8
|
ifequal TUESDAY, UnknownScript_0x749f8
|
||||||
if_equal WEDNESDAY, UnknownScript_0x749f8
|
ifequal WEDNESDAY, UnknownScript_0x749f8
|
||||||
if_equal THURSDAY, UnknownScript_0x749f8
|
ifequal THURSDAY, UnknownScript_0x749f8
|
||||||
UnknownScript_0x749c0:
|
UnknownScript_0x749c0:
|
||||||
writetext UnknownText_0x74a9c
|
writetext UnknownText_0x74a9c
|
||||||
yesorno
|
yesorno
|
||||||
@@ -166,7 +166,7 @@ UnknownScript_0x749c0:
|
|||||||
closetext
|
closetext
|
||||||
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
|
setevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal RIGHT, UnknownScript_0x749e5
|
ifequal RIGHT, UnknownScript_0x749e5
|
||||||
applymovement PLAYER, MovementData_0x74a3f
|
applymovement PLAYER, MovementData_0x74a3f
|
||||||
jump SailorScript_0x748c0
|
jump SailorScript_0x748c0
|
||||||
|
|
||||||
|
@@ -42,7 +42,7 @@ TrainerCamperJerry:
|
|||||||
trainer CAMPER, JERRY, EVENT_BEAT_CAMPER_JERRY, CamperJerrySeenText, CamperJerryBeatenText, 0, .Script
|
trainer CAMPER, JERRY, EVENT_BEAT_CAMPER_JERRY, CamperJerrySeenText, CamperJerryBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CamperJerryAfterBattleText
|
writetext CamperJerryAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -17,7 +17,7 @@ Pokecenter2F_MapScripts:
|
|||||||
|
|
||||||
.Scene0:
|
.Scene0:
|
||||||
special CheckMysteryGift
|
special CheckMysteryGift
|
||||||
if_equal $0, .Scene0Done
|
ifequal $0, .Scene0Done
|
||||||
clearevent EVENT_MYSTERY_GIFT_DELIVERY_GUY
|
clearevent EVENT_MYSTERY_GIFT_DELIVERY_GUY
|
||||||
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
|
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_2
|
||||||
iftrue .Scene0Done
|
iftrue .Scene0Done
|
||||||
@@ -79,7 +79,7 @@ LinkReceptionistScript_Trade:
|
|||||||
writetext Text_TradeReceptionistMobile
|
writetext Text_TradeReceptionistMobile
|
||||||
special AskMobileOrCable
|
special AskMobileOrCable
|
||||||
iffalse .Cancel
|
iffalse .Cancel
|
||||||
if_equal $1, .Mobile
|
ifequal $1, .Mobile
|
||||||
.NoMobile:
|
.NoMobile:
|
||||||
special SetBitsForLinkTradeRequest
|
special SetBitsForLinkTradeRequest
|
||||||
writetext Text_PleaseWait
|
writetext Text_PleaseWait
|
||||||
@@ -181,7 +181,7 @@ LinkReceptionistScript_Battle:
|
|||||||
writetext Text_BattleReceptionistMobile
|
writetext Text_BattleReceptionistMobile
|
||||||
special AskMobileOrCable
|
special AskMobileOrCable
|
||||||
iffalse .Cancel
|
iffalse .Cancel
|
||||||
if_equal $1, .Mobile
|
ifequal $1, .Mobile
|
||||||
.NoMobile:
|
.NoMobile:
|
||||||
special SetBitsForBattleRequest
|
special SetBitsForBattleRequest
|
||||||
writetext Text_PleaseWait
|
writetext Text_PleaseWait
|
||||||
@@ -271,9 +271,9 @@ LinkReceptionistScript_Battle:
|
|||||||
.SelectThreeMons:
|
.SelectThreeMons:
|
||||||
special Mobile_SelectThreeMons
|
special Mobile_SelectThreeMons
|
||||||
iffalse .Mobile_DidNotSelect
|
iffalse .Mobile_DidNotSelect
|
||||||
if_equal $1, .Mobile_OK
|
ifequal $1, .Mobile_OK
|
||||||
if_equal $2, .Mobile_OK
|
ifequal $2, .Mobile_OK
|
||||||
if_equal $3, .Mobile_InvalidParty
|
ifequal $3, .Mobile_InvalidParty
|
||||||
jump .Mobile_DidNotSelect
|
jump .Mobile_DidNotSelect
|
||||||
|
|
||||||
.Mobile_InvalidParty:
|
.Mobile_InvalidParty:
|
||||||
@@ -308,9 +308,9 @@ LinkReceptionistScript_TimeCapsule:
|
|||||||
yesorno
|
yesorno
|
||||||
iffalse .Cancel
|
iffalse .Cancel
|
||||||
special CheckTimeCapsuleCompatibility
|
special CheckTimeCapsuleCompatibility
|
||||||
if_equal $1, .MonTooNew
|
ifequal $1, .MonTooNew
|
||||||
if_equal $2, .MonMoveTooNew
|
ifequal $2, .MonMoveTooNew
|
||||||
if_equal $3, .MonHasMail
|
ifequal $3, .MonHasMail
|
||||||
writetext Text_PleaseWait
|
writetext Text_PleaseWait
|
||||||
special WaitForLinkedFriend
|
special WaitForLinkedFriend
|
||||||
iffalse .FriendNotReady
|
iffalse .FriendNotReady
|
||||||
@@ -494,8 +494,8 @@ TimeCapsuleScript_CheckPlayerGender:
|
|||||||
checkflag ENGINE_PLAYER_IS_FEMALE
|
checkflag ENGINE_PLAYER_IS_FEMALE
|
||||||
iftrue .Female
|
iftrue .Female
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal LEFT, .MaleFacingLeft
|
ifequal LEFT, .MaleFacingLeft
|
||||||
if_equal RIGHT, .MaleFacingRight
|
ifequal RIGHT, .MaleFacingRight
|
||||||
applymovement2 Pokecenter2FMovementData_ReceptionistStepsLeftLooksDown
|
applymovement2 Pokecenter2FMovementData_ReceptionistStepsLeftLooksDown
|
||||||
applymovement PLAYER, Pokecenter2FMovementData_PlayerTakesTwoStepsUp_2
|
applymovement PLAYER, Pokecenter2FMovementData_PlayerTakesTwoStepsUp_2
|
||||||
end
|
end
|
||||||
@@ -512,8 +512,8 @@ TimeCapsuleScript_CheckPlayerGender:
|
|||||||
|
|
||||||
.Female:
|
.Female:
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_equal RIGHT, .FemaleFacingRight
|
ifequal RIGHT, .FemaleFacingRight
|
||||||
if_equal LEFT, .FemaleFacingLeft
|
ifequal LEFT, .FemaleFacingLeft
|
||||||
applymovement2 Pokecenter2FMovementData_ReceptionistStepsLeftLooksRight_2
|
applymovement2 Pokecenter2FMovementData_ReceptionistStepsLeftLooksRight_2
|
||||||
applymovement PLAYER, Pokecenter2FMovementData_PlayerTakesOneStepUp_2
|
applymovement PLAYER, Pokecenter2FMovementData_PlayerTakesOneStepUp_2
|
||||||
jump .FemaleContinue
|
jump .FemaleContinue
|
||||||
@@ -532,7 +532,7 @@ TimeCapsuleScript_CheckPlayerGender:
|
|||||||
waitbutton
|
waitbutton
|
||||||
closetext
|
closetext
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_not_equal UP, .FemaleChangeApperance
|
ifnotequal UP, .FemaleChangeApperance
|
||||||
spriteface PLAYER, LEFT
|
spriteface PLAYER, LEFT
|
||||||
.FemaleChangeApperance:
|
.FemaleChangeApperance:
|
||||||
opentext
|
opentext
|
||||||
|
@@ -26,8 +26,8 @@ UnknownScript_0x625df:
|
|||||||
loadmenuheader MenuHeader_0x62602
|
loadmenuheader MenuHeader_0x62602
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, UnknownScript_0x625f0
|
ifequal 1, UnknownScript_0x625f0
|
||||||
if_equal 2, UnknownScript_0x625f8
|
ifequal 2, UnknownScript_0x625f8
|
||||||
jump UnknownScript_0x62600
|
jump UnknownScript_0x62600
|
||||||
|
|
||||||
UnknownScript_0x625f0:
|
UnknownScript_0x625f0:
|
||||||
@@ -68,8 +68,8 @@ UnknownScript_0x62629:
|
|||||||
loadmenuheader MenuHeader_0x6264c
|
loadmenuheader MenuHeader_0x6264c
|
||||||
verticalmenu
|
verticalmenu
|
||||||
closewindow
|
closewindow
|
||||||
if_equal 1, UnknownScript_0x6263a
|
ifequal 1, UnknownScript_0x6263a
|
||||||
if_equal 2, UnknownScript_0x62642
|
ifequal 2, UnknownScript_0x62642
|
||||||
jump UnknownScript_0x6264a
|
jump UnknownScript_0x6264a
|
||||||
|
|
||||||
UnknownScript_0x6263a:
|
UnknownScript_0x6263a:
|
||||||
|
@@ -55,9 +55,9 @@ GentlemanScript_0x5cd3d:
|
|||||||
closetext
|
closetext
|
||||||
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce74
|
applymovement RADIOTOWER1F_GENTLEMAN, MovementData_0x5ce74
|
||||||
opentext
|
opentext
|
||||||
if_equal 1, .FirstPlace
|
ifequal 1, .FirstPlace
|
||||||
if_equal 2, .SecondPlace
|
ifequal 2, .SecondPlace
|
||||||
if_equal 3, .ThirdPlace
|
ifequal 3, .ThirdPlace
|
||||||
jump .NoPrize
|
jump .NoPrize
|
||||||
|
|
||||||
.GameOver:
|
.GameOver:
|
||||||
@@ -187,7 +187,7 @@ TrainerGruntM3:
|
|||||||
trainer GRUNTM, GRUNTM_3, EVENT_BEAT_ROCKET_GRUNTM_3, GruntM3SeenText, GruntM3BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_3, EVENT_BEAT_ROCKET_GRUNTM_3, GruntM3SeenText, GruntM3BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM3AfterBattleText
|
writetext GruntM3AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -56,7 +56,7 @@ TrainerGruntM4:
|
|||||||
trainer GRUNTM, GRUNTM_4, EVENT_BEAT_ROCKET_GRUNTM_4, GruntM4SeenText, GruntM4BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_4, EVENT_BEAT_ROCKET_GRUNTM_4, GruntM4SeenText, GruntM4BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM4AfterBattleText
|
writetext GruntM4AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -67,7 +67,7 @@ TrainerGruntM5:
|
|||||||
trainer GRUNTM, GRUNTM_5, EVENT_BEAT_ROCKET_GRUNTM_5, GruntM5SeenText, GruntM5BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_5, EVENT_BEAT_ROCKET_GRUNTM_5, GruntM5SeenText, GruntM5BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM5AfterBattleText
|
writetext GruntM5AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -78,7 +78,7 @@ TrainerGruntM6:
|
|||||||
trainer GRUNTM, GRUNTM_6, EVENT_BEAT_ROCKET_GRUNTM_6, GruntM6SeenText, GruntM6BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_6, EVENT_BEAT_ROCKET_GRUNTM_6, GruntM6SeenText, GruntM6BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM6AfterBattleText
|
writetext GruntM6AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -89,7 +89,7 @@ TrainerGruntF2:
|
|||||||
trainer GRUNTF, GRUNTF_2, EVENT_BEAT_ROCKET_GRUNTF_2, GruntF2SeenText, GruntF2BeatenText, 0, .Script
|
trainer GRUNTF, GRUNTF_2, EVENT_BEAT_ROCKET_GRUNTF_2, GruntF2SeenText, GruntF2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntF2AfterBattleText
|
writetext GruntF2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -106,13 +106,13 @@ Buena:
|
|||||||
checkflag ENGINE_BUENAS_PASSWORD_2
|
checkflag ENGINE_BUENAS_PASSWORD_2
|
||||||
iftrue UnknownScript_0x5d82f
|
iftrue UnknownScript_0x5d82f
|
||||||
checkcode VAR_HOUR
|
checkcode VAR_HOUR
|
||||||
if_less_than 18, UnknownScript_0x5d893
|
ifless 18, UnknownScript_0x5d893
|
||||||
checkflag ENGINE_BUENAS_PASSWORD
|
checkflag ENGINE_BUENAS_PASSWORD
|
||||||
iffalse UnknownScript_0x5d80a
|
iffalse UnknownScript_0x5d80a
|
||||||
checkitem BLUE_CARD
|
checkitem BLUE_CARD
|
||||||
iffalse UnknownScript_0x5d86b
|
iffalse UnknownScript_0x5d86b
|
||||||
checkcode VAR_BLUECARDBALANCE
|
checkcode VAR_BLUECARDBALANCE
|
||||||
if_equal 30, UnknownScript_0x5d87f
|
ifequal 30, UnknownScript_0x5d87f
|
||||||
playmusic MUSIC_BUENAS_PASSWORD
|
playmusic MUSIC_BUENAS_PASSWORD
|
||||||
writetext UnknownText_0x5de35
|
writetext UnknownText_0x5de35
|
||||||
special AskRememberPassword
|
special AskRememberPassword
|
||||||
@@ -122,7 +122,7 @@ Buena:
|
|||||||
closetext
|
closetext
|
||||||
spriteface RADIOTOWER2F_BUENA, RIGHT
|
spriteface RADIOTOWER2F_BUENA, RIGHT
|
||||||
checkcode VAR_FACING
|
checkcode VAR_FACING
|
||||||
if_not_equal RIGHT, UnknownScript_0x5d7be
|
ifnotequal RIGHT, UnknownScript_0x5d7be
|
||||||
applymovement PLAYER, MovementData_0x5d921
|
applymovement PLAYER, MovementData_0x5d921
|
||||||
UnknownScript_0x5d7be:
|
UnknownScript_0x5d7be:
|
||||||
spriteface PLAYER, RIGHT
|
spriteface PLAYER, RIGHT
|
||||||
@@ -155,7 +155,7 @@ UnknownScript_0x5d7be:
|
|||||||
pause 20
|
pause 20
|
||||||
special RestartMapMusic
|
special RestartMapMusic
|
||||||
checkcode VAR_BLUECARDBALANCE
|
checkcode VAR_BLUECARDBALANCE
|
||||||
if_equal 30, UnknownScript_0x5d8a4
|
ifequal 30, UnknownScript_0x5d8a4
|
||||||
end
|
end
|
||||||
|
|
||||||
UnknownScript_0x5d800:
|
UnknownScript_0x5d800:
|
||||||
@@ -279,8 +279,8 @@ UnknownScript_0x5d8cc:
|
|||||||
writetext UnknownText_0x5e2bf
|
writetext UnknownText_0x5e2bf
|
||||||
UnknownScript_0x5d8d0:
|
UnknownScript_0x5d8d0:
|
||||||
askforphonenumber PHONE_BUENA
|
askforphonenumber PHONE_BUENA
|
||||||
if_equal PHONE_CONTACTS_FULL, UnknownScript_0x5d8f6
|
ifequal PHONE_CONTACTS_FULL, UnknownScript_0x5d8f6
|
||||||
if_equal PHONE_CONTACT_REFUSED, UnknownScript_0x5d8ed
|
ifequal PHONE_CONTACT_REFUSED, UnknownScript_0x5d8ed
|
||||||
writetext UnknownText_0x5e2f3
|
writetext UnknownText_0x5e2f3
|
||||||
playsound SFX_REGISTER_PHONE_NUMBER
|
playsound SFX_REGISTER_PHONE_NUMBER
|
||||||
waitsfx
|
waitsfx
|
||||||
|
@@ -84,7 +84,7 @@ TrainerGruntM7:
|
|||||||
trainer GRUNTM, GRUNTM_7, EVENT_BEAT_ROCKET_GRUNTM_7, GruntM7SeenText, GruntM7BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_7, EVENT_BEAT_ROCKET_GRUNTM_7, GruntM7SeenText, GruntM7BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM7AfterBattleText
|
writetext GruntM7AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -95,7 +95,7 @@ TrainerGruntM8:
|
|||||||
trainer GRUNTM, GRUNTM_8, EVENT_BEAT_ROCKET_GRUNTM_8, GruntM8SeenText, GruntM8BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_8, EVENT_BEAT_ROCKET_GRUNTM_8, GruntM8SeenText, GruntM8BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM8AfterBattleText
|
writetext GruntM8AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -106,7 +106,7 @@ TrainerGruntM9:
|
|||||||
trainer GRUNTM, GRUNTM_9, EVENT_BEAT_ROCKET_GRUNTM_9, GruntM9SeenText, GruntM9BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_9, EVENT_BEAT_ROCKET_GRUNTM_9, GruntM9SeenText, GruntM9BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM9AfterBattleText
|
writetext GruntM9AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -117,7 +117,7 @@ TrainerScientistMarc:
|
|||||||
trainer SCIENTIST, MARC, EVENT_BEAT_SCIENTIST_MARC, ScientistMarcSeenText, ScientistMarcBeatenText, 0, .Script
|
trainer SCIENTIST, MARC, EVENT_BEAT_SCIENTIST_MARC, ScientistMarcSeenText, ScientistMarcBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext ScientistMarcAfterBattleText
|
writetext ScientistMarcAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -57,7 +57,7 @@ TrainerGruntM10:
|
|||||||
trainer GRUNTM, GRUNTM_10, EVENT_BEAT_ROCKET_GRUNTM_10, GruntM10SeenText, GruntM10BeatenText, 0, .Script
|
trainer GRUNTM, GRUNTM_10, EVENT_BEAT_ROCKET_GRUNTM_10, GruntM10SeenText, GruntM10BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntM10AfterBattleText
|
writetext GruntM10AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -68,7 +68,7 @@ TrainerExecutivem2:
|
|||||||
trainer EXECUTIVEM, EXECUTIVEM_2, EVENT_BEAT_ROCKET_EXECUTIVEM_2, Executivem2SeenText, Executivem2BeatenText, 0, .Script
|
trainer EXECUTIVEM, EXECUTIVEM_2, EVENT_BEAT_ROCKET_EXECUTIVEM_2, Executivem2SeenText, Executivem2BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext Executivem2AfterBattleText
|
writetext Executivem2AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -79,7 +79,7 @@ TrainerGruntF4:
|
|||||||
trainer GRUNTF, GRUNTF_4, EVENT_BEAT_ROCKET_GRUNTF_4, GruntF4SeenText, GruntF4BeatenText, 0, .Script
|
trainer GRUNTF, GRUNTF_4, EVENT_BEAT_ROCKET_GRUNTF_4, GruntF4SeenText, GruntF4BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext GruntF4AfterBattleText
|
writetext GruntF4AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -90,7 +90,7 @@ TrainerScientistRich:
|
|||||||
trainer SCIENTIST, RICH, EVENT_BEAT_SCIENTIST_RICH, ScientistRichSeenText, ScientistRichBeatenText, 0, .Script
|
trainer SCIENTIST, RICH, EVENT_BEAT_SCIENTIST_RICH, ScientistRichSeenText, ScientistRichBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext ScientistRichAfterBattleText
|
writetext ScientistRichAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -69,7 +69,7 @@ TrainerExecutivef1:
|
|||||||
trainer EXECUTIVEF, EXECUTIVEF_1, EVENT_BEAT_ROCKET_EXECUTIVEF_1, Executivef1SeenText, Executivef1BeatenText, 0, .Script
|
trainer EXECUTIVEF, EXECUTIVEF_1, EVENT_BEAT_ROCKET_EXECUTIVEF_1, Executivef1SeenText, Executivef1BeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext Executivef1AfterBattleText
|
writetext Executivef1AfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -12,7 +12,7 @@ TrainerSchoolboyDanny:
|
|||||||
trainer SCHOOLBOY, DANNY, EVENT_BEAT_SCHOOLBOY_DANNY, SchoolboyDannySeenText, SchoolboyDannyBeatenText, 0, .Script
|
trainer SCHOOLBOY, DANNY, EVENT_BEAT_SCHOOLBOY_DANNY, SchoolboyDannySeenText, SchoolboyDannyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyDannyAfterBattleText
|
writetext SchoolboyDannyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -23,7 +23,7 @@ TrainerCooltrainerfQuinn:
|
|||||||
trainer COOLTRAINERF, QUINN, EVENT_BEAT_COOLTRAINERF_QUINN, CooltrainerfQuinnSeenText, CooltrainerfQuinnBeatenText, 0, .Script
|
trainer COOLTRAINERF, QUINN, EVENT_BEAT_COOLTRAINERF_QUINN, CooltrainerfQuinnSeenText, CooltrainerfQuinnBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CooltrainerfQuinnAfterBattleText
|
writetext CooltrainerfQuinnAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -11,7 +11,7 @@ TrainerHikerJim:
|
|||||||
trainer HIKER, JIM, EVENT_BEAT_HIKER_JIM, HikerJimSeenText, HikerJimBeatenText, 0, .Script
|
trainer HIKER, JIM, EVENT_BEAT_HIKER_JIM, HikerJimSeenText, HikerJimBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext HikerJimAfterBattleText
|
writetext HikerJimAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -22,7 +22,7 @@ TrainerPokefanmRobert:
|
|||||||
trainer POKEFANM, ROBERT, EVENT_BEAT_POKEFANM_ROBERT, PokefanmRobertSeenText, PokefanmRobertBeatenText, 0, .Script
|
trainer POKEFANM, ROBERT, EVENT_BEAT_POKEFANM_ROBERT, PokefanmRobertSeenText, PokefanmRobertBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmRobertAfterBattleText
|
writetext PokefanmRobertAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -14,7 +14,7 @@ TrainerYoungsterOwen:
|
|||||||
trainer YOUNGSTER, OWEN, EVENT_BEAT_YOUNGSTER_OWEN, YoungsterOwenSeenText, YoungsterOwenBeatenText, 0, .Script
|
trainer YOUNGSTER, OWEN, EVENT_BEAT_YOUNGSTER_OWEN, YoungsterOwenSeenText, YoungsterOwenBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext YoungsterOwenAfterBattleText
|
writetext YoungsterOwenAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -25,7 +25,7 @@ TrainerYoungsterJason:
|
|||||||
trainer YOUNGSTER, JASON, EVENT_BEAT_YOUNGSTER_JASON, YoungsterJasonSeenText, YoungsterJasonBeatenText, 0, .Script
|
trainer YOUNGSTER, JASON, EVENT_BEAT_YOUNGSTER_JASON, YoungsterJasonSeenText, YoungsterJasonBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext YoungsterJasonAfterBattleText
|
writetext YoungsterJasonAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -36,7 +36,7 @@ TrainerPsychicHerman:
|
|||||||
trainer PSYCHIC_T, HERMAN, EVENT_BEAT_PSYCHIC_HERMAN, PsychicHermanSeenText, PsychicHermanBeatenText, 0, .Script
|
trainer PSYCHIC_T, HERMAN, EVENT_BEAT_PSYCHIC_HERMAN, PsychicHermanSeenText, PsychicHermanBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PsychicHermanAfterBattleText
|
writetext PsychicHermanAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -47,7 +47,7 @@ TrainerPsychicFidel:
|
|||||||
trainer PSYCHIC_T, FIDEL, EVENT_BEAT_PSYCHIC_FIDEL, PsychicFidelSeenText, PsychicFidelBeatenText, 0, .Script
|
trainer PSYCHIC_T, FIDEL, EVENT_BEAT_PSYCHIC_FIDEL, PsychicFidelSeenText, PsychicFidelBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PsychicFidelAfterBattleText
|
writetext PsychicFidelAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -15,7 +15,7 @@ TrainerFisherKyle:
|
|||||||
trainer FISHER, KYLE, EVENT_BEAT_FISHER_KYLE, FisherKyleSeenText, FisherKyleBeatenText, 0, .Script
|
trainer FISHER, KYLE, EVENT_BEAT_FISHER_KYLE, FisherKyleSeenText, FisherKyleBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherKyleAfterBattleText
|
writetext FisherKyleAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -26,7 +26,7 @@ TrainerFisherMartin:
|
|||||||
trainer FISHER, MARTIN, EVENT_BEAT_FISHER_MARTIN, FisherMartinSeenText, FisherMartinBeatenText, 0, .Script
|
trainer FISHER, MARTIN, EVENT_BEAT_FISHER_MARTIN, FisherMartinSeenText, FisherMartinBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherMartinAfterBattleText
|
writetext FisherMartinAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -37,7 +37,7 @@ TrainerFisherStephen:
|
|||||||
trainer FISHER, STEPHEN, EVENT_BEAT_FISHER_STEPHEN, FisherStephenSeenText, FisherStephenBeatenText, 0, .Script
|
trainer FISHER, STEPHEN, EVENT_BEAT_FISHER_STEPHEN, FisherStephenSeenText, FisherStephenBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherStephenAfterBattleText
|
writetext FisherStephenAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -48,7 +48,7 @@ TrainerFisherBarney:
|
|||||||
trainer FISHER, BARNEY, EVENT_BEAT_FISHER_BARNEY, FisherBarneySeenText, FisherBarneyBeatenText, 0, .Script
|
trainer FISHER, BARNEY, EVENT_BEAT_FISHER_BARNEY, FisherBarneySeenText, FisherBarneyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherBarneyAfterBattleText
|
writetext FisherBarneyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -14,7 +14,7 @@ TrainerPokefanmAlex:
|
|||||||
trainer POKEFANM, ALEX, EVENT_BEAT_POKEFANM_ALEX, PokefanmAlexSeenText, PokefanmAlexBeatenText, 0, .Script
|
trainer POKEFANM, ALEX, EVENT_BEAT_POKEFANM_ALEX, PokefanmAlexSeenText, PokefanmAlexBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmAlexAfterBattleText
|
writetext PokefanmAlexAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -25,7 +25,7 @@ TrainerPokefanmJoshua:
|
|||||||
trainer POKEFANM, JOSHUA, EVENT_BEAT_POKEFANM_JOSHUA, PokefanmJoshuaSeenText, PokefanmJoshuaBeatenText, 0, .Script
|
trainer POKEFANM, JOSHUA, EVENT_BEAT_POKEFANM_JOSHUA, PokefanmJoshuaSeenText, PokefanmJoshuaBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmJoshuaAfterBattleText
|
writetext PokefanmJoshuaAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -36,7 +36,7 @@ TrainerBirdKeeperPerry:
|
|||||||
trainer BIRD_KEEPER, PERRY, EVENT_BEAT_BIRD_KEEPER_PERRY, BirdKeeperPerrySeenText, BirdKeeperPerryBeatenText, 0, .Script
|
trainer BIRD_KEEPER, PERRY, EVENT_BEAT_BIRD_KEEPER_PERRY, BirdKeeperPerrySeenText, BirdKeeperPerryBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperPerryAfterBattleText
|
writetext BirdKeeperPerryAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -47,7 +47,7 @@ TrainerBirdKeeperBret:
|
|||||||
trainer BIRD_KEEPER, BRET, EVENT_BEAT_BIRD_KEEPER_BRET, BirdKeeperBretSeenText, BirdKeeperBretBeatenText, 0, .Script
|
trainer BIRD_KEEPER, BRET, EVENT_BEAT_BIRD_KEEPER_BRET, BirdKeeperBretSeenText, BirdKeeperBretBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperBretAfterBattleText
|
writetext BirdKeeperBretAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -58,7 +58,7 @@ TrainerHikerKenny:
|
|||||||
trainer HIKER, KENNY, EVENT_BEAT_HIKER_KENNY, HikerKennySeenText, HikerKennyBeatenText, 0, .Script
|
trainer HIKER, KENNY, EVENT_BEAT_HIKER_KENNY, HikerKennySeenText, HikerKennyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext HikerKennyAfterBattleText
|
writetext HikerKennyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -21,7 +21,7 @@ TrainerPokefanmCarter:
|
|||||||
trainer POKEFANM, CARTER, EVENT_BEAT_POKEFANM_CARTER, PokefanmCarterSeenText, PokefanmCarterBeatenText, 0, .Script
|
trainer POKEFANM, CARTER, EVENT_BEAT_POKEFANM_CARTER, PokefanmCarterSeenText, PokefanmCarterBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmCarterAfterBattleText
|
writetext PokefanmCarterAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -32,7 +32,7 @@ TrainerBirdKeeperRoy:
|
|||||||
trainer BIRD_KEEPER, ROY, EVENT_BEAT_BIRD_KEEPER_ROY, BirdKeeperRoySeenText, BirdKeeperRoyBeatenText, 0, .Script
|
trainer BIRD_KEEPER, ROY, EVENT_BEAT_BIRD_KEEPER_ROY, BirdKeeperRoySeenText, BirdKeeperRoyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperRoyAfterBattleText
|
writetext BirdKeeperRoyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -43,7 +43,7 @@ TrainerPokefanmTrevor:
|
|||||||
trainer POKEFANM, TREVOR, EVENT_BEAT_POKEFANM_TREVOR, PokefanmTrevorSeenText, PokefanmTrevorBeatenText, 0, .Script
|
trainer POKEFANM, TREVOR, EVENT_BEAT_POKEFANM_TREVOR, PokefanmTrevorSeenText, PokefanmTrevorBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext PokefanmTrevorAfterBattleText
|
writetext PokefanmTrevorAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -16,7 +16,7 @@ TrainerTeacherColette:
|
|||||||
trainer TEACHER, COLETTE, EVENT_BEAT_TEACHER_COLETTE, TeacherColetteSeenText, TeacherColetteBeatenText, 0, .Script
|
trainer TEACHER, COLETTE, EVENT_BEAT_TEACHER_COLETTE, TeacherColetteSeenText, TeacherColetteBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TeacherColetteAfterBattleText
|
writetext TeacherColetteAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -27,7 +27,7 @@ TrainerTeacherHillary:
|
|||||||
trainer TEACHER, HILLARY, EVENT_BEAT_TEACHER_HILLARY, TeacherHillarySeenText, TeacherHillaryBeatenText, 0, .Script
|
trainer TEACHER, HILLARY, EVENT_BEAT_TEACHER_HILLARY, TeacherHillarySeenText, TeacherHillaryBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext TeacherHillaryAfterBattleText
|
writetext TeacherHillaryAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -38,7 +38,7 @@ TrainerSchoolboyKipp:
|
|||||||
trainer SCHOOLBOY, KIPP, EVENT_BEAT_SCHOOLBOY_KIP, SchoolboyKippSeenText, SchoolboyKippBeatenText, 0, .Script
|
trainer SCHOOLBOY, KIPP, EVENT_BEAT_SCHOOLBOY_KIP, SchoolboyKippSeenText, SchoolboyKippBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyKippAfterBattleText
|
writetext SchoolboyKippAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -49,7 +49,7 @@ TrainerSchoolboyTommy:
|
|||||||
trainer SCHOOLBOY, TOMMY, EVENT_BEAT_SCHOOLBOY_TOMMY, SchoolboyTommySeenText, SchoolboyTommyBeatenText, 0, .Script
|
trainer SCHOOLBOY, TOMMY, EVENT_BEAT_SCHOOLBOY_TOMMY, SchoolboyTommySeenText, SchoolboyTommyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyTommyAfterBattleText
|
writetext SchoolboyTommyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -60,7 +60,7 @@ TrainerSchoolboyJohnny:
|
|||||||
trainer SCHOOLBOY, JOHNNY, EVENT_BEAT_SCHOOLBOY_JOHNNY, SchoolboyJohnnySeenText, SchoolboyJohnnyBeatenText, 0, .Script
|
trainer SCHOOLBOY, JOHNNY, EVENT_BEAT_SCHOOLBOY_JOHNNY, SchoolboyJohnnySeenText, SchoolboyJohnnyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyJohnnyAfterBattleText
|
writetext SchoolboyJohnnyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -71,7 +71,7 @@ TrainerSchoolboyBilly:
|
|||||||
trainer SCHOOLBOY, BILLY, EVENT_BEAT_SCHOOLBOY_BILLY, SchoolboyBillySeenText, SchoolboyBillyBeatenText, 0, .Script
|
trainer SCHOOLBOY, BILLY, EVENT_BEAT_SCHOOLBOY_BILLY, SchoolboyBillySeenText, SchoolboyBillyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyBillyAfterBattleText
|
writetext SchoolboyBillyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -6,9 +6,9 @@ Route16_MapScripts:
|
|||||||
|
|
||||||
.AlwaysOnBike:
|
.AlwaysOnBike:
|
||||||
checkcode VAR_YCOORD
|
checkcode VAR_YCOORD
|
||||||
if_less_than 5, .CanWalk
|
ifless 5, .CanWalk
|
||||||
checkcode VAR_XCOORD
|
checkcode VAR_XCOORD
|
||||||
if_greater_than 13, .CanWalk
|
ifgreater 13, .CanWalk
|
||||||
setflag ENGINE_ALWAYS_ON_BIKE
|
setflag ENGINE_ALWAYS_ON_BIKE
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@@ -19,7 +19,7 @@ TrainerBikerCharles:
|
|||||||
trainer BIKER, CHARLES, EVENT_BEAT_BIKER_CHARLES, BikerCharlesSeenText, BikerCharlesBeatenText, 0, .Script
|
trainer BIKER, CHARLES, EVENT_BEAT_BIKER_CHARLES, BikerCharlesSeenText, BikerCharlesBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BikerCharlesAfterBattleText
|
writetext BikerCharlesAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -30,7 +30,7 @@ TrainerBikerRiley:
|
|||||||
trainer BIKER, RILEY, EVENT_BEAT_BIKER_RILEY, BikerRileySeenText, BikerRileyBeatenText, 0, .Script
|
trainer BIKER, RILEY, EVENT_BEAT_BIKER_RILEY, BikerRileySeenText, BikerRileyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BikerRileyAfterBattleText
|
writetext BikerRileyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -41,7 +41,7 @@ TrainerBikerJoel:
|
|||||||
trainer BIKER, JOEL, EVENT_BEAT_BIKER_JOEL, BikerJoelSeenText, BikerJoelBeatenText, 0, .Script
|
trainer BIKER, JOEL, EVENT_BEAT_BIKER_JOEL, BikerJoelSeenText, BikerJoelBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BikerJoelAfterBattleText
|
writetext BikerJoelAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -52,7 +52,7 @@ TrainerBikerGlenn:
|
|||||||
trainer BIKER, GLENN, EVENT_BEAT_BIKER_GLENN, BikerGlennSeenText, BikerGlennBeatenText, 0, .Script
|
trainer BIKER, GLENN, EVENT_BEAT_BIKER_GLENN, BikerGlennSeenText, BikerGlennBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BikerGlennAfterBattleText
|
writetext BikerGlennAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -11,7 +11,7 @@ TrainerBirdKeeperBoris:
|
|||||||
trainer BIRD_KEEPER, BORIS, EVENT_BEAT_BIRD_KEEPER_BORIS, BirdKeeperBorisSeenText, BirdKeeperBorisBeatenText, 0, .Script
|
trainer BIRD_KEEPER, BORIS, EVENT_BEAT_BIRD_KEEPER_BORIS, BirdKeeperBorisSeenText, BirdKeeperBorisBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperBorisAfterBattleText
|
writetext BirdKeeperBorisAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -22,7 +22,7 @@ TrainerBirdKeeperBob:
|
|||||||
trainer BIRD_KEEPER, BOB, EVENT_BEAT_BIRD_KEEPER_BOB, BirdKeeperBobSeenText, BirdKeeperBobBeatenText, 0, .Script
|
trainer BIRD_KEEPER, BOB, EVENT_BEAT_BIRD_KEEPER_BOB, BirdKeeperBobSeenText, BirdKeeperBobBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BirdKeeperBobAfterBattleText
|
writetext BirdKeeperBobAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -28,7 +28,7 @@ TrainerSwimmerfDawn:
|
|||||||
trainer SWIMMERF, DAWN, EVENT_BEAT_SWIMMERF_DAWN, SwimmerfDawnSeenText, SwimmerfDawnBeatenText, 0, .Script
|
trainer SWIMMERF, DAWN, EVENT_BEAT_SWIMMERF_DAWN, SwimmerfDawnSeenText, SwimmerfDawnBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfDawnAfterBattleText
|
writetext SwimmerfDawnAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -39,7 +39,7 @@ TrainerSwimmermHarold:
|
|||||||
trainer SWIMMERM, HAROLD, EVENT_BEAT_SWIMMERM_HAROLD, SwimmermHaroldSeenText, SwimmermHaroldBeatenText, 0, .Script
|
trainer SWIMMERM, HAROLD, EVENT_BEAT_SWIMMERM_HAROLD, SwimmermHaroldSeenText, SwimmermHaroldBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermHaroldAfterBattleText
|
writetext SwimmermHaroldAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -50,7 +50,7 @@ TrainerSwimmermJerome:
|
|||||||
trainer SWIMMERM, JEROME, EVENT_BEAT_SWIMMERM_JEROME, SwimmermJeromeSeenText, SwimmermJeromeBeatenText, 0, .Script
|
trainer SWIMMERM, JEROME, EVENT_BEAT_SWIMMERM_JEROME, SwimmermJeromeSeenText, SwimmermJeromeBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermJeromeAfterBattleText
|
writetext SwimmermJeromeAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -61,7 +61,7 @@ TrainerSwimmermTucker:
|
|||||||
trainer SWIMMERM, TUCKER, EVENT_BEAT_SWIMMERM_TUCKER, SwimmermTuckerSeenText, SwimmermTuckerBeatenText, 0, .Script
|
trainer SWIMMERM, TUCKER, EVENT_BEAT_SWIMMERM_TUCKER, SwimmermTuckerSeenText, SwimmermTuckerBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermTuckerAfterBattleText
|
writetext SwimmermTuckerAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -17,7 +17,7 @@ TrainerBugCatcherRob:
|
|||||||
trainer BUG_CATCHER, ROB, EVENT_BEAT_BUG_CATCHER_ROB, BugCatcherRobSeenText, BugCatcherRobBeatenText, 0, .Script
|
trainer BUG_CATCHER, ROB, EVENT_BEAT_BUG_CATCHER_ROB, BugCatcherRobSeenText, BugCatcherRobBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherRobAfterBattleText
|
writetext BugCatcherRobAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -28,7 +28,7 @@ TrainerBugCatcherEd:
|
|||||||
trainer BUG_CATCHER, ED, EVENT_BEAT_BUG_CATCHER_ED, BugCatcherEdSeenText, BugCatcherEdBeatenText, 0, .Script
|
trainer BUG_CATCHER, ED, EVENT_BEAT_BUG_CATCHER_ED, BugCatcherEdSeenText, BugCatcherEdBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherEdAfterBattleText
|
writetext BugCatcherEdAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -39,7 +39,7 @@ TrainerBugCatcherDoug:
|
|||||||
trainer BUG_CATCHER, DOUG, EVENT_BEAT_BUG_CATCHER_DOUG, BugCatcherDougSeenText, BugCatcherDougBeatenText, 0, .Script
|
trainer BUG_CATCHER, DOUG, EVENT_BEAT_BUG_CATCHER_DOUG, BugCatcherDougSeenText, BugCatcherDougBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext BugCatcherDougAfterBattleText
|
writetext BugCatcherDougAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -17,7 +17,7 @@ TrainerSwimmerfNicole:
|
|||||||
trainer SWIMMERF, NICOLE, EVENT_BEAT_SWIMMERF_NICOLE, SwimmerfNicoleSeenText, SwimmerfNicoleBeatenText, 0, .Script
|
trainer SWIMMERF, NICOLE, EVENT_BEAT_SWIMMERF_NICOLE, SwimmerfNicoleSeenText, SwimmerfNicoleBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfNicoleAfterBattleText
|
writetext SwimmerfNicoleAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -28,7 +28,7 @@ TrainerSwimmerfLori:
|
|||||||
trainer SWIMMERF, LORI, EVENT_BEAT_SWIMMERF_LORI, SwimmerfLoriSeenText, SwimmerfLoriBeatenText, 0, .Script
|
trainer SWIMMERF, LORI, EVENT_BEAT_SWIMMERF_LORI, SwimmerfLoriSeenText, SwimmerfLoriBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfLoriAfterBattleText
|
writetext SwimmerfLoriAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -39,7 +39,7 @@ TrainerSwimmermCameron:
|
|||||||
trainer SWIMMERM, CAMERON, EVENT_BEAT_SWIMMERM_CAMERON, SwimmermCameronSeenText, SwimmermCameronBeatenText, 0, .Script
|
trainer SWIMMERM, CAMERON, EVENT_BEAT_SWIMMERM_CAMERON, SwimmermCameronSeenText, SwimmermCameronBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermCameronAfterBattleText
|
writetext SwimmermCameronAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -12,7 +12,7 @@ TrainerSwimmermSeth:
|
|||||||
trainer SWIMMERM, SETH, EVENT_BEAT_SWIMMERM_SETH, SwimmermSethSeenText, SwimmermSethBeatenText, 0, .Script
|
trainer SWIMMERM, SETH, EVENT_BEAT_SWIMMERM_SETH, SwimmermSethSeenText, SwimmermSethBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmermSethAfterBattleText
|
writetext SwimmermSethAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -23,7 +23,7 @@ TrainerSwimmerfNikki:
|
|||||||
trainer SWIMMERF, NIKKI, EVENT_BEAT_SWIMMERF_NIKKI, SwimmerfNikkiSeenText, SwimmerfNikkiBeatenText, 0, .Script
|
trainer SWIMMERF, NIKKI, EVENT_BEAT_SWIMMERF_NIKKI, SwimmerfNikkiSeenText, SwimmerfNikkiBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SwimmerfNikkiAfterBattleText
|
writetext SwimmerfNikkiAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -34,7 +34,7 @@ TrainerFisherArnold:
|
|||||||
trainer FISHER, ARNOLD, EVENT_BEAT_FISHER_ARNOLD, FisherArnoldSeenText, FisherArnoldBeatenText, 0, .Script
|
trainer FISHER, ARNOLD, EVENT_BEAT_FISHER_ARNOLD, FisherArnoldSeenText, FisherArnoldBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext FisherArnoldAfterBattleText
|
writetext FisherArnoldAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
@@ -80,7 +80,7 @@ TrainerSchoolboyDudley:
|
|||||||
trainer SCHOOLBOY, DUDLEY, EVENT_BEAT_SCHOOLBOY_DUDLEY, SchoolboyDudleySeenText, SchoolboyDudleyBeatenText, 0, .Script
|
trainer SCHOOLBOY, DUDLEY, EVENT_BEAT_SCHOOLBOY_DUDLEY, SchoolboyDudleySeenText, SchoolboyDudleyBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyDudleyAfterBattleText
|
writetext SchoolboyDudleyAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -91,7 +91,7 @@ TrainerLassEllen:
|
|||||||
trainer LASS, ELLEN, EVENT_BEAT_LASS_ELLEN, LassEllenSeenText, LassEllenBeatenText, 0, .Script
|
trainer LASS, ELLEN, EVENT_BEAT_LASS_ELLEN, LassEllenSeenText, LassEllenBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassEllenAfterBattleText
|
writetext LassEllenAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -102,7 +102,7 @@ TrainerSchoolboyJoe:
|
|||||||
trainer SCHOOLBOY, JOE, EVENT_BEAT_SCHOOLBOY_JOE, SchoolboyJoeSeenText, SchoolboyJoeBeatenText, 0, .Script
|
trainer SCHOOLBOY, JOE, EVENT_BEAT_SCHOOLBOY_JOE, SchoolboyJoeSeenText, SchoolboyJoeBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SchoolboyJoeAfterBattleText
|
writetext SchoolboyJoeAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -113,7 +113,7 @@ TrainerLassLaura:
|
|||||||
trainer LASS, LAURA, EVENT_BEAT_LASS_LAURA, LassLauraSeenText, LassLauraBeatenText, 0, .Script
|
trainer LASS, LAURA, EVENT_BEAT_LASS_LAURA, LassLauraSeenText, LassLauraBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassLauraAfterBattleText
|
writetext LassLauraAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -124,7 +124,7 @@ TrainerCamperLloyd:
|
|||||||
trainer CAMPER, LLOYD, EVENT_BEAT_CAMPER_LLOYD, CamperLloydSeenText, CamperLloydBeatenText, 0, .Script
|
trainer CAMPER, LLOYD, EVENT_BEAT_CAMPER_LLOYD, CamperLloydSeenText, CamperLloydBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext CamperLloydAfterBattleText
|
writetext CamperLloydAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -135,7 +135,7 @@ TrainerLassShannon:
|
|||||||
trainer LASS, SHANNON, EVENT_BEAT_LASS_SHANNON, LassShannonSeenText, LassShannonBeatenText, 0, .Script
|
trainer LASS, SHANNON, EVENT_BEAT_LASS_SHANNON, LassShannonSeenText, LassShannonBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext LassShannonAfterBattleText
|
writetext LassShannonAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
@@ -146,7 +146,7 @@ TrainerSupernerdPat:
|
|||||||
trainer SUPER_NERD, PAT, EVENT_BEAT_SUPER_NERD_PAT, SupernerdPatSeenText, SupernerdPatBeatenText, 0, .Script
|
trainer SUPER_NERD, PAT, EVENT_BEAT_SUPER_NERD_PAT, SupernerdPatSeenText, SupernerdPatBeatenText, 0, .Script
|
||||||
|
|
||||||
.Script:
|
.Script:
|
||||||
end_if_just_battled
|
endifjustbattled
|
||||||
opentext
|
opentext
|
||||||
writetext SupernerdPatAfterBattleText
|
writetext SupernerdPatAfterBattleText
|
||||||
waitbutton
|
waitbutton
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user