forked from gruppe-adler/TvT_GameOfGuns.Altis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weaponConfig.sqf
57 lines (48 loc) · 1.01 KB
/
weaponConfig.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
/* Available weapons and scopes, sorted by tier
*
* preprocessed in server\setup\chooseWeapons.sqf
*
* keep numberOfTiers updated when adding new tiers!
*/
numberOfTiers = 5;
//Sniper Rifels, SEMI - AUTOMATIK CARBINEs
weaponstier_1 = [
"LIB_G3340",
"LIB_SVT_40",
"LIB_G43",
"LIB_M1_Garand",
"LIB_M1_Carbine",
"LIB_K98ZF39",
"LIB_M9130PU",
"LIB_M1903A4_Springfield"
];
// MGs, ASSULTRIFELs=======================
weaponstier_2 = [
"LIB_DP28",
"LIB_DT",
"LIB_DT_OPTIC",
"LIB_MG42",
"LIB_MP44",
"LIB_M1918A2_BAR"
];
// CARBINEs ====================================================================
weaponstier_3 = [
"LIB_K98",
"LIB_M9130",
"LIB_M38",
"LIB_M44"
];
//SMGs, SHOTGUNs ===============================================================
weaponstier_4 = [
"LIB_MP40",
"LIB_PPSh41_m",
"LIB_M1A1_Thompson"
];
//PISTOLs ======================================================================
weaponstier_5 = [
"LIB_P38",
"LIB_M1908",
"LIB_TT33",
"LIB_M1895",
"LIB_Colt_M1911"
];