The Mugen Fighters Guild

Help => M.U.G.E.N Configuration Help => Topic started by: Shollkee on December 24, 2014, 06:13:04 am

Title: problem changing command from Charged move to turned base move
Post by: Shollkee on December 24, 2014, 06:13:04 am
Hi there, I was trying to change the command of H' cvs_honda from a charged base character to a turn base character for my easier gameplay. I did the usual changes, which usually works
Example from:
[Command]
name = "Oni Musou_Lv.1"
command = ~$B, F, B, $F, x
time = 25

to

[Command]
name = "Oni Musou_Lv.1"
command = ~D DF, F, D, DF, F,  x
time = 25

For some reason it does not working. Please help or direct me if any further changes or changes I need for this to work.  :)

Title: Re: problem changing command from Charged move to turned base move
Post by: vgma2 on December 24, 2014, 10:04:50 am
[Command]
name = "Oni Musou_Lv.1"
command = ~D DF, F, D, DF, F,  x
time = 25

Looks like you have a typo in your command.
You're missing a comma after your first "D"

[Command]
name = "Oni Musou_Lv.1"
command = ~D, DF, F, D, DF, F,  x
time = 25
Title: Re: problem changing command from Charged move to turned base move
Post by: Shollkee on December 25, 2014, 06:36:55 am
Hi guys,

I managed solve the problem removing some var condition lines. Thanks for the help.