2018-06-24 16:09:41 +02:00
|
|
|
_CardKey:
|
2015-11-11 23:38:57 -05:00
|
|
|
; Are we even in the right map to use this?
|
2018-01-23 17:39:09 -05:00
|
|
|
ld a, [wMapGroup]
|
2015-11-11 23:38:57 -05:00
|
|
|
cp GROUP_RADIO_TOWER_3F
|
|
|
|
jr nz, .nope
|
|
|
|
|
2018-01-23 17:39:09 -05:00
|
|
|
ld a, [wMapNumber]
|
2015-11-11 23:38:57 -05:00
|
|
|
cp MAP_RADIO_TOWER_3F
|
|
|
|
jr nz, .nope
|
|
|
|
; Are we facing the slot?
|
2018-01-23 17:39:09 -05:00
|
|
|
ld a, [wPlayerDirection]
|
2015-12-18 20:07:09 -05:00
|
|
|
and %1100
|
2015-11-11 23:38:57 -05:00
|
|
|
cp OW_UP
|
|
|
|
jr nz, .nope
|
|
|
|
|
|
|
|
call GetFacingTileCoord
|
|
|
|
ld a, d
|
|
|
|
cp 18
|
|
|
|
jr nz, .nope
|
|
|
|
ld a, e
|
|
|
|
cp 6
|
|
|
|
jr nz, .nope
|
|
|
|
; Let's use the Card Key.
|
|
|
|
ld hl, .CardKeyScript
|
|
|
|
call QueueScript
|
2015-12-18 20:07:09 -05:00
|
|
|
ld a, TRUE
|
2015-12-17 17:51:32 -05:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 23:38:57 -05:00
|
|
|
ret
|
|
|
|
|
|
|
|
.nope
|
2015-12-18 20:07:09 -05:00
|
|
|
ld a, FALSE
|
2015-12-17 17:51:32 -05:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-11 23:38:57 -05:00
|
|
|
ret
|
|
|
|
|
2018-06-25 02:10:37 +02:00
|
|
|
.CardKeyScript:
|
2015-11-25 10:16:29 -05:00
|
|
|
closetext
|
2018-02-27 19:33:38 -05:00
|
|
|
farjump CardKeySlotScript
|