mirror of
https://github.com/pret/pokeemerald.git
synced 2026-09-26 12:42:56 -04:00
116 lines
3.2 KiB
C++
116 lines
3.2 KiB
C++
BattleFrontier_RankingHall_MapScripts::
|
|
.byte 0
|
|
|
|
BattleFrontier_RankingHall_EventScript_TowerSinglesRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_TOWER_SINGLES
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_TowerDoublesRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_TOWER_DOUBLES
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_TowerMultisRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_TOWER_MULTIS
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_TowerLinkRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_TOWER_LINK
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_ArenaRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_ARENA
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_PalaceRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_PALACE
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_FactoryRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_FACTORY
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_DomeRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_DOME
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_PikeRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_PIKE
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_PyramidRecords::
|
|
lockall
|
|
setvar VAR_0x8005, RANKING_HALL_PYRAMID
|
|
goto BattleFrontier_RankingHall_EventScript_ShowRecords
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_ShowRecords::
|
|
special ShowRankingHallRecordsWindow
|
|
waitbuttonpress
|
|
special ScrollRankingHallRecordsWindow
|
|
waitbuttonpress
|
|
special RemoveRecordsWindow
|
|
releaseall
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_Attendant::
|
|
msgbox BattleFrontier_RankingHall_Text_ExplainRankingHall, MSGBOX_NPC
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_DomePikeFactoryRecordsSign::
|
|
msgbox BattleFrontier_RankingHall_Text_DomePikeFactoryRecords, MSGBOX_SIGN
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_PalaceArenaPyramidRecordsSIgn::
|
|
msgbox BattleFrontier_RankingHall_Text_PalaceArenaPyramidRecords, MSGBOX_SIGN
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_NinjaBoy::
|
|
lock
|
|
faceplayer
|
|
msgbox BattleFrontier_RankingHall_Text_IsYourNameOnThisList, MSGBOX_YESNO
|
|
goto_if_eq VAR_RESULT, YES, BattleFrontier_RankingHall_EventScript_NinjaBoyNameOnList
|
|
msgbox BattleFrontier_RankingHall_Text_WorkHarderIfYouSawFriendsName, MSGBOX_DEFAULT
|
|
release
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_NinjaBoyNameOnList::
|
|
msgbox BattleFrontier_RankingHall_Text_WowThatsSuper, MSGBOX_DEFAULT
|
|
release
|
|
end
|
|
|
|
BattleFrontier_RankingHall_EventScript_Boy::
|
|
msgbox BattleFrontier_RankingHall_Text_MyNamesNotUpThere, MSGBOX_NPC
|
|
end
|
|
|
|
.ifdef FRENCH
|
|
.include "data/maps/BattleFrontier_RankingHall/text_fr.inc"
|
|
.else
|
|
.ifdef ITALIAN
|
|
.include "data/maps/BattleFrontier_RankingHall/text_it.inc"
|
|
.else
|
|
.ifdef SPANISH
|
|
.include "data/maps/BattleFrontier_RankingHall/text_es.inc"
|
|
.else
|
|
.include "data/maps/BattleFrontier_RankingHall/text.inc"
|
|
.endif
|
|
.endif
|
|
.endif
|