This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
forked from Jigsor/BMR_Insurgency.Altis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTF47ServicePointConfig.sqf
171 lines (153 loc) · 7.25 KB
/
TF47ServicePointConfig.sqf
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include "TF47Modules\TF47ServicePoint\TF47ServicePointMacros.hpp"
// Marker wo der SP sein soll
tf47_modules_sp_markers = ["marker_sp_ground_1","marker_sp_ground_2","marker_sp_air","marker_sp_air_1","marker_sp_air_2"];
if(worldName == "Takistan") then {
tf47_modules_sp_markers = ["marker_sp_ground","marker_sp_ground_1","marker_sp_ground_2","marker_sp_ground_3","marker_sp_air","marker_sp_air_1","marker_sp_air_2"];
};
if(worldName == "Zargabad") then {
tf47_modules_sp_markers = ["marker_sp_ground_1","marker_sp_ground_2","marker_sp_air"];
};
SERVICEPOINT_LOADOUT_CONFIG_BEGIN
// Ein Loadout
// Name
// Module true/false (Ist es ein Modul wird das Inventrar nicht geleert)
// Item Classname, Anzahl
SERVICEPOINT_LOADOUT_NAME("Basic Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m4a1_carryhandle",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_30Rnd_556x45_Mk318_Stanag",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhsusf_100Rnd_556x45_soft_pouch",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_M136",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_elasticBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_packingBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("Binocular",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Anti-Tank Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_smaw_green",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m4a1_carryhandle",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_30Rnd_556x45_Mk318_Stanag",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_smaw_HEAA",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_smaw_HEDP",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_optic_smaw",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("Binocular",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Infanterie Support Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_fgm148",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m4a1_carryhandle",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_30Rnd_556x45_Mk318_Stanag",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhsusf_100Rnd_556x45_soft_pouch",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhsusf_100Rnd_762x51_m80a1epr",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_M136",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_elasticBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_packingBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("Binocular",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Medic Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m4a1_carryhandle",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_30Rnd_556x45_Mk318_Stanag",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_elasticBandage",50)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_packingBandage",50)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_fieldDressing",50)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_bloodIV_500",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_bloodIV_250",15)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_epinephrine",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_morphine",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_personalAidKit",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_surgicalKit",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_bodyBag",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_salineIV_250",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",2)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Anti-Tank Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_fgm148",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m4a1_carryhandle",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_mag_30Rnd_556x45_Mk318_Stanag",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhsusf_100Rnd_556x45_soft_pouch",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_fgm148_magazine_AT",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_M136",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("Binocular",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Medic Module")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_elasticBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_packingBandage",20)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_surgicalKit",10)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_salineIV_250",10)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Basic Marine Loadout")
SERVICEPOINT_LOADOUT_IS_MODULE(FALSE)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_M136_hedp",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_M136",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m16a4_carryhandle",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_weap_m249_pip",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_30Rnd_556x45_Stanag_Mk318_mag",25)
SERVICEPOINT_LOADOUT_ADD_ITEM("rhs_200rnd_556x45_M_SAW",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("DemoCharge_Remote_Mag",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_M26_Clacker",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("HandGrenade",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("SmokeShell",8)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ItemGPS",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Clacker",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("ToolKit",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",4)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Additional Equipment Modul")
SERVICEPOINT_LOADOUT_IS_MODULE(True)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EarPlugs",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_EntrenchingTool",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ItemGPS",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Clacker",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACRE_PRC152",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("DemoCharge_Remote_Mag",4)
SERVICEPOINT_LOADOUT_ADD_ITEM("HandGrenade",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("SmokeShell",8)
SERVICEPOINT_LOADOUT_ADD_ITEM("ToolKit",1)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Flashlight_XL50",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_MapTools",2)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Vector",2)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Milan Ammo Module")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_1Rnd_Milan",5)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_762_200Rnd_T",20)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("HMG Ammo Module")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_127_100Rnd",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_762_200Rnd_T",20)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("GMG Ammo Module")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_32Rnd_40mm_G_Box",6)
SERVICEPOINT_LOADOUT_ADD_ITEM("UK3CB_BAF_762_200Rnd_T",20)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_CONFIG_END
// ACE Loadouts analog wie bei Vanilla
SERVICEPOINT_ACE_LOADOUT_CONFIG_BEGIN
SERVICEPOINT_LOADOUT_NAME("Wheels")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Wheel",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_LOADOUT_NAME("Tracks")
SERVICEPOINT_LOADOUT_IS_MODULE(TRUE)
SERVICEPOINT_LOADOUT_ADD_ITEM("ACE_Track",1)
SERVICEPOINT_LOADOUT_END
SERVICEPOINT_ACE_LOADOUT_CONFIG_END