Hey all
Currently working on my first character. Made a command, compared it to other characters and it's the exact same, yet the move does not trigger. Anyone got any idea's?
Inside the control code:
[Command]
name = "Beam attack"
command = D, F, a
time = 30
;Beam attack
[state -1, Beam attack]
type = ChangeState
value = 509
triggerall = command = "Beam attack"
triggerall = statetype = s
triggerall = statetype !=A
triggerall = power >= 1000
trigger1 = ctrl
Only code that also connects with a is the light, medium and strong combo
;Light attack standing
[state 500, Stand Light Punch]
type = changestate
value = 500
triggerall = statetype!=A && command = "a"
trigger1 = ctrl
triggerall = statetype != C
;---------------------------------------------------------------------------
;Medium attack standing follow-up
[state 501, Stand Med Punch]
type = ChangeState
value = 501
triggerall = command = "a"
trigger1 = stateno = 500 && movehit
;---------------------------------------------------------------------------
;Strong attack attack standing follow-up
[state 501, Stand Strong Punch]
type = ChangeState
value = 502
triggerall = command = "a"
trigger1 = stateno = 501 && movehit
;---------------------------------------------------------------------------
Can anyone find the problem?