Arma: Mod Folders: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(22 intermediate revisions by 14 users not shown)
Line 1: Line 1:
===Introduction===
===Introduction===


Custom modfolders are folders that can contain theme addons for easy selection, or Data files which change general parameters of the game. If you have OFP:Resistance, your \RES folder is an example of a modfolder. This feature was added in version '''1.75''' with the Resistance upgrade, prior to the '''1.75''' upgrades addons where put in the '''addons''' folder.  
Custom '''modfolders''' is a concept in Operation Flashpoint that allows addon makers and players to
completely change most aspects of the game.
They were introduced with the release of the resistance addon, which also became the first total conversion
[[modification]].


Some Flashpoint players prefer to put an "@" in front of each modfolder's name, so they then get listed at the beginning of the main Flashpoint folder, and can be easily separated from essential game folders.
It has become a common practice to start mod folder names with a "@" in front of the name to distinguish them from other files in the Operation Flashpoint directory.


===Making it Work===
===Making it Work===
To use Modfolders you have to create a shortcut to your OFP executable, and in the path add the following parameter: -Mod=name


"C:\Program Files\Codemasters\OperationFlashpoint\FLASHPOINTRESISTANCE.EXE"
To load and use a modfolder it has to be added to the games [[:Category:Operation Flashpoint: Startup Parameters|startup parameter]] "-mod".
    [[-nomap]] [[-nosplash]] -mod=@Editor,@Winter,@Hyk,@bas
This is easiest done by creating a new executable shortcut and editing the startup parameters.


in other words, commarise all the different mods (addons) you want for this session (often only one)
If for example you are trying to load a mod named @test the startup command might look like this:


"C:\Program Files\Codemasters\OperationFlashpoint\FLASHPOINTRESISTANCE.EXE" -mod=@test
To load several mods separate their names with the "''';'''" character.
===How it Works===
The "-mod" parameter defines a path the engine will use to load data files when loading the game. If running OFP, it is important to remember that the RES mod will automatically be added first to the list of mod folders (OFP only).
A mod folder can contain all the data that your OFP / ArmA install folder can contain. This includes missions, campaigns, and addons subfolders, etc.
The most common use of modfolders is to organize addon .pbo files.


=== Addon modfolders ===
=== Addon modfolders ===


One of the most useful things you can do with modfolders is separate out your, by now, humungous and ever increasing addon.pbo's. The days of just placing them in the ~Addons folder are over. No engine can cope with that load.
Since most players today have a very large number of extra addons installed it has become a common practice to divide them into addon modfolders.
The benefit of this practice is that the engine only has to load the addons in the modfolders specified by the player, lowering memory usage significantly.
To create an addon modfolder simple pick a name and create the directories "@myname\Addons\" in the Operation Flashpoint directory.
Next place all addons you want in this modfolder into this directory and add "@myname" to your "-mod" list when these addons are needed.  
 
To make this easier you might wish to create several shortcuts loading different modfolders.
 
The main drawback of this technique is that it's hard for other players in multiplayer games to know what kind of changes you are playing with as modfolders can be used to make beneficial configuration changes to the game, in other words cheat.  
 
=== Conflicting addons / addon load order ===


Here is an example of a folder tree
In ArmA, it is possible for addons to modify classes in other addons, including those in the game's core "addons". If the user installs two addons that try to modify the same property of a given class (for example, the model property of the basic soldier class), then obviously both addons can not work as intended (together in the same install, that is).


mods\
In these cases, there is almost nothing that the user can do to determine which addon takes "priority". Inside of the addons themselves is a property called "RequiredAddons", which determines addon load order, regardless of modfolder order.
mods\Bas
mods\Finland
mods\HYK
mods\anything you like


Selectively you can use one, or several of them for the mission(s) you want to play by just creating seperate shortcuts for each combination.
A more in-depth discussion of this can be found [http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?s=92417cb935b097d18493c08cc86a3569;act=ST;f=80;t=71959 here].


===Resources===
===Resources===
Alternatively, you can use [http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?act=ST;f=4;t=47702 'OFP Mod Selector'], by Operator of Dissidence.
Alternatively, you can use [http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?act=ST;f=4;t=47702 'OFP Mod Selector'], by Operator of Dissidence.


Kegetys' launcher available [http://www.andrew.nf/OFP/Tools/launcher218.zip 'here']
[[User:Kegetys|Kegetys]]' launcher available [http://www.andrew.nf/OFP/Tools/launcher218.zip 'here']
 
[http://ofp.gamepark.cz/index.php?special=articles/keepitclean.html&newlang=eng Modfolder Tutorial on OFP.info]
 
[http://www.mapfact.net/forum_ofp/viewtopic.php?t=4715&postdays=0&postorder=asc&start=0 Mod-Ordner: wie und warum] German tutorial from Clausewitz in [[Mapfact]] Forum
 
[[Category:Operation Flashpoint: Startup Parameters|M]]
[[Category:ArmA: Tips]]
[[Category:_Startup_Parameters]]

Revision as of 04:16, 4 March 2015

Introduction

Custom modfolders is a concept in Operation Flashpoint that allows addon makers and players to completely change most aspects of the game. They were introduced with the release of the resistance addon, which also became the first total conversion modification.

It has become a common practice to start mod folder names with a "@" in front of the name to distinguish them from other files in the Operation Flashpoint directory.

Making it Work

To load and use a modfolder it has to be added to the games startup parameter "-mod". This is easiest done by creating a new executable shortcut and editing the startup parameters.

If for example you are trying to load a mod named @test the startup command might look like this:

"C:\Program Files\Codemasters\OperationFlashpoint\FLASHPOINTRESISTANCE.EXE" -mod=@test

To load several mods separate their names with the ";" character.

How it Works

The "-mod" parameter defines a path the engine will use to load data files when loading the game. If running OFP, it is important to remember that the RES mod will automatically be added first to the list of mod folders (OFP only). A mod folder can contain all the data that your OFP / ArmA install folder can contain. This includes missions, campaigns, and addons subfolders, etc. The most common use of modfolders is to organize addon .pbo files.

Addon modfolders

Since most players today have a very large number of extra addons installed it has become a common practice to divide them into addon modfolders. The benefit of this practice is that the engine only has to load the addons in the modfolders specified by the player, lowering memory usage significantly. To create an addon modfolder simple pick a name and create the directories "@myname\Addons\" in the Operation Flashpoint directory. Next place all addons you want in this modfolder into this directory and add "@myname" to your "-mod" list when these addons are needed.

To make this easier you might wish to create several shortcuts loading different modfolders.

The main drawback of this technique is that it's hard for other players in multiplayer games to know what kind of changes you are playing with as modfolders can be used to make beneficial configuration changes to the game, in other words cheat.

Conflicting addons / addon load order

In ArmA, it is possible for addons to modify classes in other addons, including those in the game's core "addons". If the user installs two addons that try to modify the same property of a given class (for example, the model property of the basic soldier class), then obviously both addons can not work as intended (together in the same install, that is).

In these cases, there is almost nothing that the user can do to determine which addon takes "priority". Inside of the addons themselves is a property called "RequiredAddons", which determines addon load order, regardless of modfolder order.

A more in-depth discussion of this can be found here.

Resources

Alternatively, you can use 'OFP Mod Selector', by Operator of Dissidence.

Kegetys' launcher available 'here'

Modfolder Tutorial on OFP.info

Mod-Ordner: wie und warum German tutorial from Clausewitz in Mapfact Forum