xkas "places" ASM into your ROM at an adress specified and everything. Make a back-up and try it onto this ROM. If that doesn't work then get a clean ROM. Also, you can export and import most things, which would reduce transferring over to monotony. (I know about the spelling.)
Posts by Anti-matter Drone
Anti-matter Drone's Profile → Posts
Hold on! I'll do the ASM in just a second, O.K.? (I posted this so you would know that someone is on it.)
EDIT: Let's see....
I know it's not the best of code because it makes Mario lose the fireball power-up altogether when spin jumping but it works. Maybe someone else can make better code for you later.
EDIT: Let's see....
Code
LDA $19 CMP #$03 BNE End Loop LDA $140D CMP #$;Insert here whatever value would say that he was spin jumping BNE Undo LDA #$01 STA $19 BRA Loop Undo LDA #$03 STA $19 End RTS
I know it's not the best of code because it makes Mario lose the fireball power-up altogether when spin jumping but it works. Maybe someone else can make better code for you later.
Go to the Japanese site to download the latest version (1.1.2b). Anyway, I think that if you melt wall (maybe mixed with fuel or water), you get part of water mixed with fire. I've forgotten what it was exactly. Anyway, water with fire is very interesting, because igniting it is about as hard as quenching a fire!
EDIT: Now I remeber how to get liquid wall! Select wall and mix it with inflow!
EDIT: Now I remeber how to get liquid wall! Select wall and mix it with inflow!
Actually, I can do it! I don't know what values would work for Mario's X speed, so somebody would need to tell me, but, here it is!
Code
LDA $7B ;Load Mario's X speed. CMP #$02 ;Enter here whatever the correct value would be. I think it's 02 if you don't care how fast he's running. BCC D ;If it's less than that, then jump to D! LDA $1497 ;Load the invincibility timer. INC ;Increase it by 1. STA $1497 ;Save it to the invincibility timer. RTS ;end of code D ;If it's less than the value I put in, it jumps to here! RTS ;This will end the code!
(restricted)