PDA

View Full Version : Who wants to cooperate creating a 2D shooter?



Snipergen
April 9th, 2006, 09:43 AM
Hi, I'm wondering if somebody is interested in creating a 2D sidescroller-shooter, a bit in the way of halflife 2D (codename gordon)
I got some points that I want to be sure of:

- I would like to do the artistic stuff, because I'm pretty good at that.
- The game has to be only with human enemy's, so no alien stuff.
- I want to implement a lot of physical stuff, so like boxes that are movable, exploding barrels, and ragdollphysics.

I don't think many peaple will be ready to create this (highly potential) game, but if you have any interest, leave a message.
So the main persons I need are programmers...

PS: I'm not offering money, you'll have to do it because you enjoy it :)

Thanks for reading!

InfestedDemon
April 9th, 2006, 11:46 AM
Hi, I wanna sign up to your project.

Just to let ya know. You don't want programmers you want actionscript writers, lol. I'm okay with actionscript (not the best but i'm still learning).:mu:

Nich
April 9th, 2006, 12:48 PM
Well, I like to think that they're similar. In any case I might be willing to help out. I'm terrible at drawing but I think I can code the things you mentioned. I'd prefer not being the only programmer though, I have my own projects that I'm working on.

Joppe
April 9th, 2006, 02:43 PM
Ryan actionscript is an programming language. People who write in actionscript is programmers. What are you talking about :S

Snipergen
April 9th, 2006, 04:12 PM
Hi, I wanna sign up to your project.

Just to let ya know. You don't want programmers you want actionscript writers, lol. I'm okay with actionscript (not the best but i'm still learning).:mu:

Yeah, of course I need actionscripters :)
Well, I'm learning it too, and I found a great platformer-engine (you can draw your surfaces and obstacles)
I programmed a gun and bullets and you can aim with the mouse and if the bullet hits the ground I have a particle effect.
But I want actionscripters that can do physics! Ragdolls are my priority...

ricer
April 9th, 2006, 04:48 PM
i'll sign up for actionscripting too ;)

im not much of a drawer but im ok with actionscripts :)

InfestedDemon
April 9th, 2006, 04:57 PM
I'm gettin on witha phsyics actionscript now.

Bouncing (User can move) (have to put onto movie clip)

//Bouncing
onClipEvent(load){
speed=0;
fall=true;
oldx=_x;
oldy=_y;
}
onClipEvent(enterFrame){
if(fall==true){
speed++;
_y+=speed;
}
}
onClipEvent(enterFrame){
if(_y>400&&speed>10){
speed*=-.7;
}
if(speed>0&&_y>400){
fall=false;
}
}
on(press){
fall=false;
speed=0;
startDrag("");
}
on(release){
fall=true;
stopDrag();
}
Hope this helps the creation of a pysics engine. I will post more soon.

Snipergen
April 9th, 2006, 05:18 PM
I'm gettin on witha phsyics actionscript now.

Bouncing (User can move) (have to put onto movie clip)

Hope this helps the creation of a pysics engine. I will post more soon.
Hah, thanks, but now you need to collide the ball with a surface you draw. Believe me, it is impossible to script that, you'll need verlet integration (read the Jakobsen article).

Now, ricer, can you program a good engine? Actually, the only thing I need is let's say a barrel that collides with other barrels in the level and it needs to collide with the ground that is painted with the paint tool, so a movieclip
We're talking about incredibly hard coding stuff, your VERY good if you can do this...

Oh, I want to achieve something like this... it's incredible!
http://www.pekkasandborg.com/portfolio/newRagdoll.swf

Lord Rahl
April 10th, 2006, 08:31 AM
Hah, thanks, but now you need to collide the ball with a surface you draw. Believe me, it is impossible to script that, you'll need verlet integration (read the Jakobsen article).

X and Y opposition. Not impossible, just seems that way till you have a script and understand it. There are several files on Kirupa, and I mean alot on hitTest and collision. Pushable objects wouldn't be to hard to add either (check on collision, check if the char is to the left or right of the object, then add movement). As for ragdollphysics, luck on that. I myself have not looked into that, so I wouldn't know the first thing about it. But I do know its possible because of "boneless woman". :krazy: (thats if anyone has seen that file)
Best of luck on the game. :cowboy:

hybrid101
April 10th, 2006, 09:04 AM
is this in flash 8 or mx2004 pro?
btw, are you referring to advanced collision detection while moving crates? like circles to circles and stuff?

Snipergen
April 10th, 2006, 11:30 AM
yeah, I mean true physics, if you push a barrel of a hill, it falls down and bounces up rotation... Aw you know what I mean! :sure:

Joppe
April 10th, 2006, 12:39 PM
This is quite alot for a free project over the internet.

InfestedDemon
April 10th, 2006, 03:47 PM
it is a big project, aim for something smaller first.

Joppe
April 10th, 2006, 04:19 PM
Ryan, you are on the team. You have started programming. And now you say its too big? :P

Snipergen
April 11th, 2006, 04:18 AM
it is a big project, aim for something smaller first.

Never do the easy way if you can do it the hard way :p

nathan99
April 11th, 2006, 07:22 AM
I MAY be able to help in my spare time

bombsledder
April 11th, 2006, 09:20 AM
also you are all looking for a real project no pay! and you wan't top notch actionscripters to write your ragdoll lol, a little much don't ya and your using it on

as1 lvl, in my opionion start writing classes for this game

ritual
April 11th, 2006, 09:34 AM
Hi, I'm wondering if somebody is interested in creating a 2D sidescroller-shooter, a bit in the way of halflife 2D (codename gordon)
I got some points that I want to be sure of:

- I would like to do the artistic stuff, because I'm pretty good at that.
- The game has to be only with human enemy's, so no alien stuff.
- I want to implement a lot of physical stuff, so like boxes that are movable, exploding barrels, and ragdollphysics.

I don't think many peaple will be ready to create this (highly potential) game, but if you have any interest, leave a message.
So the main persons I need are programmers...

PS: I'm not offering money, you'll have to do it because you enjoy it :)

Thanks for reading!


If you do make this, it sounds like it'll be quite big, keep remembering people will have to load a game to play it.

InfestedDemon
April 11th, 2006, 05:14 PM
what I meant about too big is that moving crates and bouncing balls is quiet alot just for a flash. Anyway I will help.
-Ryan Shah

P.S Nathan is the best flash guy i know. He is pratially a master to me (he don't no that i think of him like that) XD:mu:

Snipergen
April 13th, 2006, 04:30 AM
Oh, ok, thanks for the replys, I know this will be a big project but I'm not scared of a bit of work :smirk:

InfestedDemon
April 13th, 2006, 05:53 PM
we need work, lol

bombsledder
April 13th, 2006, 07:53 PM
:O, so whose on the team just wondering

InfestedDemon
April 14th, 2006, 05:48 PM
I am