YesNoOk
avatar

Geros Mami Tomoe Calling Madoka (Read 2236 times)

Started by MadokaEtoile, September 07, 2014, 04:37:49 am
Share this topic:
Re: Geros Mami Tomoe Calling Madoka
#21  November 01, 2014, 12:26:40 pm
  • ***
    • USA
Do you have fighter factory 3 yet? I mean everyone's said to open it with notepad.
Get Fighter Factory 3.
Open the character with FF3.
Set up FF3 to point to your mugen and test the character out. (TOOLS > OPTIONS >Add Mugen)
           
Re: Geros Mami Tomoe Calling Madoka
#22  November 01, 2014, 12:35:25 pm
  • ***
    • USA
           
Re: Geros Mami Tomoe Calling Madoka
#23  November 01, 2014, 12:39:56 pm
  • *
    • Singapore
    • marisakirisame@nokiamail.com
ooh ok I downloaded it now how to open the cmd
Re: Geros Mami Tomoe Calling Madoka
#24  November 01, 2014, 12:49:14 pm
  • ***
    • USA
open the character.
Find the character's folder. Open the DEF file. Then in FF3 at the top you'll see an icon that looks like a sheet of paper with two blue boxes. That's for CNS; The Arcade Stick icon is for CMD.

Please, try to figure a lot of this stuff out by yourself. Mess around in the program to see what stuff does. Often, just like the stars on the forum, if you place your mouse over something it'll say what it does. This trick works in FF3 too.

One tip, use CTRL+F to bring up the "Find" box in FF3. you can type in the box and press find and it'll track down what you need.
So say you want to find statedef 200. Type in 200] and press enter. It'll bring you to every spot 200] is listed. So you might find states 2200, 1200, and 3200, but it'll finally find 200 for you.
           
Re: Geros Mami Tomoe Calling Madoka
#25  November 01, 2014, 01:04:57 pm
  • *
    • Singapore
    • marisakirisame@nokiamail.com
Hmm... this is what it says...

[State -1,まどか召喚]
type = ChangeState
triggerall = var(59) <= 0
triggerall = command = "holdback_z"
triggerall = statetype != A
triggerall = var(29) = 0
triggerall = var(40) = 0
trigger1 = var(51) > 150
trigger1 = ctrl
value = 2900

I don't understand
Re: Geros Mami Tomoe Calling Madoka
#26  November 01, 2014, 01:23:50 pm
  • ***
    • USA
There can be more than 1 call to activate the same stateno. This looks like it's for an "AI" control. I'll try to explain each thing.

Quote
[State -1,まどか召喚]
type = ChangeState
triggerall = var(59) <= 0      <<<This VARiable is 59. Most people use var(59) to control AI.
triggerall = command = "holdback_z"     <<<This makes sure you have to hold back to do the move
triggerall = statetype != A   <<<This makes sure you're not in the Air. So standing and crouching both work
triggerall = var(29) = 0        <<<This makes it only work when VARiable 29 is nothing
triggerall = var(40) = 0        <<<This makes it only work when VARiable 40 is nothing
trigger1 = var(51) > 150      <<<This makes it only work when VARiable 51 is bigger than 150. It's probably a timer.
trigger1 = ctrl                      <<<This makes sure P1 has control of it's body
value = 2900                       <<<This is what StateNo it's going to switch to


Look for the value 2900 again. There's no Command = "somebuttonpressname" so I dont think the player is supposed to activate this stateno with this changestate. "somebuttonpressname" is something I just made up.

           
Re: Geros Mami Tomoe Calling Madoka
#27  November 01, 2014, 01:50:22 pm
  • *
    • Singapore
    • marisakirisame@nokiamail.com
I CAN use it, But ONLY ONCE.