Files
Sahrani_01_Razors_Edge.Sehreno/Description.ext
T

85 lines
2.3 KiB
Plaintext
Raw Normal View History

2026-05-03 17:41:55 +10:00
author = "Clarky";
2026-05-15 15:14:51 +10:00
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
2026-05-03 17:41:55 +10:00
class Header
{
gameType = "Coop"; // game type
minPlayers = 6; // minimum number of players the mission supports
2026-05-15 15:14:51 +10:00
maxPlayers = 21; // maximum number of players the mission supports
2026-05-03 17:41:55 +10:00
};
class CfgFunctions
{
class CLRK
{
tag = "CLRK";
class Layers
{
file = "functions";
class toggleLayerSim {};
};
};
};
2026-05-15 15:14:51 +10:00
//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, ""};
};
};
2026-05-03 17:41:55 +10:00
respawnTemplates[] = {"MenuPosition"};
respawnOnStart = 0;
respawnDialog = 1;
class ACEX_Fortify_Presets {
2026-05-15 15:14:51 +10:00
class TAG_Sandbags {
displayName = "Sandbags";
2026-05-03 17:41:55 +10:00
objects[] = {
2026-05-15 15:14:51 +10:00
{"Land_BagFenceShort", 13},
{"Land_BagFenceLong", 16},
{"Land_BagFenceRound", 16},
{"Land_BagFenceCorner", 5},
{"Land_BagFenceEnd", 3},
2026-05-03 17:41:55 +10:00
};
};
2026-05-15 15:14:51 +10:00
class TAG_Fortifications {
displayName = "Fortifications";
2026-05-03 17:41:55 +10:00
objects[] = {
2026-05-15 15:14:51 +10:00
{"Land_HBarrier_3_F", 20},
{"Land_HBarrier_5_F", 25},
{"Land_HBarrierWall4_F", 40},
{"Wire", 20},
{"Land_jezekbeton", 25}
2026-05-03 17:41:55 +10:00
};
};
class TAG_categories {
2026-05-15 15:14:51 +10:00
displayName = "Sahrani Fortifications";
2026-05-03 17:41:55 +10:00
objects[] = {
2026-05-15 15:14:51 +10:00
{"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"},
2026-05-03 17:41:55 +10:00
};
};
};