From 7e5e7e26af02621fb84223d9cf203f04afe9d03e Mon Sep 17 00:00:00 2001 From: hizumi <> Date: Wed, 19 Jun 2024 22:20:49 -0500 Subject: [PATCH] Update SupplyCrates.hpp add ability to pull tires and tracks out of the arsenal boxes for loading into vehicles --- defines/SupplyCrates.hpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/defines/SupplyCrates.hpp b/defines/SupplyCrates.hpp index e5cf222..26fe919 100644 --- a/defines/SupplyCrates.hpp +++ b/defines/SupplyCrates.hpp @@ -210,4 +210,28 @@ class SupplyCrates { }; items[] = {}; }; + + class ResupplyTire { + boxClass = "ACE_Wheel"; + displayName = "Vehicle Tire"; + tooltip = "A single tire for replacement"; + icon = "A3\ui_f\data\igui\cfg\simpletasks\types\repair_ca.paa"; + + backpacks[] = {}; + weapons[] = {}; + magazines[] = {}; + items[] = {}; + }; + + class ResupplyTrack { + boxClass = "ACE_Track"; + displayName = "Vehicle Track"; + tooltip = "A single track for replacement"; + icon = "z\ace\addons\repair\ui\patch_ca.paa"; + + backpacks[] = {}; + weapons[] = {}; + magazines[] = {}; + items[] = {}; + }; }; \ No newline at end of file