2015-11-11 20:38:57 -08:00
|
|
|
_BasementKey: ; 507b4
|
|
|
|
; Are we even in the right map to use this?
|
|
|
|
ld a, [MapGroup]
|
|
|
|
cp GROUP_WAREHOUSE_ENTRANCE
|
|
|
|
jr nz, .nope
|
|
|
|
|
|
|
|
ld a, [MapNumber]
|
|
|
|
cp MAP_WAREHOUSE_ENTRANCE
|
|
|
|
jr nz, .nope
|
|
|
|
; Are we on the tile in front of the door?
|
|
|
|
call GetFacingTileCoord
|
|
|
|
ld a, d
|
|
|
|
cp 22
|
|
|
|
jr nz, .nope
|
|
|
|
ld a, e
|
|
|
|
cp 10
|
|
|
|
jr nz, .nope
|
|
|
|
; Let's use the Basement Key
|
|
|
|
ld hl, .BasementKeyScript
|
|
|
|
call QueueScript
|
2015-12-17 19:31:16 -08:00
|
|
|
ld a, TRUE
|
2015-12-17 14:51:32 -08:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 20:38:57 -08:00
|
|
|
ret
|
|
|
|
|
|
|
|
.nope
|
2015-12-17 19:31:16 -08:00
|
|
|
ld a, FALSE
|
2015-12-17 14:51:32 -08:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 20:38:57 -08:00
|
|
|
ret
|
|
|
|
; 507e1
|
|
|
|
|
|
|
|
.BasementKeyScript: ; 0x507e1
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-11-11 20:38:57 -08:00
|
|
|
farjump BasementDoorScript
|
|
|
|
; 0x507e6
|