-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescription.ext
126 lines (116 loc) · 2.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
class Header
{
gameType = Coop;
minPlayers = 1;
maxPlayers = 32;
};
author = "Mr.Ben";
onLoadName = "32 [Tour] Occupational Hazards v3.1";
onLoadMission = "Destroy The Bridge At All Costs!";
briefingName = "32 [Tour] Occupational Hazards v3.1";
onLoadMissionTime = true;
overviewPicture = "";
loadScreen = "img\help.paa"; //Loading screen picture, should be 1024x512 pixels in .paa format.
enableItemsDropping = 0;
disabledAI = true;
enableDebugConsole = 1;
respawn = 3;
respawnDelay = 30;
respawnDialog = 1;
respawnTemplates[] = {"tickets"};
respawnVehicleDelay = 30;
#include "scripts\TOUR_RC\dialog\hpp\admintool.hpp"
#include "scripts\TOUR_SI\interface\hpp\interface.hpp"
class Params
{
class TOUR_param_Respawn
{
//paramsArray[0]
title = "Respawn Time (s):";
values[] = {0, 30, 60, 300, 600, 900};
default = 30;
texts[] = {"None", "30 Seconds", "1 Minute", "5 Minutes", "10 Minutes", "15 Minutes"};
};
class TOUR_param_tickets
{
//paramsArray[1]
title = "Lives:";
values[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30, 40, 50, 100};
default = 1;
texts[] = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "20", "30", "40", "50", "100"};
};
};
class CfgDebriefing
{
class complete
{
title = "Mission Success";
subtitle = "Bridge Destroyed";
description = "You have successfully destroyed the bridge and stopped the Russian advance!";
pictureBackground = "img\UKFlag.paa";
picture = "b_inf";
pictureColor[] = { 0.0, 0.3, 0.6, 1 };
};
class partial
{
title = "Mission Partial Success";
subtitle = "Civilian Casulaties";
description = "You have successfully destroyed the bridge but you caused casulaties to civilian and allied forces.";
pictureBackground = "img\UKFlag.paa";
picture = "b_inf";
pictureColor[] = { 0.0, 0.3, 0.6, 1 };
};
class failed
{
title = "Mission Failure";
subtitle = "Mission Aborted";
description = "You were unable destroy the bridge so aborted the mission.";
pictureBackground = "\ca\data\flag_rus_co.paa";
picture = "o_inf";
pictureColor[] = { 0.6,0.1,0.2,1 };
};
class kia
{
title = "Mission Failure";
subtitle = "KIA";
description = "All teammates were killed in action.";
pictureBackground = "\ca\data\flag_rus_co.paa";
picture = "o_inf";
pictureColor[] = { 0.6,0.1,0.2,1 };
};
class Chopper
{
title = "Mission Failure";
subtitle = "Extraction Failed";
description = "The extraction helictopers were destroyed and you were unable to return to base.";
pictureBackground = "\ca\data\flag_rus_co.paa";
picture = "o_inf";
pictureColor[] = { 0.6,0.1,0.2,1 };
};
};
class CfgRadio
{
sounds[] = {};
class TOUR_SI_chatRTB
{
name = "TOUR_SI_chatRTB";
sound[] = {};
title = "Hey pilot, we need to RTB!";
};
};
class CfgSounds
{
sounds[] = {};
class TOUR_key_noise
{
name = "TOUR_key_noise";
sound[] = {"sounds\TOUR_key_noise.wav", 1, 1};
titles[] = {};
};
class TOUR_introMusic
{
name = "TOUR_introMusic";
sound[] = {"sounds\TOUR_introMusic.ogg", 1, 1};
titles[] = {};
};
};