Mission Rotation – Arma 2
(Created page with "==== Arma 2 ==== This example shows how to put all the stock Arma 2 1.05 multiplayer missions into rotation: <syntaxhighlight lang="c"> class Missions { class DM_Deathmatch...") |
No edit summary |
||
Line 110: | Line 110: | ||
}; | }; | ||
}; | }; | ||
==See Also== | |||
*[[ArmA: Server configuration|Server Configuration]] | |||
*[[Armed Assault:Dedicated Server]] | |||
*[[ArmA: Server Side Scripting]] | |||
*[[Operation Flashpoint:Dedicated Server]] | |||
*[[Arma_3_Headless_Client]] | |||
*[[Arma_3:_Server_Security]] | |||
*[[Arma_3:_Mission_voting]] | |||
*[[Arma:_Mission_rotation]] | |||
*[[Arma_2_OA:_Multiple_Mission_Parameters_Configuration]] |
Revision as of 08:02, 12 July 2017
Arma 2
This example shows how to put all the stock Arma 2 1.05 multiplayer missions into rotation:
class Missions
{
class DM_Deathmatch
{
template = "MP_Deathmatch.Chernarus"; // omit the .pbo suffix
difficulty = "recruit"; // difficulty: recruit, regular, veteran or mercenary (see CfgDifficulties in the main game config)
};
class DM_Detector
{
template = "MP_Detector.Chernarus";
difficulty = "regular";
};
class Team_TeamDeathmatch
{
template = "MP_TeamDeathmatch.Chernarus";
difficulty = "veteran";
};
class COOP_Paradrop
{
template = "MP_Paradrop.Chernarus";
difficulty = "mercenary";
};
class CTI_CivilWar
{
template = "MP_CivilWar.Chernarus";
difficulty = "regular";
};
class CTI_SuperPowers
{
template = "MP_Superpowers.Chernarus";
difficulty = "regular";
};
class CTI_WarWelcome
{
template = "MP_WarWelcome.utes";
difficulty = "regular";
};
class CTI_WhenDiplomacyFails
{
template = "MP_WhenDiplomacyFails.Chernarus";
difficulty = "regular";
};
};
Arma 2: Operation Arrowhead
This example contains all the MP missions from the Operation Arrowhead expansion:
<syntaxhighlight lang="c"> class Missions { class COOP_HikeInTheHills { template = "MPE1_HikeInTheHills.Takistan"; // omit the .pbo suffix difficulty = "regular"; // difficulty: recruit, regular, veteran or mercenary (see CfgDifficulties in the main game config) }; class COOP_LaserShow { template = "MPE1_LaserShow.Takistan"; difficulty = "regular"; }; class COOP_Littlebird { template = "MPE1_Littlebird.Takistan"; difficulty = "regular"; }; class COOP_OneShotOneKill { template = "MPE1_OneShotOneKill.Takistan"; difficulty = "regular"; }; class COOP_SteelPanthers { template = "MPE_SteelPanthers.Takistan"; difficulty = "regular"; }; class CTI_MountainWarfare { template = "MPE_MountainWarfare.Takistan"; difficulty = "regular"; }; class CTI_MountainWarfare3Sided { template = "MPE_MountainWarfare3Sided.Takistan"; difficulty = "regular"; }; class CTI_UrbanWarfare { template = "MP_UrbanWarfare.Zargabad"; difficulty = "regular"; }; class SCont_SectorControl { template = "MPE_SectorControl.Zargabad"; difficulty = "veteran"; }; class DM_Dogfighters { template = "MPE1_Dogfighters.Takistan"; difficulty = "veteran"; }; class Team_HuntersHunted { template = "MPE1_HuntersHunted.Takistan"; difficulty = "veteran"; }; };