Skip to content

Commit d4e1047

Browse files
committed
Removed CUP dependencies, added star wars repacks and config edits
1 parent 48a875a commit d4e1047

File tree

9 files changed

+52
-1
lines changed

9 files changed

+52
-1
lines changed

addons/MG8_cup.pbo.mg8.bisign renamed to additionals/CUP_Requirements/MG8_cup.pbo.mg8.bisign

File renamed without changes.

addons/PLP_3DMap_CUP.pbo renamed to additionals/CUP_Requirements/PLP_3DMap_CUP.pbo

File renamed without changes.

addons/PLP_3DMap_CUP.pbo.POLPOX.bisign renamed to additionals/CUP_Requirements/PLP_3DMap_CUP.pbo.POLPOX.bisign

File renamed without changes.

addons/JLTS_R_hidden_items.pbo

510 Bytes
Binary file not shown.
567 Bytes
Binary file not shown.

addons/TAS_ConfigEdits.pbo

1.38 KB
Binary file not shown.
0 Bytes
Binary file not shown.

addons/TAS_ConfigEdits/config.cpp

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,64 @@ class CfgPatches {
99
name = "TAS Config Edits";
1010
units[] = {};
1111
weapons[] = {};
12-
requiredAddons[] = {"ace_mk6mortar","ace_trenches","A3_Data_F_Sams_Loadorder"/*"oski_corran"*/}; //TODO: find updated loadorder for old man
12+
requiredAddons[] = {"ace_mk6mortar","ace_trenches","A3_Data_F_Sams_Loadorder","WBK_DifferentRobotics_1","JLTS_C_core","lsd_armor_redfor","ls_armor_redfor","lsd_units_redfor"/*"oski_corran"*/}; //TODO: find updated loadorder for old man
1313
author = "TAS Mod Team";
1414
authorUrl = "https://discord.gg/invite/mcXfzqR5Kn";
1515
};
1616

1717
};
1818

19+
class cfgWeapons {
20+
class ls_redforUniform_base;
21+
class lsd_cis_oomPilot_uniform;
22+
class ls_redforUniform_inherit;
23+
class ls_cis_b1Droid_uniform: ls_redforUniform_base {
24+
JLTS_isDroid = 1; //indicates that this is a droid uniform
25+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
26+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
27+
};
28+
class ls_cis_b1Hologram_uniform: ls_redforUniform_base {
29+
JLTS_isDroid = 1; //indicates that this is a droid uniform
30+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
31+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
32+
};
33+
class lsd_cis_bxDroid_uniform: ls_redforUniform_base {
34+
JLTS_isDroid = 1; //indicates that this is a droid uniform
35+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
36+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
37+
};
38+
class lsd_hologram_bxDroid_uniform: ls_redforUniform_base {
39+
JLTS_isDroid = 1; //indicates that this is a droid uniform
40+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
41+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
42+
};
43+
class lsd_activeCamo_bxDroid_uniform: ls_redforUniform_base {
44+
JLTS_isDroid = 1; //indicates that this is a droid uniform
45+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
46+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
47+
};
48+
class ls_cis_b1Simulation_uniform: ls_redforUniform_base {
49+
JLTS_isDroid = 1; //indicates that this is a droid uniform
50+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
51+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
52+
};
53+
class lsd_cis_b2Droid_uniform: ls_redforUniform_base {
54+
JLTS_isDroid = 1; //indicates that this is a droid uniform
55+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
56+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
57+
};
58+
class lsd_cis_oomOfficer_uniform: lsd_cis_oomPilot_uniform {
59+
JLTS_isDroid = 1; //indicates that this is a droid uniform
60+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
61+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
62+
};
63+
class lsd_cis_bxCaptainDroid_uniform: ls_redforUniform_inherit {
64+
JLTS_isDroid = 1; //indicates that this is a droid uniform
65+
JLTS_hasEMPProtection = 0; //indicates that this droid is not protected from EMP at all
66+
JLTS_deathSounds = "DeathDroid"; //Use "DeathDroid" if you want to get the ones in the mod
67+
};
68+
};
69+
1970
class cfgMagazines {
2071
class 8Rnd_82mm_Mo_shells;
2172
class ACE_1Rnd_82mm_Mo_HE: 8Rnd_82mm_Mo_shells {

0 commit comments

Comments
 (0)