How to Get Good MUGEN AI
MUGEN does not ship a good generic AI. Each character carries its own. Difficulty only scales what the author wrote. If they wrote nothing, max difficulty still stands there.
What the engine actually does
Options sets Difficulty (usually 1–8). That value is exposed to the character as an AI level. A well-coded char reads it and changes how often it punishes, blocks or supers. A dummy char ignores it.
IKEMEN GO has more helper functions for authors, so recent IKEMEN chars tend to fight better out of the box. It will not rewrite a 2008 CNS that never checks the level.
What to change first
- Set difficulty in OptionsStart at 4. 8 on a cheap boss is not "good AI", it is infinite armor and full-screen supers. Arcade and versus each remember the last value.
- Use versus, not trainingTraining often forces the dummy to stand. You cannot judge AI there unless you switch the dummy to CPU in that mode.
- Read the character's readmeSome authors document an AI button, a debug toggle, or a separate "AI on" var. Pots and Jmorphman conversions usually have real AI. Random 2010 edits often do not.
- Check DebugIn 1.0/1.1, Ctrl-D, then Ctrl-C to cycle the CPU on that side. If the char still walks forward and throws one fireball, the AI was never coded.
- Swap the character, not the engineA second conversion of the same name can have a completely different brain. That is why this site keeps Pots Ryu and Warusaki Ryu as separate listings.
If you are willing to open the files
Old-school MUGEN AI is a set of command buffers the CPU "types" plus a var (often var(59) or a named AI var) that is set when the engine reports a CPU. Fighter Factory will show you whether that block exists. If the .cmd has no AI section, raising difficulty does nothing.
Do not paste a random "AI patch" from a forum onto a char you did not make and then expect the movelist to still work. You can break the human side. Prefer a later version from the same author.
Fighter Factory Studio is the tool for this. It is not required to play.
Chars that actually fight
The author matters more than the franchise. On this catalog, start with people who write AI on purpose:
FAQ
Is there a global AI file I can install?
No. Anyone selling "one AI for all MUGEN chars" is lying or shipping a helper that only works on chars written for it.
Why is arcade easier than versus?
Arcade order and maxmatches send you weaker order=1 chars first. Versus lets you pick the boss. Change [Options] if you want arcade to hurt sooner. That is not AI, that is roster order.
Does the 4GB patch make AI smarter?
No. It only stops HD chars crashing. See common errors.