Language…
19 users online:  AmperSam,  Anorakun, CharlieUltra, Courage2006, DanMario24YT, Dennsen86, elegist, GamesInTweed, Golden Yoshi, Green Jerry, Metal-Yoshi94, mtheordinarygamer, Nayfal, PuffleDreemurr, signature_steve, slopcore, Sweetdude, TheXander, Tulip Time Scholarship Games - Guests: 296 - Bots: 464
Users: 64,795 (2,370 active)
Latest user: mathew

Posts by Ramp202

Ramp202's Profile → Posts

  • Pages:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 86
  • 87
Originally posted by flarblade26
How do I insert a folder to the ExGFX submission section?

Make a ZIP File then put the Folder into the zip.
Originally posted by flarblade26
How do I make a pallette patch thingy for the correct pallette?

File -> Palettes -> Export Level Palette to File...
Originally posted by flarblade26
How do I take a screen shot of the 8x8 and 16x16 editor?

Open up the 8x8/16x16 editor than press Alt+Prt Scr than paste into paint and save
I change my layout every 4-5 months
Originally posted by flareblade26
But, do we need to upload a 16x16 pic for sprite GFX?

No
Originally posted by flarblade26
Also, how do I turn the paint file of the 8x8 editor pic into a png?

When you save it, there's a option to save it as a .PNG and other stuff
I change my layout every 4-5 months
What did you type into the box when you pressed Ctrl+G?
I change my layout every 4-5 months
You don't put 0x at the beginning. only x
I change my layout every 4-5 months
Code
TILEMAP	 dcb $80,$82,$84,$86,$A0,$A2,$A4,$A6,$C0,$C2,$C4,$C6,$E0,$E2,$E4,$E6
		dcb $80,$82,$84,$86,$A0,$A2,$A4,$A6,$C0,$C2,$C4,$C6,$E0,$E2,$E4,$E6

The error is in the Tilemap. try this instead
Code
TILEMAP		dcb $86,$84,$82,$80	; facing right
		dcb $EE,$CE,$88,$A0
		dcb $EE,$CE,$C2,$C0
		dcb $86,$84,$AE,$8E

		dcb $80,$82,$84,$86	; facing left
		dcb $A0,$88,$CE,$EE
		dcb $C0,$C2,$CE,$EE
		dcb $8E,$AE,$84,$86

If it's doesn't face you when you test it, switch the 2 tilemaps.

FE: real, ultimate POWER!!!
I change my layout every 4-5 months
@BlackDS - Insert it as a sprite. It's basically a Custom Sprite with lot's of code
I change my layout every 4-5 months
Originally posted by Camerin Neede
org $$05:B34E ;the SNES address that deals with the coin-collecting SFX

Why is there 2 $$? there's only supposed to be 1.

Also, you might want to hijack 05:B34D since that's where it starts LDA #$xx STA $xxxx
I change my layout every 4-5 months
(restricted)
Actually generator's go from D0-DF. not E0 since E0-FF are Invalid and wont work.
I change my layout every 4-5 months
Originally posted by pokedude987
is there any RAM flag address that checks if Mario has a star?

Originally posted by RAM Map
$7E:1490 | 1 byte | Timer | Star timer ($FF=16 (hex) sec on game timer)

Also... i fulfilled your request
I change my layout every 4-5 months
(The N-SPC is MORE.asm)
You use Xkas GUI (Found in Tool's Section) then patch it. Some patches need you to set freespace so you use the Freespace Logger (Found in Tools Section)
I change my layout every 4-5 months
Or you could set the H Scroll = Constant & V Scroll = None for Layer 2
I change my layout every 4-5 months
Just open it. If it's a .doc file and you don't have Word. use Word Reader where it can open up a .doc and .docx file
I change my layout every 4-5 months
On the bottom left of the 16x16 window when you have your tile. click on the 8x8 tile then on the bottom will be the Flip X or Flip Y for 8x8 tiles.
I change my layout every 4-5 months
Replace the RTLs with RTS and get rid of the RTS at the end. so it would look like this
Code
level106:
LDA $14AF		;check on/off
BEQ Right		;if zero = right

Left:
LDA #$80		;otherwise set left
STA $7B		;and move mario left
RTS			;return

Right:
LDA #$7F		;if zero, set right
STA $7B		;and move mario right
RTS			;return
I change my layout every 4-5 months
I see no error in Line 1 but when i try to insert it, it comes up with alot of "ERROR : ...: Music Interval is too low" which means the Octave is going to o0, o-1, o-2, etc.
I change my layout every 4-5 months
Did you remember to make it act like tile 25 or anything that mario can walk through?
I change my layout every 4-5 months
@Gearbox - Click on the Mario Head then make the Level Mode 1E (Make the dropdown box at the top say 1E: TD=16, CG=21, TM=01, L=01, F=00, S=00)
I change my layout every 4-5 months
IIRC, q7f is the note length. If it's 7f, the sound length will be normal, if it's like 1f or something, it will be very short
I change my layout every 4-5 months
  • Pages:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 86
  • 87