Posted by Ben_Fox
in KOF Supercancel with Max mode Power restrictions (CMD) (Started by luis2345 December 28, 2013, 02:03:22 pmBoard: M.U.G.E.N Development Help
As for why you can't use it outside of max mode at all, I'm not sure. I don't see anything in particular that should prevent it from working. But, perhaps setting the power requirement up as a math formula that takes advantage of Mugen's boolean return values would work better?
Code:
triggerall = power >= 1000 + ((stateno = [1000,2000]) * 1000) - (var(55) * 1000)
That should give a base of 1000 power required to activate, an additional 1000 required if you're super-canceling, and will subtract 1000 power from the requirement if the max mode flag is turned on. That should also remove the need to use a second state control to handle whether or not max mode is on.

