Language…
24 users online: Alex No,  AmperSam, Anas,  Anorakun, DanMario24YT, GiraffeKiller, Golden Yoshi, Gorry, Green, Green Jerry, h.carrell, Hammerer, Heitor Porfirio, JikissGamer, MaffYuu, Maw, Metal-Yoshi94, playagmes169, Ray Hamilton, Rykon-V73, Seamus Sinclair, ShoopDaWhoop,  StayAtHomeStegosaurus, Tulip Time Scholarship Games - Guests: 293 - Bots: 532
Users: 64,795 (2,369 active)
Latest user: mathew

Disable cape flight in a level

I can't find a code that disables cape flight in one level or in the whole game. is there any ?
Gotta aim fast.
Originally posted by MegaSonic1999
I can't find a code that disables cape flight in one level or in the whole game. is there any ?

Code
org $00D66F
db $80

Patch with Asar.


You can disable flight in a single level with this UberASM code:

Code
main:
	STZ $149F|!addr
	RTL


Professional frame-by-frame time wizard. YouTube - Twitter - SMW Glitch List - SMW Randomizer
Originally posted by Thomas
You can disable flight in a single level with this UberASM code:

Code
main:
	STZ $149F|!addr
	RTL


Do I have to create the code myself?
Gotta aim fast.
The code already has been created, you just need to paste it into an empty ASM file. Either copy an already existing file and replace the content, create an empty file, change the extension to all files and add ".asm" at the end of the file or use a good text editor and just add the extension ".asm".

You then insert this with UberASM.
Originally posted by MarioFanGamer
The code already has been created, you just need to paste it into an empty ASM file. Either copy an already existing file and replace the content, create an empty file, change the extension to all files and add ".asm" at the end of the file or use a good text editor and just add the extension ".asm".

You then insert this with UberASM.


So all I have to do is choose an already created asm file and copy the codes and replace the whole old code with it and then rename the file (because I don't know how to create an asm file.)?
Gotta aim fast.
You can use something as simple as Notepad to paste the code. Just add the .asm file extension afterwards.