From 43c1c89cc12a8eef5efae85d1a22cb7eeb6c24c6 Mon Sep 17 00:00:00 2001 From: ColdEvul <andreas.brostrom.ce@gmail.com> Date: Thu, 14 Jul 2016 03:34:06 +0200 Subject: [PATCH] Made new APEX crates draggable --- addons/dragging/CfgVehicles.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/addons/dragging/CfgVehicles.hpp b/addons/dragging/CfgVehicles.hpp index ba4ff87186..3f5dbce327 100644 --- a/addons/dragging/CfgVehicles.hpp +++ b/addons/dragging/CfgVehicles.hpp @@ -69,6 +69,33 @@ class CfgVehicles { GVAR(canCarry) = 1; GVAR(canDrag) = 1; }; + class Box_Syndicate_Ammo_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(canDrag) = 1; + }; + class Box_IED_Exp_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(canDrag) = 1; + }; + class Box_Syndicate_Wps_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(canDrag) = 1; + }; + class Box_Syndicate_WpsLaunch_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(canDrag) = 1; + }; + + class Box_NATO_Equip_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(carryDirection) = 270; + GVAR(canDrag) = 1; + }; + class Box_NATO_Uniforms_F: ReammoBox_F { + GVAR(canCarry) = 1; + GVAR(carryDirection) = 270; + GVAR(canDrag) = 1; + }; // Remove Larger crate dragging support. // Would be better to allow some sort of joint push/drag functionality