Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Creating A New Mod

SutandoTsukai181 edited this page Jun 13, 2022 · 4 revisions

This article explains the mod format used by Ryu Mod Manager, and how mods should be packed before uploading.

General layout

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


Packing the mod

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