Deleting attacks in saber combos
Moderator: Moderators
-
osiris_113
Deleting attacks in saber combos
Im trying to totally eliminate the last swing in lukes combo, but so far its not working to well. Anyone have any ideas?
-
Syth
- General

- Posts: 784
- Joined: Thu Apr 13, 2006 8:46 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: happy fun island
okay. in combos everything the jedi does with a sabre in his hand is part of the combo. Each action he does is a "state".
If you want to edit the attacks look in the combo for
You get it? So if you wanted the luke combo to not do his 3rd attack get rid of Transition("ATTACK3"); line.
If you want to edit the attacks look in the combo for
Now, at the end of state it will say the something like the below.State("ATTACK1")
That tells the combo to go to ATTACK2.Transition("ATTACK2");
{
If()
{
TimeStart(5, "Frames");
TimeEnd(12, "Frames");
Posture("Stand");
Button("Fire", "Press");
}
}
You get it? So if you wanted the luke combo to not do his 3rd attack get rid of Transition("ATTACK3"); line.
-
osiris_113
-
Syth
- General

- Posts: 784
- Joined: Thu Apr 13, 2006 8:46 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: happy fun island
Yah that space is annoying. Try this-
In ATACK2 add that transition line (ill post it below) and have it transition to attack 1 (so its like one big loop of attacks)
In ATACK2 add that transition line (ill post it below) and have it transition to attack 1 (so its like one big loop of attacks)
that should workTransition("ATTACK1")
{
If()
{
TimeStart(7, "Frames");
TimeEnd(17, "Frames");
Posture("Stand");
Button("Fire", "Press");
}
}
