Language…
16 users online:  Anorakun, ColeG1, CxGx, drake-68, Gonzales555, Gregor, GrenudoGames, GuleDuyeM, Hot Sauce, IroningBoardthe2nd, Jgb007, MellyMellouange, mr.popo, Quinkerman, Rykon-V73, spooonsss - Guests: 151 - Bots: 162
Users: 69,726 (2,525 active)
Latest user: VGHack

THEY MUST HAVE AMNESIA, THEY FORGOT THAT I'M HIM [4 REQUESTS OPEN - READ THE RULES]

Super Mario WorldPatchUberASMSpritesBlocksToolResource ReleaseScreenshotsVideosRequests

  • Pages:
  • 1
  • 2
  • 3
  • 4
hello. i am building a $3000 pc but i couldn't get the processor or the graphics card in time for c3. you may be wondering, well, what does that mean for lebron's legacy erik's c3 plans, right?

...

well, i really wish i could be playing some games i have never experienced, but with no pc ready yet (and no work vacations LOL) imma use this time to do some random code for you, the people of super mario world central.
The best part is that no one forced me. It's been 6 years since I did one of these (Winter 2019) and for the first time in a longer amount of time than that, I actually want to do it. So, be nice to me and I'll return to this being a tradition, okay? ❤️


Before we get into it, I want to present to you...
Erik's C3 Museum

(warning: very "front-end development is my passion"-coded)
I wanted to have a place to compile everything I've made for C3, as well as small stories of things which were going in my life and such.
Do note that I lost some resources, so if you have them, be sure to send them my way. 👍


But, BUT, before we get into it, let me show you some of the things I've worked on when not doing my actual obligations. I readied most of this in November/December, as it was a transitional period between my internship and a full-time job and as such I had a lot of time. I think I showed one or two of these in the SMWC server, so, you may recognize them from there. Enjoy!

Let's show 'em how a C3 is done.
Overworld sprites
Gotta shill my tool.
Parakoopa

This sprite includes various variations of parakoopas, which act depending on the color.
  • The green one flies in a horizontal range.
  • The red one flies up and down in a fixed tile, so, in the Z axis. (Check the shadow! Yay!)
  • The yellow parakoopa flies in a vertical range.
  • I wanted to include a blue parakoopa which flies around in an ellipse pattern. However, as I want to take advantage of two extra bytes and BOWSIE doesn't support that yet, it'll have to wait.

DOWNLOAD


Sprites
Urchin, circular motion

This Urchin moves in a circle in a direction controlled by the extra bit. The extra byte controls its radius.
DOWNLOAD

Needle-spitting Urchin

Another Urchin! This one is static, but spits needles. The first extra byte controls the timer, the second controls the pattern type, and the third controls the direction. Patterns include horizontal only, vertical only, both, or a tracking needle.
DOWNLOAD

Static Fishin' Boo

I heard you guys love Fishin' Boo, so I made this! This Fishin' Boo is static in one place, with the fishing cane expanding and contracting after a certain amount of time.
I think it turned a bit awkward but, not that bad imo. Eh! ¯\_(ツ)_/¯
DOWNLOAD


NOTE: the following sprites are very resource intensive (noticeable with lots of sprites or when using more than two in a same screen). SA-1 is recommended if you run into lagging!
In all of these: the extra byte controls the initial direction and the extra bit decides whether to use the two patterns.
Diagonal Turn Block Bridge

This turn block bridge opens up diagonally. Cool, no?
DOWNLOAD

Shatterable Turn Block Bridge

Imagine if the vanilla game's turn block bridge's turn blocks actually acted like turn blocks. Wouldn't that be nice? Well guess what, these ones do!
Do note though to detect a hit from below this requires a patch, in case you're interested in the turning part. Shattering only, that requires no patch.
DOWNLOAD

Note Block Bridge

This expanding and contracting bridge is made out of note blocks! Bounce from it! Have some fun! (do note the vertical one is a bit janky lol)
DOWNLOAD

Brown Block Bridge

I mean, may as well, no? This bridge is made out of brown blocks, which turn into coins when the blue P-Switch is active.
DOWNLOAD


Sprite + Patch
Oh brother, this returned directly from Hell to torture me for all of the sins I have committed against this game. Just when you think you no longer have to deal with it, you get an idea for a level which needs it; once you see the code, you realize that, perhaps, you never learned how to code at all. Alas, I saw the Devil, and faced with it, I didn't shy from the challenge.
Yoshi Animal Buddy v2.0

Yeah. Remember this shit? The one I made in C3 Summer 2018? The one which Final Theory requested, which I naively accepted, and which caused me to explode at him due to how stressful it was to code and me being a stubborn mule not wanting to drop it? Yeeaahh. This shit was so old, it was coded for GIEPY. This was so poorly coded it had like 90 hijacks to offset Yoshi from the player and "fix" the interaction, but this was badly done: so bad in fact, that sprite platforms didnt work; that there were glitches noticeable when eating berries or sprites; and a plethora of other mistakes caused by coding this under pressure.
This is version 2.0. This now works on PIXI, for starters. Second, the needed patch has been rewritten entirely, bringing down sixteen hijacks to ten (four of which are pretty much the same). Yoshi now flashes when hurt, which did not happen before. Sprite clipping was rewritten to use vanilla clippings, but on Yoshi's body only and not the player's. Object collision was rewritten so the game thinks Yoshi is actually the small form of he player.
If you want to see the patch in action, here's a level from my hack, "HACK BY ERIK". It showcases the animal buddy, as well as one of the patches below, in its full glory.

(do note the level uses extra UberASM, such as for permanent ground pound and fireball spitting, which I don't want to release)
DOWNLOAD
Hopefully it's no longer buggy!


Patches
First off here's a patch that may be of more use to power users. I made it for my own hack as I don't use a lot of custom graphics (mostly as I'm too shy to ask people to draw me stuff). However, I would appreciate any and all feedback on it, as this is a feature which, I think, could be integrated into Lunar Magic itself.
Uncompressed Graphics
Basically, this speeds up the game by leaving the graphics uncompressed in your ROM, instead of having to insert GFX/ExGFX in Lunar Magic and having the game decompress them to a buffer in $7EAD00 (so this also frees a bunch of RAM! more specifically, it frees $7E2000-around $7EB8FF-ish outside of Mode 7 bosses). This patch won't be of much use to you if you use a lot of custom GFX (consider eight 4bpp 4KB graphics files fill up a bank, without taking RATS into account, and that a 4MB ROM has 128 banks) but if you want that slight frame increase in a small or choconilla-type hack, or if you need excessive amounts of free RAM you may find it useful.
If you do want to use this, please check the readme, as it is kinda complex. I haven't asked FuSoYa about adding this to LM yet, as I want to know, how many people would be interested in this?
DOWNLOAD

Some small thingies...
Per-Level Layer 3 Tide Pushback
This patch allows you to turn the pushback for layer 3 tides on and off in a per-level basis. It's similar to my other layer 3 tide patch: just set the level numbers where the tide won't push the player in the included table.
DOWNLOAD

Yoshi Flashing on Star

Inspired by a  Segment1Zone2 composition, what this small patch does is make Yoshi flash when the player has invincivility (via a star or whatever) and is riding him.
Additionally, after wye gave an evil suggestion, you can make Yoshi keep the last color it had when the star runs out or you hop off him!
DOWNLOAD

Note Block Expansion/Sprite-Bouncing Note Blocks v1.2

Only posting here for notoriety. This patch has been sitting in the section for like, 6 months now, but I made a new update.
This one allows you to make note blocks which change to different tiles. To see it in action, I included two blocks:
  • A note block which is a blank tile for the player but which bounces sprites.
  • A one-use note block, which disappears after bouncing.

DOWNLOAD


Ok here's the big boys.
Expanded Yoshi Object Clipping/Interaction + Berry Expansion

Look I know Kevin made an UberASM for this but bear with me for a second in here! (sorry kevin, when i started this i didn't know of its existence 😭😭😭)
Ever felt like the fun ability of using Yoshi's tongue to pick up objects trapped behind blocks was stupid? Well, this makes it possible for his tongue to interact with solid objects. So, if the tip of Yoshi's tongue interacts, the mouth begins to close.
This patch has some extra features and enhancements which I think make its existence worth it.
First off, you have multiple berry settings. The patch adds support for berries in layer 2 and vertical levels (again, I know Thomas made a patch for this but, patience gang). Not only that, you can have custom berries! Or, don't like berries at all? You can disable them completely.

The patch has optional features to enable Yoshi picking up coins, Yoshi coins, 3-up moons, and even the midway point with his tongue. These can be triggered individually.
The patch can also enable interaction with vanilla solid blocks such as ON/OFF blocks, note blocks, ?/! blocks and turn blocks.
More so, I also have added this feature to Yoshi's ground pound/stomp (i.e. the one he does when a yellow shell is in his mouth) to interact with certain blocks, the same way the tongue would.
Finally, the Big Thing, I also have a modified version of GPS which will allow you to make your own custom blocks with two new offsets! There's an offset for Yoshi's mouth (for, say, custom berries), and for Yoshi's tongue proper. I feel that this is the game-changer compared to the Uber code. And, altough the mouth offset is perhaps more limited, I'm sure some of y'all will find it useful.
Oh, and additionally, this also makes Yoshi fireballs capable of interacting with cutom blocks (see the level video above, on the Yoshi Buddy area). This doesn't add a new offset, it's the same one as MarioFireball, as I considered adding a custom one was pretty wasteful, but you do need my modded GPS.
DOWNLOAD THE PATCH
My GPS build includes the following custom blocks so you understand how the offsets work.
  • An ON/OFF switch which only triggers by Yoshi's mouth.
  • A custom ExAnimation trigger which toggles with Yoshi's mouth, turning solid/passable in the process.
  • A bunch of custom berries which switch the ON/OFF status, trigger a blue/silver P-Switch, give the player a powerup, or change Yoshi's color.
  • A honey block which completely traps Yoshi in place.
  • An ice pole which also traps Yoshi, but you can get off by moving the arrows. In exchange, Yoshi is hurt


Blocks that use the new offsets need a db $BB header.
Oh also this GPS build uses Asar 1.91.
I didn't test this with Maarfy's Yoshi's expansion. Sorry if it doesn't work!
DOWNLOAD THE MODIFIED GPS (we'll see about making this an official update if it even makes sense)


Super Mario Bros. 3 Inventory

So my good friend  LadiesMan217 came to me and asked me if I could code something from SMB3 for him. I was gonna decline but since I loved the idea of his and Chris' hack, I asked him what he had in mind in case he had something interesting. He suggested either the Bowser final boss, or the inventory system. I love sprites, so of course I chose the inventory!
Originally I pretty much molded this patch the way LadiesMan/Chris' hack worked, but I think I have modified it appropiately to work in any hack.
Includes the following items:
  • Powerups, including some but not all of LX5's
  • The hammer
  • The flute
  • The P-Wing

This requires BOWSIE to work.
This includes a mod of Ladida's SMB3 bar to display on the OW and add the inventory. For this reason, I won't upload this to the section, probably ever.
DOWNLOAD


Triangle Block Expansion: Ceiling Triangle Blocks + Inner Corners ALPHA 1
Honestly I hated this patch, but the more Knight of Time asked about it, the more potential I saw in it. So I remade it from the old version I released a bunch of C3's ago. If for some cursed reason you're using the old one, you're gonna have to remove it yourself (and I won't make an uninstaller). It's actually fun to work in it when you understand what it does!
This one brings more features like inner corner triangles to run down a wall and the like. It also remakes the inner workings of the patch, using pointers, hacking the GFX routine in an easier way, and stuff.
Remember how the old one didn't work with the 32x32 player? This one is the opposite, it needs the patch (I included it, along with graphics).
DOWNLOAD
oh and it's also VERY BROKEN that's why i didn't mention it in the title and why there's no pics :p


Ok it's time for the requests. I'm gonna be a wittwe more strict this time to avoid blow-ups 👉👈
RULES
  1. Failure to follow any of these rules will result in a blacklist! I will be mean if that's the case.
  2. Only request one thing! If I decline your request, you can change it when I re-open requests. You can't request something else if I fulfill your request.
  3. If your request requires graphics, you have to provide the ExGFX file and palettes. I will not rip them myself, and I can't draw.
  4. Don't ask for something overly complex. Think about it this way: don't ask for something inventory or triangle blocks sized. The sprites? Those are something that could be reasonable.
  5. Requests are to be made for the latest versions of GPS, PIXI, Asar, UberASM Tool and BOWSIE. I don't know how to use Callisto so don't ask for compatibility with it (does it even require something special? lol)
  6. I reserve the right to decline a request. Don't you dare to whine if I decline.


NOTES
  • I will give extra priority to overworld sprites. Doesn't mean I'll accept every single request related to them but I mean, I love those boys!
  • There's no theme! Request away!
  • If you ask for something you also requested on the requests forum, please link said thread here so I can claim it there if I accept it, for the badge epeen. (if you didn't, there's no need for this)
  • To confirm that you read these rules and suggestions, leave feedback if you're gonna request something. It's demotivating to be seen as a coding machine; at least have the decency to read my thread and see what I prepared. You can tell me that it sucks and to never code again for all I care, just leave any kind of comment related to what I did and then you can request. 🥺 and it fills my ego bb


Remember, follow the rules, be orderly, and then we have a thing. If all goes well, expect this tradition to return! If not, well... look forward to what I release next time I guess?


ok whatever let's see how many of you guys can read and once i hit 10 requests i'll close the first wave byeeee
Your finally back at SMW Romhacking ASM coding back in 2019! Welcome back Erik! I don't have any requests. But, I just wanted to say your still making top notch fun ASM blocks/sprites/patches/uberasm!!!!! Welcome back it's good to have you again Erik!!!!!!!!
Everything you showed is quite useful and interesting.

Also since you are taking ASM requests...I do have one in mind. In 2022, I did request a boat sprite but that was never fulfilled. GFX - https://www.dropbox.com/scl/fi/9xmbw9d6lxywde53v31cc/Boat-GFX.zip?rlkey=pa8d1ivgesypukle1s0t02jqo&st=o2rxp61e&dl=0

Basically works like skull rafts but for water. Graphics made by Skewer on my request.
Modern Redrawn Mario Bros. 1.5 (last update - February 14, 2023, some new bonus frames, tons of minor touchups to various poses)

On Pixel Art Requests: Depends on what it is and if I have the time for it. If its complex and I don't have the time, don't expect me to accept it.

Projects I support:


Wow. Just wow. Where do I even begin? I have no requests but I would like to say some things about some of the stuff you made. The overworld sprites are beautiful. The static fishin' boo is so cursed. I can't believe you actually made that. I love the vanilla drawbridge sprites so the custom ones are great to finally have! I don't have the historical or technical knowledge to even begin to understand how difficult the Yoshi antics must've been. But I can't wait to see what some of the more creative level designers will use this for. I love the Invinciyoshi. I love that you added wye's suggestion, I wonder if I could use it for a puzzle level or something? Not to say your other work was bad or didn't stand out, these are just the ones I felt I should comment on.
#thp{O_O1}where is the m......

JK! This is an insane amount of stuff, and I can't go over every little thing, but this is an insane amount of effort. The scroll wheel on my screen looks like a full thread, these will be amazing resources for hackers!! Those block bridges intrigue me a lot for some reason, I would love to see how they could be used in hacks. The static fishing boo does look a bit off though, I can't put my finger on it specifically but it might be how still everything feels? Like maybe the fishing boo could have a little bit of animation or the flame could go a bit faster. Other then that minor nitpick, as I said before, INSANE WORK!!!

Also I don't feel like requesting something, because I'm lazy. =w=
Keep your spirits high, and your noodle sweaty!
yoshi finally won its own country
I wonder how different this is from this other patch that does the same thing, I guess there's only one way to find out.
rotating urchin looks cool

As for the requests, I started using your betterified overworld sprite tool and played with it for a bit, however I noticed that the airship sprite still conflicts with the Widescreen Overworld patch. My request would be simple, a solution for this specific conflict, either as a patch, uberasm or as the sprite itself.
heres a screenshot of the bug in action
Lotsa cool stuff you got here! Interesting how the needle urchin can cause an HDMA effect, and you don't even use UberASM for it. The custom block bridges are also super cool as well!

As for my request, it's actually not a resource from scratch, but moreso a bugfix of a sprite I had requested over four and a half years ago! It's basically a 32x64 koopa with unique abilities and whatnot. Alas, the sprite in its current state is kinda buggy, and because of this I have completely abandoned it. I understand if you can't fix everything, but it's worth a shot requesting this!
My Mode 0 guide.

My Discord server. It has a lot of archived ASM stuff, so check that out!

I like Overworld Sprites, Expanded Yoshi Object Clipping/Interaction + Berry Expansion is useful
Overworld Design Contest 2025 After Nintendo Switch 2 Direct (Post-April Fools!!!)
Nice! I was wondering when a concept like this could be revisited. :)

And here's my request:
Homing Fishbone

It's in the name. A fish that moves towards the player.


Edit: New request below.
Originally posted by Green
Nice! I was wondering when a concept like this could be revisited. :)

And here's my request:
Homing Fishbone

It's in the name. A fish that moves towards the player.


This was already requested and done in one of Russianman's C3 threads.
Man, it rules seeing all of your work laid out like this. The overworld sprites especially, but these are the kinds of threads I always hope to see pop up! The Urchins are cool to see - the circular motions are pretty welcome as basic hazards, though the ill effects of poison are a crazy touch to add to the spines. The Yoshi patches are also just plain zany, and will be a great boon for kaizo creators who are bored of merely ejecting him off into a pit and want new ways to make him necessary for out of the box thinking. And the Fishin' Boo is nice for the exact opposite reason; it's nice to see him as a simpler hazard that doesn't raise everyone's blood pressure.

As for a request, how about a Climbing Net Door that doesn't rotate in place? Instead when you hit it, it rotates around an x or y axis and carries Mario the whole way? Like, imagine if hitting one of these doors carried you over the cement blocks and onto the other door.


Other Submissions of mine!
Originally posted by Anorakun
This was already requested and done in one of Russianman's C3 threads.

Oops. Forgot that.

New request:
Fire Bob-omb

A Bob-omb that leaves a fire trail like a Hopping Flame when it's on the ground, whether it is walking or if it hits the ground after being thrown.
I'm rather surprised you didn't show off any screenshots of the updated ceiling triangles patch, but that's totally fine.

Anyway, I have a sprite request that I hope isn't too tough to do. How about a 48x48 or 64x64 version of the grey moving castle block (if the 64x64 version is too complicated for you, I hope the smaller version isn't)? It would be interesting to see a larger version of that sprite, so that it would be a little closer in size to some of the crushers I've seen in various 2D Sonic the Hedgehog games (like the crushers that look kinda like a safe in Lava Reef Zone Act 2).

Edit: Just so I don't forget, I did make this request originally in the Requests forum. Here's a link (though in the topic, I didn't mention the smaller 48x48 alternative).
Hello for My Request I want Cyan Koopatroopa That’s freeze upon contract
I absolutely love ALL of these new sprites and stuff, especially the Parakoopa

Would you be interested in... some cluster effect for the overworld?

My request would be a snow cluster effect for it. If you don't think you can do it, I'll think on another thing.


Have a frost day~
Your work continues to be so impressive, you always feed the streets 🙏🙏 I was just thinking about the Yoshi Animal Buddy code about a week ago for a level I wanted to do, so I don't know how the universe aligned perfect for me on that, but I'm extremely happy about that one in particular. There's a lot of great stuff in this release that I can't wait to mess around with.

I did have a request: Ledge-Dwelling Any Sprite. Basically, it would allow any sprite to pop out of the ground like the Monty Mole (sprite 4E). I don't believe this exists yet, but I'd like to do crimes with it, so if you feel up to it, I'd be very grateful.
Interesting stuff you are showing here. They are very useful for a SMW Hack. But the best of the resources you made is the Super Mario Bros. 3 Inventory. For LX5 powerups users, its very useful. For years I was waiting for someone to make a Super Mario Bros. 3 Inventory, until LX5 powerups got discontinued. Its good to see that you made this resource. In my case, I will definitely use it in my hack. Great work!

As for a request, its basically a simple sprite, similar to an existing one on original SMW. How about a 32x16 version of the Bowser Statue Fireball? (you can also consider it a moving Boss fireball, the one used by Ludwig, because if you place the original sprite 34 in a level, its stationary). It would be a better obstacle for castles, since the original Bowser Statue Fireball is too small. I remember requesting it before on the Requests forum and I was specting someone would fulfill the request, since its very simple, the existing Boss Fireball or Bowser Statues dissasemblies could be used as a base, but unfortunatelly it wasnt fulfilled.

Anyway, great work, these resources are very useful, congratulations!
Alrighty that makes ten requests, nine of which follow the rules.


Accepted
Originally posted by edgar
As for the requests, I started using your betterified overworld sprite tool and played with it for a bit, however I noticed that the airship sprite still conflicts with the Widescreen Overworld patch. My request would be simple, a solution for this specific conflict, either as a patch, uberasm or as the sprite itself.
heres a screenshot of the bug in action


Originally posted by Deeke
As for a request, how about a Climbing Net Door that doesn't rotate in place? Instead when you hit it, it rotates around an x or y axis and carries Mario the whole way? Like, imagine if hitting one of these doors carried you over the cement blocks and onto the other door.


Originally posted by Green
Fire Bob-omb
A Bob-omb that leaves a fire trail like a Hopping Flame when it's on the ground, whether it is walking or if it hits the ground after being thrown.


Originally posted by Metro Shroomin
I did have a request: Ledge-Dwelling Any Sprite. Basically, it would allow any sprite to pop out of the ground like the Monty Mole (sprite 4E). I don't believe this exists yet, but I'd like to do crimes with it, so if you feel up to it, I'd be very grateful.

(but it may get complex, because of how some sprites act. unfortunately, for some of them, it may be impossible to outright get it working correctly (Thwomps come to mind as its speed is ignored unless it has already begun falling. worst come to worst, I accept it, but finish it pretty far after c3)

Originally posted by Fernandito2018
As for a request, its basically a simple sprite, similar to an existing one on original SMW. How about a 32x16 version of the Bowser Statue Fireball? (you can also consider it a moving Boss fireball, the one used by Ludwig, because if you place the original sprite 34 in a level, its stationary). It would be a better obstacle for castles, since the original Bowser Statue Fireball is too small. I remember requesting it before on the Requests forum and I was specting someone would fulfill the request, since its very simple, the existing Boss Fireball or Bowser Statues dissasemblies could be used as a base, but unfortunatelly it wasnt fulfilled.

If I understood correctly you just want Ludwig's fireball with an initial X speed, no? That's easy enough.

On the fence
Originally posted by SF - The Dark Warrior
Everything you showed is quite useful and interesting.

Also since you are taking ASM requests...I do have one in mind. In 2022, I did request a boat sprite but that was never fulfilled. GFX - https://www.dropbox.com/scl/fi/9xmbw9d6lxywde53v31cc/Boat-GFX.zip?rlkey=pa8d1ivgesypukle1s0t02jqo&st=o2rxp61e&dl=0

Buoyancy enabled, "skull rafts on water" is simple enough. But the rocking motion... just by looking at it, seems like it'd be a complex clipping field.
This could pehaps be a case of me not fully grasping it. If you could provide me more details about how you want the player to interact with it, I will consider it further, though if it works as I think it works, then the most likely response will be no, due to the clippings.

Originally posted by Knight of Time
Anyway, I have a sprite request that I hope isn't too tough to do. How about a 48x48 or 64x64 version of the grey moving castle block (if the 64x64 version is too complicated for you, I hope the smaller version isn't)? It would be interesting to see a larger version of that sprite, so that it would be a little closer in size to some of the crushers I've seen in various 2D Sonic the Hedgehog games (like the crushers that look kinda like a safe in Lava Reef Zone Act 2).

The clipping is annoying in both either way. Pick the size you prefer and provide me with graphics (I know I can get it from the vanilla game, but doing that is time I lose), and I will do it.

Originally posted by Blizzard Buffalo
My request would be a snow cluster effect for it. If you don't think you can do it, I'll think on another thing.

I can see this working, under two conditions.
1. Graphics are provided.
2. Assuming you're cool with an UberASM generator to not waste an extra sprite slot.
After all, BOWSIE has 24 slots to chew on, and tbh, spawning, say, 15 snowflakes in a submap should be enough. That's enough left for more sprites.

Rejected
Originally posted by Anas
As for my request, it's actually not a resource from scratch, but moreso a bugfix of a sprite I had requested over four and a half years ago! It's basically a 32x64 koopa with unique abilities and whatnot. Alas, the sprite in its current state is kinda buggy, and because of this I have completely abandoned it. I understand if you can't fix everything, but it's worth a shot requesting this!

Sorry, but I am not comfortable delving into the code of this sprite. Especially because when it comes to bug cleaning... I'm probably one of the worst coders when it comes to that #ab{<_<} #ab{>_>}

Didn't read the rules and notes
Originally posted by Mohamad20ZX
Hello for My Request I want Cyan Koopatroopa That’s freeze upon contract


-- Requests closed - any below this post will not be considered --
Please check out BOWSIE!
i shouldn't have ever been calling it love.
Originally posted by Erik
This includes a mod of Ladida's SMB3 bar to display on the OW and add the inventory. For this reason, I won't upload this to the section, probably ever.

MarioE's inventory patch does this without using the status bar. Perhaps this could be adapted to work without it.
SO MUCH AWESOME HERE. I don't have much to say that other people haven't, but I do have some minor nitpicks:
- I think the brown block bridge's coin form ought to be animated, like the vanilla controllable coin sprite.
- It'd be cool if the Yoshi Animal Buddy sprite+patch had an option for you to use an alternate sprite for the "health meter", like Yoshi's overworld sprite or the "no Yoshi" sign's sprite, to replicate how it's visualized in DKC2/3.
Otherwise, super-cool stuff all around!
Kinda in hibernation for a while. I hope to be back in full swing soon.
  • Pages:
  • 1
  • 2
  • 3
  • 4

Super Mario WorldPatchUberASMSpritesBlocksToolResource ReleaseScreenshotsVideosRequests