Files
MissionTemplate/description.ext
2023-06-19 00:57:30 -05:00

123 lines
4.8 KiB
Plaintext

//-------------------------------------------DESCRIPTION.EXT-----------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////
// //
// DO NOT EDIT THIS FILE //
// //
//////////////////////////////////////
//-------------------------------------------INCLUDES------------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "mission_settings.hpp"
//-------------------------------------------MISSION INFO--------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
overviewPicture = "";
OnLoadIntro = "UNUSED";
onLoadMissionTime = 1;
onLoadIntroTime = 1;
//-------------------------------------------GAMETYPE----------------------------------------------------------------------//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class Header
{
gameType = COOP;
minPlayers = 2;
maxPlayers = 80;
};
//-------------------------------------------RESPAWN SETTINGS--------------------------------------------------------------//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
respawn = 3;
respawnDelay = 10;
respawnVehicleDelay = 30;
respawnTemplatesWest[] = {"Counter", "MenuPosition"}; //Templates: "Spectator";"Revive";"Wave";"Tickets";"Counter";"MenuPosition";"EndMission";"MenuInventory";
respawnTemplatesEast[] = {"Counter", "MenuPosition"};
respawnTemplatesGuer[] = {"Counter", "MenuPosition"};
respawnTemplatesCiv[] = {"Counter", "MenuPosition"};
respawnOnStart = 1; //has to always be disabled with startLoadingscreen and waitUntil {alive player};!!
respawnButton = 1; //enables the respawn button
respawnDialog = 1; //enables the score table
//-------------------------------------------MISSION SETTINGS--------------------------------------------------------------//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
enableDebugConsole[] = { "76561198009349760", "76561198013533294" };
aikills = 0; //show ai kills in score table
disabledAI = 1; //disable AI for all playable units
//disableChannels[]={0,1,6}; //0=Global;1=Side;2=Command;3=Group;4=Vehicle;5=Direct;6=System;
disableChannels[]={{0,true,true},{1,false,true},{2,false,true},{3,false,true},{4,false,true},{5,false,true},{6,true,true}};
// {channelID, disableChat<bool>, disableVoice<bool>} for 0=Global;1=Side;2=Command;3=Group;4=Vehicle;5=Direct;6=System;
forceRotorLibSimulation = 0; //0=options based;1=force enable;2=force disable
disableRandomization[] = {};
//-------------------------------------------Clean Up SETTINGS-------------------------------------------------------------//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
corpseManagerMode = 1; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned
corpseRemovalMinTime = 600;
corpseRemovalMaxTime = 900;
corpseLimit = 80;
wreckManagerMode = 0; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned
wreckRemovalMinTime = 600;
wreckRemovalMaxTime = 900;
wreckLimit = 40;
minPlayerDistance = 600;
//-------------------------------------------BASE SETTINGS---------------------------------------------------------------//
class Params
{
};
class cfgFunctions
{
#include "functions\CfgFunctions.hpp"
};
class cfgRemoteExec
{
// List of script commands allowed to be sent from client via remoteExec
class Commands
{
// State of remoteExec: 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists (default because of backward compatibility)
mode = 2;
};
// List of script functions allowed to be sent from client via remoteExec
class Functions
{
// State of remoteExec: 0-turned off, 1-turned on, taking whitelist into account, 2-turned on, however, ignoring whitelists (default because of backward compatibility)
mode = 2;
// Ability to send jip messages: 0-disabled, 1-enabled (default)
jip = 1;
class BIS_fnc_effectKilledAirDestruction {};
class BIS_fnc_effectKilledSecondaries {};
class BIS_fnc_objectVar {};
class BIS_fnc_execVM {};
};
};
class CfgDebriefingSections {
class acex_killTracker {
title = "Acex Killed Events";
variable = "acex_killTracker_outputText";
};
};