My request is in my "My Requests" box. But just in case, I need an ASM hack or something that makes an 8x8 tile appear next to the level name once it's complete, since I have a free roaming OW, and I need a way to let the player know which levels they've already beaten. Is this possible?
Originally posted by Bloop!
Originally posted by Ersanio
I think this is more like a request, but oh well.
How can I make a block that changes into a sprite? (Donut block for example)
I don't really no how to do it, but nothing is going to be done if you don't be more specific. What makes it change to a sprite. Mario hitting it from below, standing on it, touching it, moving close to it?
Lets say... If you hit it with a your cape, it changes into a goomba/koopa/whatnot. I know I need to do something with the cape offset.
EDIT: Stupid me... I needed to post this in the ASM help thread, but accidentally posted it here >_<
Please ignore this question stuffMy blog. I could post stuff now and then
Sparx: I think there's a patch that does something like that. I'm not sure though.Your layout has been removed.
I would like to request a metroid, that takes 5 fireballs to kill
and 5 hits on the head to kill.
whee! Tag (a) was not closed.
Someone made a Metroid sprite a long time ago back at the old ACMLM. A link to the sprite would be nice.CP_foothills has been canned. Therefore, this space is once again blank.
Originally posted by Remnic the Hedgehog
Someone made a Metroid sprite a long time ago back at the old ACMLM. A link to the sprite would be nice.
Bio made that,you could just ask him if he still has it.thank u all for useing my joke button! to those who couldnt take the joke, grow a funny bone.
I need a sprite that acts like when you finish a level in the Sonic games (Mario passes trough it,sprite spins, stands still on the last frame, the win level).
The Metroid idea is really cool, but so far bio hasn't replyed to a friend of mine's pm. strangeDon't Wanna Be a Canadian Idiot!
Hold on a second.
Forget my last request.
What I'd really like is a Freezeflame baddy sprite from Super Mario Galaxy which is 16x16 and has a flame above its head (which is also 16x16) and will float in a wave pattern. If Mario approaches it, the enemy will start to divebomb into Mario. Mario cannot jump on it but if he has the Cape, he can spin it to extinguish the flame and it will change palettes to a burnt out look. Afterwards, it will hop around on the ground and if it jumps into lava or water, its flame will reappear and will start floating again. Also when its flame is extinguished, it will die if Mario touches it in any way and it will die like a shattered block.CP_foothills has been canned. Therefore, this space is once again blank.
Do you have any idea how ridiculously hard that request is? >_<
Could I request a patch that disables the item reserve box?
Originally posted by bugmansean
Could I request a patch that disables the item reserve box?
why? I'm sure that the ASM change to disable it is in the ROM map, and that you can remove the GFX with the status bar editor
You know, this thread is pretty pointless if no one actually does any of the requests.Your layout has been removed.
People who are good enough with ASM to do these requests aren't obligated to do them. <_<
Originally posted by MrCheeze
You know, this thread is pretty pointless if no one actually does any of the requests.
well, guess what:
LEARN B!T(H
not to be mean MrCheeze, but you guys always expect them to get done. A request is basically a yes or no question. Like I say to my little brother " I said no so stop asking! You wanted an answer, you got it."
If you want it done, learn so you dont have to wait for others. Its ok to ask if it is very complicated but maybe you can ask how you can start to build it. They way I got to where I was, was by asking questions, reading tutorials(asking people which were easy good ones), getting examples, and just trying and messing around by myself.
Seriously, I think many of you quit before it gets to hard. You dont try your best to understand, but you say you did. Fuck I new basic ASM when i was 11. And im 13.
When I came here it didn't take long for my attitude towards requests to sour. That one line post pretty much sums up why I won't be touching a thing in this thread unless it appeals to myself.
Originally posted by andy_k_250
It would be nice to make a thread where we keep a list of ongoing REASONABLE requests. That would require someone who has some sense about what is reasonably do-able in ASM to kind of monitor posts and squash the dumb ones.
READ PLZKTHX
The reason why most requests are ignored is that either they are insanely difficult or they are not at all reasonable. If your request is reasonable, someone may do it.
Lesson: Post reasonable requests in this thread. Post crazy requests in Banland not in here.Your layout has been removed.
Can somebody help me to make a block that is lava or water depending the on/off flag?There are four kinds of koopa. They are green, red, blue and yellow Koopa. All of you must give credit to me as I released such extremely, unbelievably and incredibly useful information.
LDA $14AF ;Load On/Off value
CMP $01 ;Branch if On
BEQ Switch
LDY #$00 ;Act like tile 5 (Lava)
LDA #$05
STA $1693
RTS ;return
Switch:
LDY #$00 ;Act like tile 2 (Water)
LDA #$02
STA $1693
RTS ;return
That block *should* act like you want. It will act like water when on, and lava when off. To reverse, replace "BEQ Switch" with "BNE Switch"
I have no idea if this will work, I haven't tested it.