mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 11:44:17 +01:00
Clean up a few unlabeled scripts
This commit is contained in:
parent
91ab30fa71
commit
734a15135f
@ -1,5 +1,5 @@
|
||||
@ Note: LOCALIDs shared with BattleFrontier_BattlePikeRoomNormal
|
||||
BattleFrontier_BattlePikeRoomNormal_MapScripts_2C3E1B: @ 82C3E1B
|
||||
BattleFrontier_BattlePikeRoom_MapScripts: @ 82C3E1B
|
||||
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_BattlePikeRoom_OnTransition
|
||||
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattlePikeRoom_OnWarp
|
||||
|
||||
|
@ -1,16 +1,3 @@
|
||||
@ Unused
|
||||
EventScript_28CCAA:: @ 828CCAA
|
||||
setvar VAR_0x8005, 8
|
||||
special InterviewBefore
|
||||
compare VAR_RESULT, 1
|
||||
goto_if_eq EventScript_UnusedRet
|
||||
setvar VAR_0x8005, 8
|
||||
special InterviewAfter
|
||||
return
|
||||
|
||||
EventScript_UnusedRet:: @ 828CCC6
|
||||
return
|
||||
|
||||
@ Gabby and Ty always move to the same spots for the first 5 battles
|
||||
@ From the 6th battle onwards, they move randomly between locations 6-8
|
||||
@ Note: The local IDs of Gabby and Ty are hard-coded in GabbyAndTySetScriptVarsToObjectEventLocalIds
|
||||
|
@ -342,3 +342,16 @@ BattleFrontier_BattleTowerLobby_EventScript_ShowOrHideReporter:: @ 828CC84
|
||||
BattleFrontier_BattleTowerLobby_EventScript_HideReporter:: @ 828CCA6
|
||||
setflag FLAG_HIDE_BATTLE_TOWER_REPORTER
|
||||
return
|
||||
|
||||
@ Unused
|
||||
EventScript_ContestLiveInterview:: @ 828CCAA
|
||||
setvar VAR_0x8005, TVSHOW_CONTEST_LIVE_UPDATES
|
||||
special InterviewBefore
|
||||
compare VAR_RESULT, TRUE
|
||||
goto_if_eq EventScript_ContestLiveInterviewEnd
|
||||
setvar VAR_0x8005, TVSHOW_CONTEST_LIVE_UPDATES
|
||||
special InterviewAfter
|
||||
return
|
||||
|
||||
EventScript_ContestLiveInterviewEnd:: @ 828CCC6
|
||||
return
|
||||
|
@ -157,7 +157,7 @@ SecretBase_EventScript_InitSecretBase:: @ 8275B5B
|
||||
end
|
||||
|
||||
SecretBase_EventScript_FirstEntrance:: @ 8275B81
|
||||
applymovement OBJ_EVENT_ID_PLAYER, SecretBase_Movement_275BB4
|
||||
applymovement OBJ_EVENT_ID_PLAYER, SecretBase_Movement_EnterBase
|
||||
waitmovement 0
|
||||
setvar VAR_INIT_SECRET_BASE, 1
|
||||
msgbox SecretBase_Text_WantToMakeYourSecretBaseHere, MSGBOX_YESNO
|
||||
@ -175,7 +175,7 @@ SecretBase_EventScript_SetAsBase:: @ 8275BAB
|
||||
waitstate
|
||||
end
|
||||
|
||||
SecretBase_Movement_275BB4: @ 8275BB4
|
||||
SecretBase_Movement_EnterBase: @ 8275BB4
|
||||
walk_up
|
||||
walk_up
|
||||
step_end
|
||||
|
@ -1,8 +1,9 @@
|
||||
gUnknown_0827EA0C:: @ 827EA0C
|
||||
gContestPaintingCaption:: @ 827EA0C
|
||||
.string "{STR_VAR_1}\n"
|
||||
.string "{STR_VAR_2}'s {STR_VAR_3}$"
|
||||
|
||||
gUnknown_0827EA17:: @ 827EA17
|
||||
@ Unused
|
||||
gContestPaintingContest:: @ 827EA17
|
||||
.string "CONTEST$"
|
||||
|
||||
gContestRankNormal::
|
||||
|
@ -44,7 +44,7 @@ static void PrintContestPaintingCaption(u8, u8);
|
||||
static void VBlankCB_ContestPainting(void);
|
||||
static void _InitContestMonPixels(u8 *spriteGfx, u16 *palette, u16 (*destPixels)[64][64]);
|
||||
|
||||
extern const u8 gUnknown_0827EA0C[];
|
||||
extern const u8 gContestPaintingCaption[];
|
||||
extern const u8 gContestCoolness[];
|
||||
extern const u8 gContestBeauty[];
|
||||
extern const u8 gContestCuteness[];
|
||||
@ -297,7 +297,7 @@ static void PrintContestPaintingCaption(u8 contestType, bool8 arg1)
|
||||
StringCopy(gStringVar2, gContestPaintingWinner->trainerName);
|
||||
sub_81DB5AC(gStringVar2);
|
||||
StringCopy(gStringVar3, gContestPaintingWinner->monName);
|
||||
StringExpandPlaceholders(gStringVar4, gUnknown_0827EA0C);
|
||||
StringExpandPlaceholders(gStringVar4, gContestPaintingCaption);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user