Language…
15 users online: Alex No,  AmperSam, Big Brawler, GiraffeKiller, Green, h.carrell, Hammerer, LadiesMan217, Mecke1990, Metal-Yoshi94, rafaelfutbal,  Segment1Zone2,  StayAtHomeStegosaurus, steelsburg, Tulip Time Scholarship Games - Guests: 286 - Bots: 584
Users: 64,795 (2,369 active)
Latest user: mathew

help!

Because the airmeter looks like the part of the HUD (Heads Up Display or status bar), sprites goes on top (or on front) of this makes this looks weird


Its also weird when the ovelap glitch with the pirhana plant inside the pipe too, because the airmeter goes behind most sprites and on front of layer 1. The airmeter is on front of the pipe and behind the pirhana plant at the same time.

most HUD on screen in games always be on front of everything in perspective, otherwise sprites can "block" the viewing on on it
Give thanks to RPG hacker for working on Asar.
No way?No way!
Originally posted by Supermario2003
No way?No way!

There's no need to say that...

And... I think that happens when you go through a pipe and a sprite is in front of it. I don't know any way to fix that. You may want to move the pipe to avoid that.
'Sup!
My YouTube Channel:
Th3Flam3BoY's YouTube Channel

My YouTube Channel (SMW Hacking):
New Hacker's SMW Hacking Channel
That's actually caused by the air meter not having OAM priority...and the only way to fix it would be to make the graphics routine hardcode it to use slots before all the other sprites. You could try adding something like this to the init routine:

Code
LDA #$30
STA $15EA,x


But that is risky.

----------------

I'm working on a hack! Check it out here. Progress: 64/95 levels.
were to add that?
here is the asm file
Give thanks to RPG hacker for working on Asar.
Originally posted by dixey
were to add that?

Originally posted by imamelia
You could try adding something like this to the init routine

In case that instruction is too tricky for you, the init routine is after the dcb "INIT" (DCB "INIT" in this case for some reason I'm not going to question).
<blm> zsnes users are the flatearthers of emulation
the INIT? it doesn't say that in the graphics routine
Give thanks to RPG hacker for working on Asar.
INIT routines aren't supposed to be inside graphics routines at all. Look outside it, it should be near the top.
<blm> zsnes users are the flatearthers of emulation
here?
Code
;; INIT and MAIN routines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

    DCB "INIT"
    LDA #$FF
    STA RAM_AirMeter
    RTL

i want it to have the highest priority that mario also go behind
still doesn't work
Give thanks to RPG hacker for working on Asar.
Yeah, just between STA RAM_AirMeter and the RTS.
'Sup!
My YouTube Channel:
Th3Flam3BoY's YouTube Channel

My YouTube Channel (SMW Hacking):
New Hacker's SMW Hacking Channel
RTL you mean
Give thanks to RPG hacker for working on Asar.
Oh, yeah, sorry 'bout that. Anyways, did it work?
'Sup!
My YouTube Channel:
Th3Flam3BoY's YouTube Channel

My YouTube Channel (SMW Hacking):
New Hacker's SMW Hacking Channel
Code
;; INIT and MAIN routines
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

    DCB "INIT"
	LDA #$30
    STA $15EA,x 
    RTL

        DCB "MAIN"
        PHB
        PHK
        PLB
        JSR MainSub
        PLB
        RTL

Give thanks to RPG hacker for working on Asar.
Yeah, just like that, but... I think you removed something there...

EDIT:

Code
dcb "INIT"
LDA #$FF
STA RAM_AirMeter
LDA #$30
STA $15EA,x
RTL

'Sup!
My YouTube Channel:
Th3Flam3BoY's YouTube Channel

My YouTube Channel (SMW Hacking):
New Hacker's SMW Hacking Channel
yeah i did something wrong, after school i will re download (because i was messing around trying to fix the priority om my own and then tell everyone on this site)then edit the asm file.
Give thanks to RPG hacker for working on Asar.