2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_MapScripts::
|
2018-06-21 00:42:01 +02:00
|
|
|
.byte 0
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_EventScript_Clerk::
|
2018-06-21 00:42:01 +02:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-11-06 18:49:14 +01:00
|
|
|
msgbox Route110_SeasideCyclingRoadNorthEntrance_Text_GoAllOutOnCyclingRoad, MSGBOX_DEFAULT
|
2018-06-21 00:42:01 +02:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_EventScript_BikeCheck::
|
2018-06-21 00:42:01 +02:00
|
|
|
lockall
|
|
|
|
specialvar VAR_RESULT, GetPlayerAvatarBike
|
2021-11-19 05:06:30 +01:00
|
|
|
goto_if_eq VAR_RESULT, 0, Route110_SeasideCyclingRoadNorthEntrance_EventScript_NoBike
|
2018-06-21 00:42:01 +02:00
|
|
|
setflag FLAG_SYS_CYCLING_ROAD
|
|
|
|
setvar VAR_TEMP_1, 1
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_EventScript_NoBike::
|
2019-11-06 18:49:14 +01:00
|
|
|
msgbox Route110_SeasideCyclingRoadNorthEntrance_Text_TooDangerousToWalk, MSGBOX_DEFAULT
|
2018-06-21 00:42:01 +02:00
|
|
|
closemessage
|
2019-11-21 05:12:51 +01:00
|
|
|
applymovement OBJ_EVENT_ID_PLAYER, Route110_SeasideCyclingRoadNorthEntrance_Movement_PushPlayerBackFromCounter
|
2018-06-21 00:42:01 +02:00
|
|
|
waitmovement 0
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_Movement_PushPlayerBackFromCounter:
|
2018-06-21 00:42:01 +02:00
|
|
|
walk_left
|
|
|
|
step_end
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_EventScript_ClearCyclingRoad::
|
2018-06-21 00:42:01 +02:00
|
|
|
lockall
|
|
|
|
clearflag FLAG_SYS_CYCLING_ROAD
|
|
|
|
setvar VAR_TEMP_1, 0
|
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_Text_GoAllOutOnCyclingRoad:
|
2018-06-21 00:42:01 +02:00
|
|
|
.string "On CYCLING ROAD, you can go all out\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "and cycle as fast as you'd like.\p"
|
2018-06-21 00:42:01 +02:00
|
|
|
.string "It feels great to go that fast, but try\n"
|
|
|
|
.string "not to crash into anyone!$"
|
|
|
|
|
2021-07-20 21:18:31 +02:00
|
|
|
Route110_SeasideCyclingRoadNorthEntrance_Text_TooDangerousToWalk:
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "Sorry, you can't walk on CYCLING\n"
|
|
|
|
.string "ROAD. It's too dangerous.\p"
|
2018-06-21 00:42:01 +02:00
|
|
|
.string "Please come back with a BIKE.$"
|
|
|
|
|