YesNoOk
avatar

Command related issues (Read 541 times)

Started by chaosbringer, August 07, 2020, 08:09:32 pm
Share this topic:
Command related issues
#1  August 07, 2020, 08:09:32 pm
  • avatar
So i am editing Kage by Mr.Giang for personal use and it is first time i am editing anything in mugen and touching codes. There are a few problems which i am unable to solve. These are regarding commands.
1. In pots system and its derivatives special moves and EX special moves have same direction commands (e.g. D, DF, F for hadoken) and difference is only about pressing one or two buttons like single punch for special or 2punches for EX special moves. But when try this in this character EX specials requiring double button press don't come out and only plain specials come out so i have to use slightly different direction commands for plain specials and EX specials (eg. D, F, x or y or z for gohadoken and D, DF, pp for Ex gohadoken) and i don't understand why it is happening. I also tried different command orders by putting complex ones on top for example but to no avail.

2. There is a move tenmakiuujinkiyaku which is performed by pressing down and medium kick in air. But move does not come out and is only possible to perform after character has already performed an air normal move e.g. medium or hard air kick. When i assign a single button command like button "b" while omitting move which was previously possible with this button like medium air kick then move comes out fine.

Link to this edited char:  https://www.mediafire.com/file/fm7nnpttxnnekl3/Kage_G.rar/file

As i am completely new and naive in terms of coding or editing i would appreciate if someone can describe the solution in simple way thanks.
Re: Command related issues
#2  August 08, 2020, 03:11:11 am
  • ******
  • Legendary XIII
  • I am the eye of the storm to come!
    • New Zealand
    • network.mugenguild.com/cyanide/
The changestates for more complex commands must be placed above the changestates for simpler commands

Qcf a+b
Qcf a
A
That will behave
A
Qcf a+b
Qcf a
This will only ever do a punch.


In M.U.G.E.N there is no magic button

They say a little knowledge is a dangerous thing, but it's not one half so bad as a lot of ignorance.
Re: Command related issues
#3  August 08, 2020, 10:54:30 am
  • avatar
Alright! that solved the problems. Thanks.