-
Note:
-
The following functions are NOT public and are likely to change in the future!
-
-
You will **not** be able to carry / drag objects that are too heavy, the mass is also affected by what is inside the object. To bypass this empty the object. You can change the weight limits by setting `ACE_maxWeightDrag` (default 800) and `ACE_maxWeightCarry` (default 600).
### 2.1 Enabling / disabling dragging
diff --git a/docs/wiki/framework/grenades-framework.md b/docs/wiki/framework/grenades-framework.md
index 755773c1710..dcf1f60cd00 100644
--- a/docs/wiki/framework/grenades-framework.md
+++ b/docs/wiki/framework/grenades-framework.md
@@ -74,7 +74,7 @@ The average amount of time in seconds, after `explosionTime` has passed, between
The amount of randomness in the fuse time.
-### 2.1.5 ace_grenades_flashbangExplodeSound
+#### 2.1.5 ace_grenades_flashbangExplodeSound
The sounds that can be used when the flashbang detonates. It randomly selects an entry from this array (equal chances, there are no weights involved).
If not defined, `[format ["A3\Sounds_F\arsenal\explosives\grenades\Explosion_HE_grenade_0%1.wss", floor (random 4) + 1], 5, 1.2, 400]` is used as a default instead (4 sounds total).
@@ -108,7 +108,7 @@ class CfgAmmo {
If set to zero or left undefined, the grenade is not treated as a flare. If it is set to 1, the grenade will be treated as a flare with the associated effects.
-#### 2.3.1 ace_grenades_color
+#### 2.3.2 ace_grenades_color
Sets the color of the emitted light. The first 3 values of the array of the color, the last is the light intensity.
diff --git a/docs/wiki/framework/javelin-framework.md b/docs/wiki/framework/javelin-framework.md
index ba2a390f309..136066f4dbd 100644
--- a/docs/wiki/framework/javelin-framework.md
+++ b/docs/wiki/framework/javelin-framework.md
@@ -18,7 +18,7 @@ version:
class CfgWeapons {
class MyLauncher {
ace_javelin_enabled = 1; // Enable Javelin-style locking (0-disabled, 1-enabled)
- weaponInfoType = "ACE_RscOptics_javelin"; // Inteface
+ weaponInfoType = "ACE_RscOptics_javelin"; // Interface
modelOptics = "\z\ace\addons\javelin\data\reticle_titan.p3d"; // Optics model
canLock = 0; // Disable vanilla locking (0-disabled, 1-enabled)
lockingTargetSound[] = {"", 0, 1}; // Locking sound
From 808d22fd348f99159f07c46789154f510a22ddc3 Mon Sep 17 00:00:00 2001
From: johnb432 <58661205+johnb432@users.noreply.github.com>
Date: Tue, 3 Sep 2024 18:53:05 +0200
Subject: [PATCH 11/95] Towing - Fix dependencies (#10288)
Update config.cpp
---
addons/towing/config.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/addons/towing/config.cpp b/addons/towing/config.cpp
index d4d1b5e8540..7c98be1756c 100644
--- a/addons/towing/config.cpp
+++ b/addons/towing/config.cpp
@@ -6,7 +6,7 @@ class CfgPatches {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
- requiredAddons[] = {"ace_common", "ace_logistics_rope"};
+ requiredAddons[] = {"ace_interaction", "ace_logistics_rope"};
author = ECSTRING(common,ACETeam);
authors[] = {"tcvm"};
url = ECSTRING(main,URL);
@@ -16,4 +16,3 @@ class CfgPatches {
#include "CfgEventHandlers.hpp"
#include "CfgVehicles.hpp"
-
From 73ed46d36b5e5c1fc93cfd3e6fced9c5d8838017 Mon Sep 17 00:00:00 2001
From: johnb432 <58661205+johnb432@users.noreply.github.com>
Date: Tue, 3 Sep 2024 23:00:17 +0200
Subject: [PATCH 12/95] General - Removed silent Dragging dependencies (#10287)
Move release string table entry to common
---
addons/common/stringtable.xml | 17 +++++++++++++++++
.../dragging/functions/fnc_carryObjectPFH.sqf | 2 +-
addons/dragging/functions/fnc_dragObject.sqf | 2 +-
addons/dragging/functions/fnc_resumeDrag.sqf | 2 +-
addons/dragging/functions/fnc_setCarryable.sqf | 2 +-
addons/dragging/functions/fnc_setDraggable.sqf | 2 +-
addons/rearm/functions/fnc_grabAmmo.sqf | 2 +-
addons/rearm/functions/fnc_takeSuccess.sqf | 2 +-
.../functions/fnc_startNozzleInHandsPFH.sqf | 2 +-
addons/towing/functions/fnc_attachRopePFH.sqf | 2 +-
10 files changed, 26 insertions(+), 9 deletions(-)
diff --git a/addons/common/stringtable.xml b/addons/common/stringtable.xml
index 4593805846b..86f046de55f 100644
--- a/addons/common/stringtable.xml
+++ b/addons/common/stringtable.xml
@@ -1932,5 +1932,22 @@