Page 1 of 2

could somebody do this for me please?

PostPosted: Wed Jul 11, 2012 8:27 pm
by Fojam
Even though I haven't posted any updates for it, I am still diligently working on my super smash bros. game. There is still only one character, mainly because i have been focusing more on the engine rather than the characters, and because i really hate prepping sprites from sprite sheets.

It would be awesome if someone could take sprites and make files for each animation for characters. I already have mario done, but that is it.

I need animations for:

stand, walk, run, jump, doublejump, land, fall, hang, crouch, grab, grabbed, grabbing, spin throw, throw, throw up, use melee weapon, hurt minor, hurt fly, hurt flip, hurt spin, hurt spin upward, hurt dead, standard attack or combo, standard side, standard up, standard down, running or sliding attack, air attack, air side, air up, air down, special, special side, special up, special down, smash attack charging, smash attack side, smash attack up, smash attack down, final smash

and i need them for both left and right (just flip the image). also please do the same attacks that are in smash bros brawl for all of them please

I have uploaded an example of one that I already did.

If someone could help do these, it would be really awesome, and I would put your name in the credits :D

Re: could somebody do this for me please?

PostPosted: Thu Jul 19, 2012 7:53 pm
by happyjustbecause
I wouldn't mind doing some of the sprite sheets, you need quite a bit, but I could help out a little. Sprite sheets are quite a pain to deal with, but I need some practice.

Re: could somebody do this for me please?

PostPosted: Sat Jul 21, 2012 3:51 pm
by Fojam
thank you so much! that would be great. I have a zip with some sprite sheets here. like i said, i need animations for:
stand, walk, run, jump, doublejump, land, fall, hang, crouch, grab, grabbed, grabbing, spin throw, throw, throw up, use melee weapon, hurt minor, hurt fly, hurt flip, hurt spin, hurt spin upward, hurt dead, standard attack or combo, standard side, standard up, standard down, running or sliding attack, air attack, air side, air up, air down, special, special side, special up, special down, smash attack charging, smash attack side, smash attack up, smash attack down, final smash

make sure you make elements like projectiles or fire or things like that in separate files and so it'll be easier to program in
I would recommend using this gimp plugin for it as well: http://registry.gimp.org/node/20943

Re: could somebody do this for me please?

PostPosted: Sat Jul 21, 2012 9:51 pm
by happyjustbecause
Alright, I'll see how many I can do. I didn't realize it's in the form of the large sprite sheet, and it doesn't yet have a transparent background. But I can definitely do my best, which will probably result in doing some :).

Re: could somebody do this for me please?

PostPosted: Sun Jul 22, 2012 12:32 am
by Fojam
thanks so much. i really hate doing sprites i like programming so much better

Re: could somebody do this for me please?

PostPosted: Tue Jul 24, 2012 7:04 pm
by happyjustbecause
Here are a few sprite sheets I've done. As you can see I've been doing shorter ones, but I'll get to making other ones soon enough =D. I just thought you could maybe use the donkey kong idle and run. I'll do the walk one later today, and maybe the jump.

I wasn't sure on how exactly the running animation is supposed to be, so I have two versions, static and shaky. You can decide which one's better for you, I'm thinking "shaky" looks a little nicer.

Re: could somebody do this for me please?

PostPosted: Wed Jul 25, 2012 5:23 am
by happyjustbecause
I made the DK_Walk animation, it may look a little odd when DK isn't moving, but I tested it with x movement and it doesn't look as bad as I thought.

Re: could somebody do this for me please?

PostPosted: Wed Jul 25, 2012 7:34 pm
by happyjustbecause
And... Here's the Dk_Jump animation:

Re: could somebody do this for me please?

PostPosted: Wed Jul 25, 2012 8:44 pm
by Fojam
nice! btw crouch and hang only need one frame. I personally like shaky better for running as well. I think you did a great job so far, though!

Re: could somebody do this for me please?

PostPosted: Wed Jul 25, 2012 11:18 pm
by happyjustbecause
Yeah the crouch has two frames that are exactly the same, but I would keep both frames for the hanging one (they're different frames), it looks better than just a static image, to me anyways.

Re: could somebody do this for me please?

PostPosted: Thu Jul 26, 2012 12:51 am
by Fojam
awesome. here is what i have so far of the game. Currently the AI works fairly well, although i am rewriting it at the moment. I haven't programmed in the random attack generator for ichigo, but it works for mario:
Windows:
http://dl.dropbox.com/u/8500676/iSSB%20executable.zip
Linux:
http://dl.dropbox.com/u/8500676/iSSB%20 ... utable.zip
Mac:
http://dl.dropbox.com/u/8500676/Super%2 ... %20Mac.zip

Re: could somebody do this for me please?

PostPosted: Thu Jul 26, 2012 3:37 pm
by happyjustbecause
Nice man! I just played some of it, and I'm impressed. It's pretty awesome so far. The AI seems to work pretty well, and the controls are pretty nice. I would maybe improve the look of the buttons though =D. Also, it seems you still have "sticky" walls, that's an extremely easy fix that you could do. And I think Mario's flip for the double jump should have it's frame rate increased a little bit. Cool you already have a logo for the application.

This'll be really cool once you get other characters in it. This encourages me to make some more sprite sheets =D.

Thanks for providing a mac version, otherwise I wouldn't have been able to check it out. :)

Re: could somebody do this for me please?

PostPosted: Fri Jul 27, 2012 11:34 am
by Fojam
thanks for the advice! the buttons are just placeholders for now until i feel motivated to actually draw nice looking buttons. and also, can you help me with the sticky wall bug? ive been trying to fix that for a while

just updated the executables with the new AI. its kind of glitchy but about the same glitchyness as the old one. Still need help fixing the weird vibrating on wall bug

Re: could somebody do this for me please?

PostPosted: Sat Jul 28, 2012 7:28 pm
by happyjustbecause
Yeah, I was hoping those weren't going to be the official buttons :). Well, the sticky wall bug is fixed with some simple code (unfortunately I don't fully understand the simplicity of the code), but here it is. This is assuming your using physical response for your collisions.

Script Editor: Player -> Collision Left or Right Side of (Tiles/Ground)
Code: Select all
int j = yvelocity;
PhysicalResponse(MOVE_EVENT_ACTOR_ONLY, USE_CALCULATED_MASS, 1, 1, 0, 1);
yvelocity=j;

Re: could somebody do this for me please?

PostPosted: Sat Jul 28, 2012 7:55 pm
by Fojam
i actually used that code before believe it or not (btw yvelocity is a float i think) to attempt to fix the problem. It fixed it, but it also caused a weird bug sometimes that the actor would fly off the screen randomly.

EDIT: i found a fix for it and i uploaded it. there are still a lot of bugs on the physics, though