-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDescription.ext
85 lines (79 loc) · 2.11 KB
/
Description.ext
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
author = "Jochem";
OnLoadName = "Gemini";
OnLoadMission = "WIP";
loadScreen = "Data\gemini.paa";
respawn = 3;
respawndelay = 5;
respawnTemplatesWest[] = {"MenuPosition", "Spectator"};
respawnOnStart = 1;
respawnVehicleDelay = 0;
disabledAI = true;
enableDebugConsole = 1;
showGroupIndicator = 0;
disableChannels[]={0, 1, 2, 4, 6};
#include "CHVD\dialog.hpp"
#include "Zen_FrameworkFunctions\Zen_DialogSystem\Zen_Dialog.hpp"
class Header
{
gameType = Coop; // MP misison type
minPlayers = 1; //min # of players the mission supports
maxPlayers = 61; //max # of players the mission supports
};
class CfgFunctions
{
#include "CHVD\CfgFunctions.hpp"
#include "Fnc\fnc.hpp"
};
class CfgSounds
{
sounds[] = {};
class heliSpeakerSound
{
// how the sound is referred to in the editor (e.g. trigger effects)
name = "speakersForHeli";
// filename, volume, pitch
sound[] = {"Data\Sounds\heliSpeakerSound.ogg", 25, 1};
// subtitle delay in seconds, subtitle text
titles[] = {};
};
class rwrSound
{
// how the sound is referred to in the editor (e.g. trigger effects)
name = "soundRwr";
// filename, volume, pitch
sound[] = {"Data\Sounds\rwr.ogg", 5, 1};
// subtitle delay in seconds, subtitle text
titles[] = {};
};
};
class CfgDebriefing
{
class NotWhitelisted
{
title = "Mission Failed";
subtitle = "You are not white-listed to use this slot";
description = "You are not allowed to use this slot. Please select a different one.";
pictureBackground = "";
picture = "";
pictureColor[] = {0, 0.3, 0.6, 1};
};
};
class Params
{
class overwrite
{
title = "Overwrite save";
values[] = {0, 1};
texts[] = {"Yes", "No"};
default = 1;
};
class startHour
{
title = "Time of mission start";
values[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23};
texts[] = {"00:00", "01:00", "02:00", "03:00", "04:00", "05:00", "06:00", "07:00", "08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00", "21:00", "22:00", "23:00"};
default = 12;
function = "BIS_fnc_paramDaytime";
isGlobal = 1;
};
};