Skip to content

Commit

Permalink
Merge pull request #148 from ARCOMM/arcMiscV2Update
Browse files Browse the repository at this point in the history
Framework update for Arc Misc 2.0
  • Loading branch information
Saquesh authored Oct 15, 2024
2 parents 999956a + 8cbe4b0 commit 17d5d35
Show file tree
Hide file tree
Showing 9 changed files with 3,963 additions and 26,756 deletions.
2 changes: 1 addition & 1 deletion .version.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

<body>
<p>
Latest version: v4.0.2
Latest version: v5.0.0
</p>
</body>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,11 @@ class CfgDebriefing {
};

// DO NOT REMOVE. Include the macros for custom loadouts.
#include "\x\arc_misc\addons\tmf_loadouts\macros.inc"
#include "\z\arc_tmf\addons\loadout\macros.inc"

class CfgLoadouts {
class EXAMPLE_LOADOUT {
displayName = "Example Loadout";
#include "loadouts\example_loadout.hpp"
};

// Example import and modification of loadout
import BLU_F from CfgLoadouts;
class BLU_F: BLU_F {
// Add some explosives to the engineer
class eng: eng {
backpackitems[] += {
"SatchelCharge_Remote_Mag",
LIST_3("DemoCharge_Remote_Mag")
};
};
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class baseMan {// Weaponless baseclass
items[] = {
MEDICAL_R,
"ACE_EntrenchingTool",
LIST_3("ACE_CableTie")
LIST_3("ACE_CableTie"),
"ACE_Canteen"
};
// These are added directly into their respective slots
linkedItems[] = {
Expand Down Expand Up @@ -106,7 +107,10 @@ class smg : r {
LIST_2("HandGrenade"),
LIST_2("SmokeShell")
};
items[] = { MEDICAL_R };
items[] = {
MEDICAL_R,
"ACE_Canteen"
};
};

class ftl : g {
Expand Down Expand Up @@ -170,7 +174,8 @@ class ar : r {
class aar : r {
displayName = "Assistant Automatic Rifleman";
backpackItems[] = {
LIST_4("100Rnd_65x39_caseless_mag")
LIST_4("100Rnd_65x39_caseless_mag"),
"ACE_SpareBarrel"
};
linkedItems[] += {"Binocular"};
};
Expand Down
Loading

0 comments on commit 17d5d35

Please sign in to comment.