How to add characters
From Infinitywiki
(→Additional Information) |
(→Combined Example) |
||
| Line 50: | Line 50: | ||
==Combined Example== | ==Combined Example== | ||
| - | Ryu_MvC,stages/Ryu_stage.def,includestage= | + | This is an example of how the text might look with multiple characters in the select.def file |
| + | Ryu_MvC,stages/Ryu_stage.def,includestage=1,order=3 | ||
| + | Ken_MvC,stages/Ken.def,includestage=1,order=4 | ||
| + | ChunLi,stages/China.def,includestage=2,order=5 | ||
| + | Sagat,stages/Tailand.def,includestage=0,order=7 | ||
| + | Bison,stages/Tailand2.def,includestage=0,order=9 | ||
=Adding characters in a zip archive= | =Adding characters in a zip archive= | ||
Revision as of 07:51, 7 July 2010
Contents |
Adding characters in folders
Each mugen character should be located in their own folder which is placed inside the "chars" folder. For example let's use [Ryu] by Scar. After downloading this character extract the zip file.
1) Move the folder Ryu_MvC into the \chars folder in your mugen directory. 2) Open the file \data\select.def 3) Anywhere under the line [characters] type Ryu_MvC 4) Save and close the select.def file. Now Ryu is available in the mugen game.
You can add multiple characters this way just by adding each new character beneith the previous one on a new line. Below are some addition details about adding characters to your game:
1) If the def file located in the character's folder has a different name than the folder name then you will need to type out the folder name as well as the full title of the def file. It would look like this
Ryu_MvC\Ryu.def
2) Each mugen screen pack allows for a different amount of characters to be added to each line of the select screen. This is determined by the [Select Info] section of the data\system.def file. The original mugen default is 2 rows of 5 characters each. You can install any one of various premade screen packs.
Additional Information
You can add additional data to each character's line to determine additional properties.
Stages
With this code a specific stage will be selected when this character is the opponent in Arcade mode.
Required Parameters:
folder/filename
Example:
stages/stage0.def
Include Stage
You can determin if the stage listed is selectable in the game's stage select option or omitted
Required Parameters:
IncludeStage = (int)
1 = yes
0 = no
Example:
Includestage = 0
Order
This allows you to create a fight order with your characters in conjunction with the [Options] section in the select.def file
Required Parameters:
Order = (int)
The (int) is a value between 1 and 10 and the character will be made the opponent
based on the permaters of the [Options] Section of the select.def file.
Example:
Order = 3
Combined Example
This is an example of how the text might look with multiple characters in the select.def file
Ryu_MvC,stages/Ryu_stage.def,includestage=1,order=3 Ken_MvC,stages/Ken.def,includestage=1,order=4 ChunLi,stages/China.def,includestage=2,order=5 Sagat,stages/Tailand.def,includestage=0,order=7 Bison,stages/Tailand2.def,includestage=0,order=9
