Language…
18 users online: Adsila, anonimzwx, Batata Douce, Blizzard Buffalo, BlueSheep123, David_Odie, Doopu, Ekimnoid, HD_DankBaron, LightAligns, LuigiTron, Maniek, MorrieTheMagpie, ppp9q,  Ringo, sinseiga, sugarfish456, WalrusLife - Guests: 266 - Bots: 340
Users: 64,795 (2,376 active)
Latest user: mathew

Is there a way to have level c5 transition straight into a level?

Hey I'm quite new to SMW hacking, and I was wondering what I would need to do in order to have the intro message level transition directly into another level instead of going to the overworld.
You want your entire hack to not have a map?
You can use the no overworld UberASM patch to make the intro level transition directly to the first level.
If you want your hack to have a map after you beat the first level, then I'm sure someone else can give a better response to it.
Windowless ride, feeling alive
Are you alive or just breathing?
Yea, the latter is what I had in mind. After the intro was finished, you would be sent to the first level which then sends you to the overworld after you finish it.


This is kinda a hacky solution, but it seems to work. Apply with Asar:

Code
org $05B15B
	autoclean JML Hijack
	
freecode
Hijack:
	STZ $0109
	STZ $1426
	JSL $04DC09
	LDA #$0F
	STA $0100
	RTL

This will send Mario immediately from the intro into the level he loads into the overworld on. When you complete the level, or if you die, it'll return to the overworld as normal.

Professional frame-by-frame time wizard. YouTube - Twitter - SMW Glitch List - SMW Randomizer
It works, thanks!