-
Notifications
You must be signed in to change notification settings - Fork 23
Creating A New Mod
This article explains the mod format used by Ryu Mod Manager, and how mods should be packed before uploading.
To create a new mod, put all of your modified files inside a new folder (that has the name of your mod) in a way that they mirror the original game files inside the /data/
folder. Your mod folder should NOT contain a folder named /data/
.
Example: files inside /data/battle_lexus2/
are put in the same path inside your mod folder, excluding the /data/
part.
/MyMod/battle_lexus2/fighter_command.cfc
After adding all of your files, zip the folder and upload it.
Keep in mind that the final layout of the /mods/ directory should look like this:
/mods/MyMod/battle_lexus2/fighter_command.cfc
So when creating the zip, make sure it includes the mod folder you created, not just the files.
Example: the zip should look like this
/MyMod v1.0.zip/MyMod/battle_lexus2/fighter_command.cfc
and not like this
/MyMod v1.0.zip/battle_lexus2/fighter_command.cfc
Next article: Adding Loose Files