YesNoOk
avatar

How to change character move configurations? (Read 461 times)

Started by XRAYZAKKONTATIK, November 17, 2007, 04:50:02 pm
Share this topic:
How to change character move configurations?
#1  November 17, 2007, 04:50:02 pm
  • avatar
  • *
 ???Can someone explain this to me?  For example.......lets say Scorpion's low punch move is X.........how can I change it to the Z button? ???
Re: How to change character move configurations?
#2  November 17, 2007, 04:54:22 pm
  • ******
  • Does this looks like the face of mercy?
You know that there is a help section right?
http://mugenguild.com/forumx/index.php?board=314.0

Well to change a commnad you'll have to open the .cmd file of the char you want to modify (right click the file and choose "edit") and look for something like this:

Code:
[Command]
name = "x"
command = x
time = 1

And make the chnages were it says "command" like this:

Code:
[Command]
name = "x"
command = z
time = 1

Another example to change Kung Fu Man's super command.

Code:
[Command]
name = "TripleKFPalm"
command = ~D, DF, F, D, DF, F, x
time = 20
From Quarter circle forward*2 + X to:

Code:
[Command]
name = "TripleKFPalm"
command =  ~B, DB, D, DF, F, x
time = 20
Half Circle forward + X

For more information you can check KFM's .cmd file and the Docs that come with Mugen.
Last Edit: November 17, 2007, 05:06:40 pm by CCI Shiki
Re: How to change character move configurations?
#3  November 17, 2007, 05:41:40 pm
  • avatar
  • *
Thanx.....I appreciate it.