Skip to content
abcdefg30 edited this page Jul 13, 2017 · 31 revisions

OpenRA is designed to be highly moddable. Both RA and C&C are implemented as mods on top of the core engine, and other mods can choose to use as much or as little of that functionality as they like. At the simplest, a mod may just contain some custom MiniYaml definitions. More complex mods may need to introduce some custom traits, which are written in a .NET language (we prefer C#) and compiled into a DLL. At the most complex end of the spectrum, it is possible to use the engine without any of the RA behavior, although this involves an incredible amount of work (reinventing combat, production, resource management etc).

Read the Trait Documentation to see what game rules are available and how they work.

Running the game with a mod

By default, the game runs the mods listed in settings.yaml, under Game: Mod:. If this doesn't exist, the default is "modchooser"(which lets you choose which mod to play and install assets for it). You can override the settings and run with specific mods by listing them on the command line, or by changing the arguments in the launcher shortcuts.

Under Windows, you can do this by creating a new shortcut to C:\Program Files\OpenRA\OpenRA.Game.exe. Right click on the shortcut, select properties and go to the Shortcut tab. Go to the target box and type a space at the end, then type: Game.Mod=

The target box should now read:

C:\Program Files\OpenRA\OpenRA.Game.exe Game.Mod=	

After the Game.Mod= you should declare which mod you want to load. To run the Tiberian Dawn mod, you would use Game.Mod=cnc.

Mod Directory Layout

The game root is located at C:\Program Files (x86)\OpenRA\ on Windows and at /usr/lib/openra on Linux.

Each mod has a directory inside the mods directory in the game root. It is the name of this directory which is used when naming mods to load. Everything related to a particular mod is contained within this directory (with the possible exception of user maps, which can be loaded from other locations too.)

The only file which is absolutely required for a mod is mod.yaml. This contains the manifest for the mod, which the engine will use to load all the other pieces you need. By convention, other things are placed in subdirectories of the mod directory:

  • rules contains MiniYaml files describing how to assemble actors (units/buildings/etc)
  • maps contains maps.
  • tilesets contains MiniYaml files describing the various tilesets -- temperate, snow, etc.
  • chrome contains MiniYaml files describing the UI chrome
  • uibits contains various textures used by the chrome
  • bits contains various loose in-game assets -- SHPs, etc.

Nothing forces you to lay out a mod this way, but it's easier if everything is consistent.

Adding a faction to your mod

Click here for the in depth guide.

Adding units

Adding a new weapon

Click here for a brief guide.

Players ๐ŸŽฒ

Modders โœ๏ธ

Developers ๐Ÿ”ง

Clone this wiki locally