Skip to content

Commit

Permalink
Framework update for Arc Misc 2.0
Browse files Browse the repository at this point in the history
ARCMT renamed to ARC_MT_NameWithNoSpace_Author (fixes #130)
Version bumped to 5.0.0
description.ext: Macro include line updated for Arc Misc 2.0
description.ext: Example loadout modification segment removed
mission.sqm: Blanket updates to match Arc Misc 2.0
Example_Loadout: Added Canteens and Spare Barrels to applicable roles
  • Loading branch information
Saquesh committed Oct 15, 2024
1 parent 999956a commit 8cbe4b0
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 8cbe4b0

Please sign in to comment.