PDA

View Full Version : PLatform game



Animashion
July 24th, 2005, 11:40 AM
Im working on a platform game i just want to know does anybody know how to make combos my platform game was made from the platform tutorial in flashkit plz help



Game PLaya Productions
Don't be a hata

gameboy
July 24th, 2005, 01:06 PM
what kind of combos?

smack_boom
July 24th, 2005, 01:44 PM
I'm assuming he's making a platform fighting game like Street Fighter and wants to make combos for attacks.

Animashion
July 24th, 2005, 02:27 PM
what kind of combos?
like fighitng combos like if a is punch and s is kick and you right then when you press two butoins at the same time li a+s it does like a super kick or super punch what mean is it goes to a different frame when two butons are pressed

signifer123
July 24th, 2005, 02:30 PM
embed the if so you have
if(){
if(){
}
}
and check two differnt keys that you want or you cna use &&

Animashion
July 24th, 2005, 02:33 PM
embed the if so you have
if(){
if(){
}
}
and check two differnt keys that you want or you cna use &&
can you give me the whole code like a example tx

nathan99
July 25th, 2005, 02:38 AM
//if 2 specified keys are down
if(Key.isDown(...) && Key.isDown(...)){
//action
}