-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig_SpawnPoints.hpp
More file actions
147 lines (133 loc) · 4.82 KB
/
Config_SpawnPoints.hpp
File metadata and controls
147 lines (133 loc) · 4.82 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
* Format:
* licenses: ARRAY (This is for limiting spawn to certain things)
* 0: License Name
* 1: License Check Type
* false: If license isn't set
* true: If license is set
* Example:
* licenses[] = { { "pilot", true }, { "rebel", false } }; //Shows up for players with pilot and without rebel license.
*
* level: ARRAY (This is for limiting spawn to certain things)
* 0: Variable to read from
* 1: Variable Value Type (SCALAR / BOOL / EQUAL / INVERSE)
* SCALAR: VALUE => VALUE
* BOOL: VALUE EXISTS
* EQUAL: VALUE == VALUE
* INVERSE: VALUE <= VALUE
* 2: What to compare to (-1 = Check Disabled)
*
*/
class CfgSpawnPoints {
class Civilian {
class Kavala {
displayName = "Kavala";
spawnMarker = "civ_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "rebel", false } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira";
spawnMarker = "civ_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos";
spawnMarker = "civ_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Sofia {
displayName = "Sofia";
spawnMarker = "civ_spawn_4";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class RebelS {
displayName = "Northern Rebel Base";
spawnMarker = "Rebelop";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelN {
displayName = "Southern Rebel Base";
spawnMarker = "Rebelop_1";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelE {
displayName = "Eastern Rebel Base";
spawnMarker = "Rebelop_2";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
};
class Cop {
class Kavala {
displayName = "Kavala HQ";
spawnMarker = "cop_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira HQ";
spawnMarker = "cop_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\fuelstation_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos HQ";
spawnMarker = "cop_spawn_2";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Air {
displayName = "Air HQ";
spawnMarker = "cop_spawn_4";
icon = "\a3\ui_f\data\map\Markers\NATO\b_air.paa";
licenses[] = { { "cAir", true } };
level[] = { "life_coplevel", "SCALAR", 2 };
};
class HW {
displayName = "HW Patrol";
spawnMarker = "cop_spawn_5";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "life_coplevel", "SCALAR", 3 };
};
};
class Medic {
class Kavala {
displayName = "Kavala Hospital";
spawnMarker = "medic_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira Regional";
spawnMarker = "medic_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos Hospital";
spawnMarker = "medic_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
};
};