Language…
9 users online:  Atari2.0, DanMario24YT, eltiolavara9, Isikoro, Maw, Red2010, Serena, Shomi, steelsburg - Guests: 282 - Bots: 283
Users: 64,795 (2,375 active)
Latest user: mathew

skip intro level?

i just want it to go straight to the overworld, without going to c5 and waiting for intro message, how do i do this?
Originally posted by the ROM Map
$009CB1 | 1 byte | Level number | Determines the low byte of the intro level number. Subtract 0x24 for the actual low byte (by default, E9-24=C5, meaning level C5, or possibly 1C5 with Lunar Magic's Display Level Message 1 fix). Change to [00] to skip the intro level and warp to the overworld immediately.

Save this as an .asm and patch it:
Code
org $009CB1
db $00
Can you reverse that if later i want an intro?
To reverse the effects of the patch, it looks like all you need to to is replace db $00 by db $E9.


 
It worked perfectly, Thanks!
Originally posted by WhiteYoshiEgg
To reverse the effects of the patch, it looks like all you need to to is replace db $00 by db $E9.

It don't work for me
Did you patch it again after making the change?
It's easily the best thing I've done
So why the empty numb?