85 lines
2.3 KiB
Plaintext
85 lines
2.3 KiB
Plaintext
author = "Clarky";
|
|
briefingName = "Razor's Edge";
|
|
onLoadName = "Razor's Edge";
|
|
loadScreen = "images\OpScreenshot_2-1.jpg";
|
|
onLoadMission = "As regional tensions rise between the northern and southern nations of Sahrani, a RACS Special Forces unit is dispatched to investigate a disturbance.";
|
|
|
|
overviewPicture = "images\OpScreenshot_2-1.jpg";
|
|
overviewText = "As regional tensions rise between the northern and southern nations of Sahrani, a RACS Special Forces unit is dispatched to investigate a disturbance.";
|
|
|
|
// To do
|
|
// - Radio msg
|
|
|
|
|
|
class Header
|
|
{
|
|
gameType = "Coop"; // game type
|
|
minPlayers = 6; // minimum number of players the mission supports
|
|
maxPlayers = 21; // maximum number of players the mission supports
|
|
};
|
|
|
|
class CfgFunctions
|
|
{
|
|
class CLRK
|
|
{
|
|
tag = "CLRK";
|
|
class Layers
|
|
{
|
|
file = "functions";
|
|
class toggleLayerSim {};
|
|
};
|
|
};
|
|
};
|
|
//racs_hvt setDamage 1;
|
|
class CfgSounds
|
|
{
|
|
sounds[] = {};
|
|
class LetMeTellYouSomething
|
|
{
|
|
name = "LMTYS"; // Name in the editor
|
|
sound[] = {"sounds\letmetellyousomething.ogg", 1, 1}; // Path, Volume, Pitch
|
|
titles[] = {0, ""};
|
|
};
|
|
};
|
|
|
|
respawnTemplates[] = {"MenuPosition"};
|
|
respawnOnStart = 0;
|
|
respawnDialog = 1;
|
|
|
|
class ACEX_Fortify_Presets {
|
|
class TAG_Sandbags {
|
|
displayName = "Sandbags";
|
|
objects[] = {
|
|
{"Land_BagFenceShort", 13},
|
|
{"Land_BagFenceLong", 16},
|
|
{"Land_BagFenceRound", 16},
|
|
{"Land_BagFenceCorner", 5},
|
|
{"Land_BagFenceEnd", 3},
|
|
};
|
|
};
|
|
class TAG_Fortifications {
|
|
displayName = "Fortifications";
|
|
objects[] = {
|
|
{"Land_HBarrier_3_F", 20},
|
|
{"Land_HBarrier_5_F", 25},
|
|
{"Land_HBarrierWall4_F", 40},
|
|
{"Wire", 20},
|
|
{"Land_jezekbeton", 25}
|
|
};
|
|
};
|
|
class TAG_categories {
|
|
displayName = "Sahrani Fortifications";
|
|
objects[] = {
|
|
{"Land_BagFenceShort", 13, "TAG_Sandbags"},
|
|
{"Land_BagFenceLong", 16, "TAG_Sandbags"},
|
|
{"Land_BagFenceRound", 16, "TAG_Sandbags"},
|
|
{"Land_BagFenceCorner", 5, "TAG_Sandbags"},
|
|
{"Land_BagFenceEnd", 3, "TAG_Sandbags"},
|
|
{"Land_HBarrier_3_F", 20, "TAG_Fortifications"},
|
|
{"Land_HBarrier_5_F", 25, "TAG_Fortifications"},
|
|
{"Land_HBarrierWall4_F", 40, "TAG_Fortifications"},
|
|
{"Wire", 20, "TAG_Fortifications"},
|
|
{"Land_jezekbeton", 25, "TAG_Fortifications"},
|
|
};
|
|
};
|
|
}; |