mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 15:45:24 +13:00
Fix game time labels
This commit is contained in:
parent
1a5a108bdf
commit
28dc5686b0
50 changed files with 80 additions and 78 deletions
|
|
@ -10,7 +10,7 @@ AgathaScript: ; 7642d (1d:642d)
|
|||
|
||||
AgathaShowOrHideExitBlock: ; 76443 (1d:6443)
|
||||
; Blocks or clears the exit to the next room.
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ BrunoScript: ; 762d6 (1d:62d6)
|
|||
|
||||
BrunoShowOrHideExitBlock: ; 762ec (1d:62ec)
|
||||
; Blocks or clears the exit to the next room.
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ CeladonGameCornerScript: ; 48bbd (12:4bbd)
|
|||
jp CallFunctionInTable
|
||||
|
||||
CeladonGameCornerScript_48bcf: ; 48bcf (12:4bcf)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
ret z
|
||||
|
|
@ -24,7 +24,7 @@ CeladonGameCornerScript_48bcf: ; 48bcf (12:4bcf)
|
|||
ret
|
||||
|
||||
CeladonGameCornerScript_48bec: ; 48bec (12:4bec)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -109,7 +109,7 @@ CeladonGameCornerScript2: ; 48c69 (12:4c69)
|
|||
ld a, HS_GAME_CORNER_ROCKET
|
||||
ld [wMissableObjectIndex], a
|
||||
predef HideObject
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
set 6, [hl]
|
||||
ld a, $0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
CeladonGymScript: ; 4890a (12:490a)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
call nz, CeladonGymScript_48927
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
CeladonMartElevatorScript: ; 48600 (12:4600)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
push hl
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
CeruleanGymScript: ; 5c6b3 (17:46b3)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
call nz, CeruleanGymScript_5c6d0
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ CinnabarGymScript: ; 7574a (1d:574a)
|
|||
jp CallFunctionInTable
|
||||
|
||||
CinnabarGymScript_75759: ; 75759 (1d:5759)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
push hl
|
||||
|
|
@ -165,7 +165,7 @@ CinnabarGymScript3_75857: ; 75857 (1d:5857)
|
|||
; deactivate gym trainers
|
||||
SetEventRange EVENT_BEAT_CINNABAR_GYM_TRAINER_0, EVENT_BEAT_CINNABAR_GYM_TRAINER_6
|
||||
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
|
||||
jp CinnabarGymScript_75792
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
CinnabarIslandScript: ; 1ca19 (7:4a19)
|
||||
call EnableAutoTextBoxDrawing
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ResetEvent EVENT_MANSION_SWITCH_ON
|
||||
ResetEvent EVENT_LAB_STILL_REVIVING_FOSSIL
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ FuchsiaGymScript: ; 7543d (1d:543d)
|
|||
ret
|
||||
|
||||
FuchsiaGymScript_75453: ; 75453 (1d:5453)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
IndigoPlateauLobbyScript: ; 19c5b (6:5c5b)
|
||||
call Serial_TryEstablishingExternallyClockedConnection
|
||||
call EnableAutoTextBoxDrawing
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ LanceScript: ; 5a2ae (16:62ae)
|
|||
ret
|
||||
|
||||
LanceShowOrHideEntranceBlocks: ; 5a2c4 (16:62c4)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -71,7 +71,7 @@ LanceScript0: ; 5a305 (16:6305)
|
|||
jr z, WalkToLance
|
||||
CheckAndSetEvent EVENT_LANCES_ROOM_LOCK_DOOR
|
||||
ret nz
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ld a, SFX_GO_INSIDE
|
||||
call PlaySound
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ LoreleiScript: ; 7617b (1d:617b)
|
|||
|
||||
LoreleiShowOrHideExitBlock: ; 76191 (1d:6191)
|
||||
; Blocks or clears the exit to the next room.
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Mansion1Script: ; 442af (11:42af)
|
|||
ret
|
||||
|
||||
Mansion1Subscript1: ; 442c5 (11:42c5)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -106,7 +106,7 @@ Mansion1Text4: ; 4435a (11:435a)
|
|||
jr nz, .asm_4438c
|
||||
ld a, $1
|
||||
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ld hl, MansionSwitchPressedText
|
||||
call PrintText
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Mansion2Script: ; 51fd8 (14:5fd8)
|
|||
ret
|
||||
|
||||
Mansion2Script_51fee: ; 51fee (14:5fee)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -112,7 +112,7 @@ Mansion2Text5: ; 52087 (14:6087)
|
|||
jr nz, .asm_520b9
|
||||
ld a, $1
|
||||
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ld hl, Mansion2Text_520c7
|
||||
call PrintText
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Mansion3Script: ; 521ee (14:61ee)
|
|||
ret
|
||||
|
||||
Mansion3Script_52204: ; 52204 (14:6204)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Mansion4Script: ; 523b9 (14:63b9)
|
|||
ret
|
||||
|
||||
Mansion4Script_523cf: ; 523cf (14:63cf)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PewterGymScript: ; 5c387 (17:4387)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
call nz, PewterGymScript_5c3a4
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ RocketHideout1Script: ; 44bca (11:4bca)
|
|||
ret
|
||||
|
||||
RocketHideout1Script_44be0: ; 44be0 (11:4be0)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ RocketHideout4Script: ; 4545d (11:545d)
|
|||
ret
|
||||
|
||||
RocketHideout4Script_45473: ; 45473 (11:5473)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -65,7 +65,7 @@ RocketHideout4Script3: ; 454b6 (11:54b6)
|
|||
call GBFadeInFromBlack
|
||||
xor a
|
||||
ld [wJoyIgnore], a
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ld a, $0
|
||||
ld [wRocketHideout4CurScript], a
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
RocketHideoutElevatorScript: ; 45710 (11:5710)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
push hl
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Route23Script: ; 511da (14:51da)
|
|||
jp CallFunctionInTable
|
||||
|
||||
Route23Script_511e9: ; 511e9 (14:51e9)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Route25Script: ; 515cb (14:55cb)
|
|||
ret
|
||||
|
||||
Route25Script_515e1: ; 515e1 (14:55e1)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
SaffronGymScript: ; 5d00d (17:500d)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
call nz, .extra
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo10Script: ; 5a139 (16:6139)
|
|||
ret
|
||||
|
||||
SilphCo10Script_5a14f: ; 5a14f (16:614f)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo11Script: ; 620fa (18:60fa)
|
|||
ret
|
||||
|
||||
SilphCo11Script_62110: ; 62110 (18:6110)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo2Script: ; 59cf1 (16:5cf1)
|
|||
ret
|
||||
|
||||
SilphCo2Script_59d07: ; 59d07 (16:5d07)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo3Script: ; 59f5b (16:5f5b)
|
|||
ret
|
||||
|
||||
SilphCo3Script_59f71: ; 59f71 (16:5f71)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo4Script: ; 19d0b (6:5d0b)
|
|||
ret
|
||||
|
||||
SilphCo4Script_19d21: ; 19d21 (6:5d21)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo5Script: ; 19f37 (6:5f37)
|
|||
ret
|
||||
|
||||
SilphCo5Script_19f4d: ; 19f4d (6:5f4d)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo6Script: ; 1a1a9 (6:61a9)
|
|||
ret
|
||||
|
||||
SilphCo6Script_1a1bf: ; 1a1bf (6:61bf)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo7Script: ; 51b61 (14:5b61)
|
|||
ret
|
||||
|
||||
SilphCo7Script_51b77: ; 51b77 (14:5b77)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo8Script: ; 56504 (15:6504)
|
|||
ret
|
||||
|
||||
SilphCo8Script_5651a: ; 5651a (15:651a)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SilphCo9Script: ; 5d7bb (17:57bb)
|
|||
ret
|
||||
|
||||
SilphCo9Script_5d7d1: ; 5d7d1 (17:57d1)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
SilphCoElevatorScript: ; 457c0 (11:57c0)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
push hl
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
VermilionCityScript: ; 197a1 (6:57a1)
|
||||
call EnableAutoTextBoxDrawing
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
push hl
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
VermilionGymScript: ; 5ca26 (17:4a26)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
push hl
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
VictoryRoad1Script: ; 5da0a (17:5a0a)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
call nz, .next
|
||||
|
|
@ -29,7 +29,7 @@ VictoryRoad1Script0: ; 5da40 (17:5a40)
|
|||
ld hl, CoordsData_5da5c
|
||||
call CheckBoulderCoords
|
||||
jp nc, CheckFightingMapTrainers
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
SetEvent EVENT_VICTORY_ROAD_1_BOULDER_ON_SWITCH
|
||||
ret
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
VictoryRoad2Script: ; 5179d (14:579d)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 6, [hl]
|
||||
res 6, [hl]
|
||||
call nz, VictoryRoad2Script_517c4
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
call nz, VictoryRoad2Script_517c9
|
||||
|
|
@ -59,7 +59,7 @@ VictoryRoad2Script0: ; 517f1 (14:57f1)
|
|||
SetEventReuseHL EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH2
|
||||
ret nz
|
||||
.asm_51810
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
ret
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ VictoryRoad3Script: ; 44980 (11:4980)
|
|||
ret
|
||||
|
||||
VictoryRoad3Script_44996: ; 44996 (11:4996)
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
bit 5, [hl]
|
||||
res 5, [hl]
|
||||
ret z
|
||||
|
|
@ -36,7 +36,7 @@ VictoryRoad3Script0: ; 449b7 (11:49b7)
|
|||
ld a, [wCoordIndex]
|
||||
cp $1
|
||||
jr nz, .asm_449dc
|
||||
ld hl, wd126
|
||||
ld hl, wCurrentMapScriptFlags
|
||||
set 5, [hl]
|
||||
SetEvent EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH1
|
||||
ret
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue