Language…
19 users online: anonimzwx, codfish1002, DanMario24YT,  Deeke, Golden Yoshi,  Gonzales555, Green, Heitor Porfirio, iamtheratio, imamelia, Irondill, koffe190, LightAligns, MorrieTheMagpie, PMH,  Segment1Zone2, steelrain859, TheOrangeToad, xxxblackangel2208xxx - Guests: 274 - Bots: 235
Users: 64,795 (2,375 active)
Latest user: mathew

status bar

how can i disable he status bar ??

i want to do a story in my new hack but i dont know how to do it...
please somebody can help me???
I am the best magikoopa !!! feel fear !!

Kamek....



You can't completely disable it without removing all counters, the item box, changing NMI/IRQ, etc. It will take alot of ASM to do so.
thanks ice man and thanks dinomar for the tip
i will try to do it...

what is the color colun of status bar palete?
I am the best magikoopa !!! feel fear !!

Kamek....



What about a DMA over the status bar?
Your layout has been removed.
How about this code?
If the FLAG is 01, you can turn off a TRICK,
which makes sure that the status bar is always on the top of screen (regardless of layer3 position).


Code

!MainCodeLocation	= $xxxxxx
!FLAG_RAM = $yyyyyy

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


LoRom
Header


org $008292

		JSL Trick_Disable		
		NOP	

org $008DAC	
		JML NO_StatusBar



!MAIN_CODE_SIZE		= END_OF_FILE-OW_TABLE_CODE

org !MainCodeLocation
			db "STAR"			
			dw !MAIN_CODE_SIZE-$01
			dw !MAIN_CODE_SIZE-$01^$FFFF


Trick_Disable:		LDY #$24		
			LDA !FLAG_RAM
			AND #$01
			BEQ If_Wanted
			LDY #$FF
If_Wanted:		LDA $4211
			RTL


NO_StatusBar:		LDA !FLAG_RAM
			AND #$02
			BEQ DrawStatus_ON
			JML $808DE6
DrawStatus_ON:		STZ $2115
			LDA #$42
			JML $808DB1



END_OF_FILE: