Banner
Views: 235,835,321
Time: 2013-05-19 01:41:11 AM
3 users online: o Dotsarecool, o mockingod, ROFL_N00B - Guests: 17 - Bots: 13Users: 22,838 (1,283 active)
Latest: BobNewbie
Tip: Don't edit the 8x8 tile of the upper right hand corner of the sideways walking Koopa Troopa in GFX01 (unless you want your coin sparkles to look glitchy).
Resource Requests (GFX/Music/Coding)
Forum Index - Events - SMW Central Production 2 - Resource Requests (GFX/Music/Coding)
Pages: « 1 ... 30 31 32 33 34 35 36 »
Originally posted by Giant Shy Guy
Originally posted by cstutor89
Oh yeah auto-scrolling, sorry for being unclear.

I think I've found a solution to the problem :)

Code
LDA #$01 ;Load 1 into the accumulator STA $1404 ;Flag for free will scrolling


Insert this code right after the command JSR SUB_GFX (should be at the beginning of the pop copter asm file.


Do I delete the current one?


Um ... you can keep the current version of Pop Copter, just modify your Pop Copter asm file in Notepad and insert this code after JSR SUB_GFX, save and reinsert the sprite into the game.
Last edited on 2012-02-07 02:35:41 AM by cstutor89.
Oh no I meant take out the old JSR_SUB_GFX and replace it with that.
Originally posted by Giant Shy Guy
Oh no I meant take out the old JSR_SUB_GFX and replace it with that.


Oh no, don't replace it. Once you've found this line (very close to the beginning I believe) press enter and place those two lines right after it.
Originally posted by cstutor89
Originally posted by Giant Shy Guy
Oh no I meant take out the old JSR_SUB_GFX and replace it with that.


Oh no, don't replace it. Once you've found this line (very close to the beginning I believe) press enter and place those two lines right after it.



It works! Thank you so much cstutor!

~

Now, I have different request or whatever:

there's a sprite already inserted in the rom; an upwards launcher version of the torpedo ted.

Now, I have a bit of a problem with it; the launcher hand dies from the torpedoes shot from the Marine Pop.

It's a bit problematic, since the original downwards launcher hand doesn't die.

I'm guess that this is because the shooter can be killed with a star/cape/bounced block. The thing is, shooter cfg files aren't supported by the CFG Editor.

So, what I'm trying to say is I need the sprite to be invincible to star, cape, and bounced block.

The shooter is used in Togepuku Tussle, by the way, and changing that part of file wouldn't affect the level; as a matter of fact, it'll fix it in times when the player has a cape.
Nice :)

Okay. Let me create a new CFG file for you and then I'll send it to you. Just hang on for about 10 minutes or so. I'll PM you.
Okay, this is probably very needy of me, but I'm having lots of trouble remapping the YI Goonie graphics.

http://bin.smwcentral.net/u/17517/goonies.zip

So, could someone do it for me? There's a giant beetle disrupting the original sequence of the graphics, and I have to put it in SP3 anyways...

So yeah. Included in the ZIP is the sprite (made by edit(?) or is smkdan? I always confuse the two), the original SP4 graphics file, and ExGFX13F, which would be inserted through SP3.

Thanks to whoever!
Originally posted by Giant Shy Guy
Okay, this is probably very needy of me, but I'm having lots of trouble remapping the YI Goonie graphics.

http://bin.smwcentral.net/u/17517/goonies.zip

So, could someone do it for me? There's a giant beetle disrupting the original sequence of the graphics, and I have to put it in SP3 anyways...

So yeah. Included in the ZIP is the sprite (made by edit(?) or is smkdan? I always confuse the two), the original SP4 graphics file, and ExGFX13F, which would be inserted through SP3.

Thanks to whoever!


Okay I've renumbered them relative to SP3. Not too hard overall:

http://bin.smwcentral.net/u/14182/goonie.asm
Okay:

I tried my hand at reskinning Torpedo Teds into an anthromorphic Airplane.

I failed.

So yeah...I need Torpedo Ted graphics made into an airplane (which I call Jet Jim. It has to have the basics of the Bullet Bill species: Eyes, and a hand (Although the Banzai and King Bills don't have hands...but I want this to have hands)

~

Also, I don't remember where I got this, but I need the LevelASM that disallows the screen to scroll down when Mario dies. It is mostly used in vertical levels, and my level is horizontal.

I need this for 117, which uses the Sky Pop. There's some bug with the Sky Pop sprite that when Mario is on top of the screen, there's an Sky Pop below him.

I don't know how yo explain it..

But I just need LevelASM that disables screen scrolling down when the player dies.

dies on top of the screen, and the screen scrolls down with him, there
Okay. My level uses Rotational Lifts and Seesaw Lift sprites, both made by a Japanese hacker, and both requiring a certain JSL patch.

I have been working on my level with the JSL IPS patch patched. I tried using the asm that comes with it, but things just get screwed up.

I just need someone to look at the asm file...I just don't get it...
@Giant Shy Guy Okay, why do need the JSL patch? Can you do without it?
Isn't JSL.asm just a collection of a few subroutines? I thought we were already using some version of the shared subroutines patch.
I thought of that first, but the sprites just wouldn't work.

I patched the JSL.ips, and it did work.

There's a bunch of sprites that only work with JSL patched, and I'm using three of them: SMB3 lifts.

And when you enter a level with any of these "JSL" sprites, the screen just goes black and other stuff happens.
Can someone make this into levels asm?:

Originally posted by ROM Map
2C9BC $05:C7BC 3 bytes Misc.
Change to A9 08 EA and the background will start scrolling fast with generator F4 without having to touch platform C1


It creates the fast moving background thingymajig.
Originally posted by Giant Shy Guy
Can someone make this into levels asm?:

Originally posted by ROM Map
2C9BC $05:C7BC 3 bytes Misc.
Change to A9 08 EA and the background will start scrolling fast with generator F4 without having to touch platform C1


It creates the fast moving background thingymajig.


This is the code to create medium scrolling for the BG.

Code
STZ $1413 ; Set Horizontal Scroll Rate settings from Lunar Magic to "None." REP #$20 LDA $1466 SEC SBC #$FFFE STA $1466 SEP #$20 RTS


You need to change #$FFFE to something else maybe #$FFFD or #$FFF0
Thanks cs!
Originally posted by cstutor89
Originally posted by Giant Shy Guy
Can someone make this into levels asm?:

Originally posted by ROM Map
2C9BC $05:C7BC 3 bytes Misc.
Change to A9 08 EA and the background will start scrolling fast with generator F4 without having to touch platform C1


It creates the fast moving background thingymajig.


This is the code to create medium scrolling for the BG.

Code
STZ $1413 ; Set Horizontal Scroll Rate settings from Lunar Magic to "None." REP #$20 LDA $1466 SEC SBC #$FFFE STA $1466 SEP #$20 RTS


You need to change #$FFFE to something else maybe #$FFFD or #$FFF0


Hey, uhm, it actually makes the level's background move without sprite F4.

I kinda need the background to only start when the screen has F4 in it - I am using it for the background of the Sky Pop section, and I don't want to claim another sub-level.
Put this in Levelcode.asm file.

Code
LDA $D2 CMP #$03 (substitute 3 with whatever screen you want this to start on) BCS .screen3 (substitute .screen3 with whatever screen you want it to be on). RTS .SCREEN3: STZ $1413 REP #$20 LDA $1466 SEC SBC #$FFFE STA $1466 SEP #$20 RTS
Originally posted by cstutor89
Put this in Levelcode.asm file.

Code
LDA $D2 CMP #$03 (substitute 3 with whatever screen you want this to start on) BCS .screen3 (substitute .screen3 with whatever screen you want it to be on). RTS .SCREEN3: STZ $1413 REP #$20 LDA $1466 SEC SBC #$FFFE STA $1466 SEP #$20 RTS


Hey, uhm, the level just freezes when I reach the screen.

I put a semi-colon before the comments (I left it there for reminder's sake), but it just freezes...

I don't absolutely need this...just for aesthetics.


~~~~~~~~~

Although, which reminds me, what I really need are:

Torpedo Ted replacements; an airplane replacement that resembles what all the Bullet Bill species have.

Levelasm that disallows the screen to scroll down when Mario dies in a horizontal level.

Also, Brick Block graphics. It doesn't exanimate.

~~~~~~~

This isn't priority, but it kinda does matter:

Can someone change smkdan's Pop Torpedo projectile to interact like this?

I don't really like the smoke thing; also, I can't seem to find the sound effect used in the video.

The speed of it will also be a good thing; the current speed of the sprite is slow, and because of the projectile cap, player can die from not being able to fire.

Help would really be appreciated.
LevelASM that disables 1-Up gathered from stomps.
Originally posted by Giant Shy Guy
LevelASM that disables 1-Up gathered from stomps.


Code
STZ $1697


Should work.
Pages: « 1 ... 30 31 32 33 34 35 36 »
Forum Index - Events - SMW Central Production 2 - Resource Requests (GFX/Music/Coding)

The purpose of this site is not to distribute copyrighted material, but to honor one of our favourite games.

Copyright © 2005 - 2013 - SMW Central
Legal Information - Link To Us


Total queries: 28

Menu