You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Meaningful scene constant names
(Two common patterns: 0=default event and 1=nothing; and 0=nothing and 1=some event)
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
|
||||
MahoganyTown_MapScripts:
|
||||
db 2 ; scene scripts
|
||||
scene_script .DummyScene0 ; SCENE_MAHOGANYTOWN_0
|
||||
scene_script .DummyScene1 ; SCENE_MAHOGANYTOWN_1
|
||||
scene_script .DummyScene0 ; SCENE_DEFAULT
|
||||
scene_script .DummyScene1 ; SCENE_MAHOGANYTOWN_NOTHING
|
||||
|
||||
db 1 ; callbacks
|
||||
callback MAPCALLBACK_NEWMAP, .FlyPoint
|
||||
@@ -253,8 +253,8 @@ MahoganyTown_MapEvents:
|
||||
warp_event 9, 1, 3, ROUTE_43_MAHOGANY_GATE
|
||||
|
||||
db 2 ; coord events
|
||||
coord_event 19, 8, SCENE_MAHOGANYTOWN_0, UnknownScript_0x190013
|
||||
coord_event 19, 9, SCENE_MAHOGANYTOWN_0, UnknownScript_0x190013
|
||||
coord_event 19, 8, SCENE_DEFAULT, UnknownScript_0x190013
|
||||
coord_event 19, 9, SCENE_DEFAULT, UnknownScript_0x190013
|
||||
|
||||
db 4 ; bg events
|
||||
bg_event 1, 5, BGEVENT_READ, MahoganyTownSign
|
||||
|
||||
Reference in New Issue
Block a user