From 9b1df10d5249e627b77e7f28dc3d5e069f662da0 Mon Sep 17 00:00:00 2001 From: microoowave <112627599+microoowave@users.noreply.github.com> Date: Sun, 30 Nov 2025 19:51:36 +0000 Subject: [PATCH 1/2] Enhance documentation for SetLaunchControlEnabled Added detailed description of the effects when Arena Mode is enabled, including changes to vehicle handling and damage. --- PHYSICS/SetLaunchControlEnabled.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/PHYSICS/SetLaunchControlEnabled.md b/PHYSICS/SetLaunchControlEnabled.md index 377d8df54..a600f64a5 100644 --- a/PHYSICS/SetLaunchControlEnabled.md +++ b/PHYSICS/SetLaunchControlEnabled.md @@ -8,8 +8,17 @@ aliases: ["0xAA6A6098851C396F"] // 0xAA6A6098851C396F void _SET_LAUNCH_CONTROL_ENABLED(BOOL toggle); ``` +Toggles "Arena Mode", a global flag that affects physics, damage, and handling for all vehicles. -Related to the lower-end of a vehicles fTractionCurve, e.g., from standing starts and acceleration from low/zero speeds. +When enabled: + +* fTractionLossMult is multiplied by 0.25, increasing grip significantly. +* Mid-air vehicle control rotation force is increased by 50%. +* Vehicles explode immediately when body health reaches 0. +* Disables chain-reaction explosions for nearby vehicles. +* Prevents engine damage from colliding with Ramp Cars. +* Overrides the Stunt Mode ([`N_0x9ebd751e5787baf2`](https://docs.fivem.net/natives/?_0x9EBD751E5787BAF2)) collision protection. +* Reduces the chance of falling off bikes/quads. ``` NativeDB Introduced: v1604 From ceaec97d5ac8cbf4d5af519b0888f0b33d9ebe74 Mon Sep 17 00:00:00 2001 From: Dillon Skaggs Date: Mon, 15 Dec 2025 13:39:03 -0600 Subject: [PATCH 2/2] Use docs format --- PHYSICS/SetLaunchControlEnabled.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHYSICS/SetLaunchControlEnabled.md b/PHYSICS/SetLaunchControlEnabled.md index a600f64a5..91dcbb2c2 100644 --- a/PHYSICS/SetLaunchControlEnabled.md +++ b/PHYSICS/SetLaunchControlEnabled.md @@ -17,7 +17,7 @@ When enabled: * Vehicles explode immediately when body health reaches 0. * Disables chain-reaction explosions for nearby vehicles. * Prevents engine damage from colliding with Ramp Cars. -* Overrides the Stunt Mode ([`N_0x9ebd751e5787baf2`](https://docs.fivem.net/natives/?_0x9EBD751E5787BAF2)) collision protection. +* Overrides the Stunt Mode ([`N_0x9ebd751e5787baf2`](#_0x9EBD751E5787BAF2)) collision protection. * Reduces the chance of falling off bikes/quads. ```