2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_MapScripts::
|
2019-04-22 16:31:51 -04:00
|
|
|
map_script MAP_SCRIPT_ON_TRANSITION, MtPyre_Exterior_OnTransition
|
2017-11-09 19:21:31 -06:00
|
|
|
.byte 0
|
|
|
|
|
2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_OnTransition:
|
2019-11-09 12:23:30 -05:00
|
|
|
call MtPyre_Exterior_EventScript_CheckEnterFromSummit
|
2017-11-09 19:21:31 -06:00
|
|
|
end
|
|
|
|
|
2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_EventScript_CheckEnterFromSummit::
|
2018-05-19 18:02:43 +02:00
|
|
|
getplayerxy VAR_TEMP_0, VAR_TEMP_1
|
|
|
|
compare VAR_TEMP_1, 12
|
2019-11-09 12:23:30 -05:00
|
|
|
goto_if_lt MtPyre_Exterior_EventScript_EnterFromSummit
|
2017-11-09 19:21:31 -06:00
|
|
|
return
|
|
|
|
|
2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_EventScript_EnterFromSummit::
|
2019-12-01 19:19:47 -05:00
|
|
|
setweather WEATHER_FOG_HORIZONTAL
|
2017-11-09 19:21:31 -06:00
|
|
|
return
|
|
|
|
|
2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_EventScript_FogTrigger::
|
2019-12-01 19:19:47 -05:00
|
|
|
setweather WEATHER_FOG_HORIZONTAL
|
2017-11-09 19:21:31 -06:00
|
|
|
doweather
|
|
|
|
end
|
|
|
|
|
2021-07-20 15:18:31 -04:00
|
|
|
MtPyre_Exterior_EventScript_SunTrigger::
|
2018-12-24 16:23:58 -05:00
|
|
|
setweather WEATHER_SUNNY
|
2017-11-09 19:21:31 -06:00
|
|
|
doweather
|
|
|
|
end
|
|
|
|
|