Language…
11 users online: Cristian Cardoso, howardadam1126, Isikoro, marvisjj, masl, Oskise, RenkoV2,  Segment1Zone2, SpacePea,  Telinc1, Zavok - Guests: 252 - Bots: 312
Users: 64,795 (2,377 active)
Latest user: mathew

- Nintendo Presents - palette

I changed - Nintendo Presents - with a patch ASM
But I do not know where this is the palette
Code
!GFX_FILE = #$0A		;gfx/exgfx file to use for logo (00-FF)
!SFX = #$01			;sound effect for logo
!PAL = #$00			;palette/gfx page: 00 = default, next palette is 02,04,06 etc...

!CODE_OFFSET = $1ACE00		;offset to use for graphics routine, make sure that it isn't used! (SNES format)

Where is it this palette?

TEST
!PAL contains the palette information. If you want it to use palette 9, use !PAL = #$02. If you want it to use palette A, use !PAL = #$04, etc.
Originally posted by MarioEdit
!PAL contains the palette information. If you want it to use palette 9, use !PAL = #$02. If you want it to use palette A, use !PAL = #$04, etc.

From any level?
TEST
From any level that uses the default palette, yes. You can only use sprite palettes anyway.


 
I can change some color?
TEST
Yes, you can change any colors in the palette you chose. Make sure it won't overwrite important stuff, though!
It's easily the best thing I've done
So why the empty numb?
Originally posted by Koopster
Yes, you can change any colors in the palette you chose. Make sure it won't overwrite important stuff, though!

after what level?

TEST
You can edit them in any level that doesn't use a custom palette. Make sure you hit the #lm{save} (save button) in the palette editor, not in the level editor.
It's easily the best thing I've done
So why the empty numb?
Originally posted by Koopster
You can edit them in any level that doesn't use a custom palette. Make sure you hit the #lm{save} (save button) in the palette editor, not in the level editor.

but when I change color, a sprite color well be changed too
TEST
If you want a custom palette for the presents screen, it seems like this patch is what you should use.

e: bbcode fail
My YouTube channel
Get the official ASMT resource pack here!

Originally posted by yoshicookiezeus
If you want a custom palette for the presents screen...

My presents screen contains more than one color, is it working?

TEST
A "palette" is a row of colors, not a single color. So yes.
It's easily the best thing I've done
So why the empty numb?
How it work your patch??
TEST
If I didn't get it wrong, xkas would be your best friend here. Drag the cmd to the same folder as xkas and your ROM, and type "xkas.exe yourrom.smc patch.asm", without the quotes. Where "yourrom.smc" is the name of your ROM, and "patch.asm" is the name of your patch. Make sure you read the readme of the patch yoshicookiezeus linked to you.
Windowless ride, feeling alive
Are you alive or just breathing?
Originally posted by Archie
If I didn't get it wrong, xkas would be your best friend here. Drag the cmd to the same folder as xkas and your ROM, and type "xkas.exe yourrom.smc patch.asm", without the quotes. Where "yourrom.smc" is the name of your ROM, and "patch.asm" is the name of your patch. Make sure you read the readme of the patch yoshicookiezeus linked to you.

I know how to insert a patch in my ROM
but I am trembled with what i can change and what i can't change in asm file
TEST