Jump to content
  • 0

why my cmd does not work? [SOLVED]


Question

Posted

i'm making a char for mugen 1.0 but i just don't understand why my specials cmd don't work. i coded a simple command in a normal time but when i execute it in the game the char just does a normal move that has the same attack button.

here's the cmd of the normal attack and the cmd of the special one:

 

[Command]

name = "a"

command = a

time = 1

 

;Punch

[State -1]

type = ChangeState

value = 200

triggerall = command = "a"

triggerall = command != "holddown"

trigger1 = statetype = S

trigger1 = ctrl = 1

 

[Command]

name = "hammer"

command = ~D,F, a

time = 30

 

;Hammer

[State -1]

type = ChangeState

value = 240

triggerall = command = "hammer"

trigger1 = statetype = S

trigger1 = ctrl = 1

 

3 answers to this question

Recommended Posts

  • 1
Posted

MUGEN reads code from top to bottom, so command ChangeStates placed higher up have more priority than those placed lower; this is why simple commands (like "Punch") are placed at the bottom of the .cmd, further down than more complex commands (like "Hammer").

FXhJiHL.png XslF5vn.png malcsRF.png

Project LG said:

God knows you shit out characters like a friggin' gumball machine.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...