Mizit
July 20, 2004, 5:28pm
1
Hey,
Im a stickman Obsesive.
I am trying to make a stickman fighting game but im having serious problem’s
this is how im trying to make it
o o
/\- /\
|| ||
Okay one dude (you) on the left you can move around and make him kick and punch
and guy’s liek the one of the right come up and you have to kill them and they fight back.
I have made a little example or a man you can move around on the floor
But im stuck on how to make him kick and punch,…
Please help me
system
July 20, 2004, 5:36pm
2
hey man, sorri to say but unless ur willing to get sumone to script it for you, you wont be making this game for a long time. im not being mean but its just hard for sumone who duznt know actionscript to make a game, whether he’s givin the code or not.
system
July 20, 2004, 5:46pm
3
Can someone script it for me then
system
July 20, 2004, 7:18pm
4
http://www.designcontest.net
Offer some green and someone there might pick-up the chore, otherwise I wouldn’t count on anyone here doing for you “for fun”.
system
July 20, 2004, 8:12pm
5
maybe you could do a search in the game forum???
system
July 21, 2004, 4:54am
7
I have already searched in the game forum. No one seem’sto know how
system
July 21, 2004, 9:57am
8
draw the punching or kicking on the second frame on the clip and on the clip write/paste actions
if(Key.isDown(Key.SPACE)){
if(this.punching==undefined||!this.punching){
this.gotoAndPlay(2);
this.punching=true;
}
}
and in the clip where the punching/kicking animation ends in the frame actions put
punching=false;
gotoAndStop(1);
system
July 21, 2004, 3:12pm
9
Nice… But it didnt work :S
system
July 21, 2004, 3:12pm
10
it did… now… i figured it out.
system
July 21, 2004, 3:13pm
11
Do you know how to make people come at you and you can hit them?
system
July 21, 2004, 3:39pm
12
what do you mean - you can hit them - ? you can hit everything always you just need something to check if you hit someone if you know what i mean, for example put the following instance name on you(movie clip - you): you
then on the opponent actions put
onClipEvent(enterFrame){
if(_root.you.punching){
if(this.hitTest(_root.you)){
trace(“wazaaa”);
}
}
}
ps. make a game yourself not ask everybody everything