Language…
18 users online:  AmperSam, asterkafton, Dangil,  Donut, dotCoockie, Fiblizo, Golden Yoshi, Guido_Keller, itsmefigs, JezJitzu, LightAligns, Maw,  patcdr, playagmes169, Serena,  Telinc1, timothy726, tOaO - Guests: 245 - Bots: 381
Users: 64,795 (2,377 active)
Latest user: mathew

Block

Is there a block that will kill mario when touched however when you hit a normal p switch it turns to a coin????
Originally posted by Pete3k
Is there a block that will kill mario when touched however when you hit a normal p switch it turns to a coin????

I'm sure it could be made, but I don't know exactly how to code it.
You could take a block and make it act as a Muncher using Map 16, although you'll be needing a sliver P-Switch to turn that one into a coin.
I don't know if this would work but you could insert the "kill block" and in Map16 you could set it to act like the "brown used block"
There is nothing interesting here. Carry on.
Originally posted by computerprogrammer1
I don't know if this would work but you could insert the "kill block" and in Map16 you could set it to act like the "brown used block"

Yes, but it may still kill mario when he tries to get it when the P-Switch is pressed.
Code
db $42
JMP Mario : JMP Mario : JMP Mario : JMP Return : JMP Return : JMP Return : JMP Return
JMP Mario : JMP Mario : JMP Mario

Mario:
LDA $14AD
BNE Return
JSL $00F606

Return:
RTL

Use this code and make it act like tile 132 and see if it works.
I change my layout every 4-5 months
It worked!!!!!!!!!

but is there a way to just hurt him instead of kill mario... my bad, i know.
Replace
JSL $00F606

with

JSL $00F5B7


should solve your problem..I think.