Language…
11 users online: AbuseFreakHacker,  BeeKaay, ben15420, Gorry, Green, LadiesMan217, OrangeBronzeDaisy, Ray Hamilton, Rykon-V73, ShoopDaWhoop,  YouFailMe - Guests: 256 - Bots: 604
Users: 64,795 (2,369 active)
Latest user: mathew

(SELF-SOLVED) SMB2 Health bar + Minimalist status bar


As shown in this image, I would appreciate it if you let me know how to get the HP bar of SMB2 to appear in the Minimalist status bar.
(The one on the right can be created.)

 ❤️❤️♡・・・・・・ 🔘🔘🔘🔘🔘 ⏰=300 🔘×   101 

=15 and (🍄) is removed

Code
LDA #$28
STA $0F30|!base
RTS

.StatusTiles
db $FC
db $3D,$3D,$3D,$3D,$3D,$3D,$3D,$3D,$3D		;Health
db $FC
db $FC,$FC,$FC,$FC,$FC
db $FC
db $76,$77,$27,$27,$27				;time
db $FC
db $2E,$26,$27,$27,$27,$27,$27,$27		;coins
db $FC

.StatusProps
db $20
db $2C,$2C,$2C,$2C,$2C,$2C,$2C,$2C,$2C		;Health
db $24
db $24,$24,$24,$24,$24
db $24
db $20,$20,$24,$24,$24				;time
db $20
db $24,$20,$20,$20,$20,$20,$20,$20		;coins
db $20
Code
if !player
	;LDX #$00		;Hearts
	;LDA $0DC5|!base
	;DEC A : STA $00
	;-
	;LDA #$3E		;Unfilled Hearts
	;LDY $00 : BPL +
	;LDA #$3D		;Blank
	;+
	;STA !player,x
	;DEC $00 : INX
	;CPX #$09 : BCC -	;# of Max Heart to stop display


	LDX #$00		;Hearts
	LDA $0DC4|!base
	DEC A : STA $00
	-
	LDA #$3F		;Filled Hearts
	LDY $00 : BPL +
	LDA #$3E		;Unfilled Hearts
	+
	STA !player,x
	DEC $00 : INX
	CPX $0DC5|!base : BCC -	;# of yoshi coins needed to stop display
endif