Combo special attack
Moderator: Moderators
-
darthhalv
- Private First Class
- Posts: 88
- Joined: Sun Dec 05, 2010 8:40 am
- Projects :: No Mod project currently.
Combo special attack
Hi I wonder how I should edit my combo file to make it so the 3rd attack of the combo only works if your energy is full?
-
jedimoose32
- Field Commander

- Posts: 938
- Joined: Thu Jan 24, 2008 12:41 am
- Projects :: Engineering Degree
- Location: The Flatlands of Canada
Re: Combo special attack
Code: Select all
Transition("ATTACK3")
{
If()
{
Break(10, "Frames");
TimeStart(6, "Frames");
TimeEnd(16, "Frames"); //, "SyncIfOvertime");
Posture("Stand");
Energy(">=", 2.5); // at least half a second worth of deflect time
Button("Fire", "Press");
}
}
--edited to provide more clarity and a better code example--
-
darthhalv
- Private First Class
- Posts: 88
- Joined: Sun Dec 05, 2010 8:40 am
- Projects :: No Mod project currently.
Re: Combo special attack
I'll try it thanks.
EDIT: It didn't work
EDIT: It didn't work
