Language…
12 users online: Green,  Hooded Edge, Koopster, LeGurdah, Luigixhero, MellowYouth, mmBeefStew, monkey03297, Nciktendo, paper ness, Raul antano, Ringo - Guests: 172 - Bots: 141
Users: 59,956 (2,174 active)
Latest user: AndersonH

Sling Pack

SMW Sprites → Sling Pack

Submission Details

Name: Sling Pack
Author: NerDose
Added:
Tool: PIXI
Type: Standard
Dynamic: No
Disassembly: No
Includes GFX: Yes
Description: This sling pack contains four different slings: The silver sling shoots diagonally and drags mario up, the Golden sling shoots horizontally and acts as a swing, the blue sling shoots vertically and acts as a rope and the red sling shoots horizontally and spawns a platform.
These slings won't work on a Map16 tile of your choice.
Be sure to put the file "GetDistanceSprMario.asm" in PIXI's routines folder and set the define !SpriteNumber in RedSling.asm to the RedSlingPlatform's sprite number in PIXI's list.txt
Tags: gimmick lorom pacifist sa-1 sp2
Comments: 9 (jump to comments)
Rating:
4.5 (2 ratings)
No rating
Download 16.04 KiB | 478 downloads

Screenshots

View all

Comments (9)

AppleBoy54321 Link
Originally posted by SmokyShroom
Isn't there the ability to delete or edit your comment. I hope you changed your rating at least.

I never even rated it.
AppleBoy54321 Link
Originally posted by AppleBoy54321
Originally posted by NerDose
Originally posted by AppleBoy54321
Broke my ROM. Do not recommend.

This shouldn't happen. May I ask for more info about your problem? It may have little to do with the sprites themselves.

Certainly. This sprite nested some RATs into my ROM after trying to remove them.

Ok...this was all on my end. I intend to use this sprite correctly in my new
hacking project. I'm sure that Wario will find these exhilarating to use.
SmokyShroom Link
Isn't there the ability to delete or edit your comment. I hope you changed your rating at least.
Boosius Link
I would advise against using this sprite with the Retry System Patch as it will have messed up graphics and will flash rapidly on the screen if you select retry or exit. I learned if you want to use both you can cancel the retry prompt in retry_table.asm and it will work without causing epilepsy issues. Really cool sprite! #smrpg{<3}
 MarioFanGamer Link
Moderated with:
  • Lunar Magic v3.30
  • SA-1 Pack v1.32
  • PIXI v1v32
  • BSNES v115
They're definitively cool sprites, especially now that the gold sling doesn't kill you now as easily. That you can't snatch onto any block is also interesting, though it would be even better if you allow the users a black list instead of blacklisting a single tile.

That being said, there still are some things in the gold sling where you could have coded better, though:
  • You don't have to ORA $16 with $18 because the highest two bits of $18 are already or'd with $16 i.e. if you press A then you also have B pressed.
  • Checking for the highest bit can also be simplified a bit: If the highest bit of a binary value is set, said value is negative. As a result, AND #$10000000 : BEQ $xx can be simplified to BPL $xx
  • Speaking of AND: AND #%11111111 is completely redundant, it doesn't mask out any sprite (similar to how multiplying with 1 does nothing, especially because the AND operation is often compared with multiplication).
  • Lastly, GetMarioSpeed still can be optimised. When I mentioned to use Y instead of scratch, I didn't mean it in the sense of holding an alternative storage (in fact, you don't even need to use Y in the way you have done) but rather remove redundant code i.e. A holds the angular speed and there is only one STA !187B,x. And what's the RTS doing after a BRA?


The blue sling code to handle jumping also could have been improved like in the gold sling. This includes moving Mario up and down when the sling holds onto something. Hint: Use tables for the up and down movement.

And a gameplay issue: The silver sling has got the issue that if Mario's back is right behind a wall, the silver sling might not work.
AppleBoy54321 Link
Originally posted by NerDose
Originally posted by AppleBoy54321
Broke my ROM. Do not recommend.

This shouldn't happen. May I ask for more info about your problem? It may have little to do with the sprites themselves.

Certainly. This sprite nested some RATs into my ROM after trying to remove them.
NerDose Author Link
Originally posted by AppleBoy54321
Broke my ROM. Do not recommend.

This shouldn't happen. May I ask for more info about your problem? It may have little to do with the sprites themselves.
AppleBoy54321 Link
Broke my ROM. Do not recommend.
 1UPdudes Link
Fantastic set of sprites with a wide range of utility and uses.
Thoroughly enjoy the Gold and Red Slings.