Hi, I have a Problem i'm trying to correct.
My Game is a 2d Style Beat Em Up Game.
Im trying to add combos into the game.
The Method im trying goes something like this
Global Variable (Punches) = 0
On Z Pressed - Set Animation to "Punch"
Punches = 0
Add 1 to Punches
On Z Pressed - Set Animation to "Punch2"
Punches = 1
Add 1 to Punches
On Z Pressed - Set Animation to "Punch3"
Punches = 2
On Punch3 Finished - Set Value of Punches to 0
However, thats not working out.
What i am trying to do is when the player presses Z 3 Times it will play different animations and when the 3rd animation ends it will restart and play the others when you press z again.
Those are My Events
Help?
Thanks!