mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00

I'm trying to make the warp to Mt. Moon Crater a hole warp like the ones from Seafoam Islands, but I cannot seem to get to work at all, the hole just doesn't send me down. I know I'm clearly missing something, but I'm committing as-is in the hopes that someone could have a look at it
18 lines
299 B
NASM
18 lines
299 B
NASM
MtMoonB1F_Script:
|
|
call EnableAutoTextBoxDrawing
|
|
ld a, MT_MOON_CRATER
|
|
ld [wDungeonWarpDestinationMap], a
|
|
ld hl, MtMoonHolesCoords
|
|
jp IsPlayerOnDungeonWarp
|
|
|
|
MtMoonHolesCoords:
|
|
dbmapcoord 6, 23
|
|
db -1 ; end
|
|
|
|
MtMoonB1F_TextPointers:
|
|
dw MtMoonText1
|
|
|
|
MtMoonText1:
|
|
text_far _MtMoonText1
|
|
text_end
|