> For the complete documentation index, see [llms.txt](https://lng.gitbook.io/lng-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lng.gitbook.io/lng-docs/overrides/readme.md).

# Developer Platform

<h2 align="center">Anzety's Mod Overrides</h2>

<p align="center">This are ready to pack working mod overrides</p>

<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-type="content-ref"></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><h4><i class="fa-leaf">:leaf:</i></h4></td><td><strong>LNG Companion</strong></td><td>Change the slot count for the companion Vistual Storage</td><td><a href="/pages/JsKd452Nu8XTrHz68zaF#lng-companion-capacity-override-mod">/pages/JsKd452Nu8XTrHz68zaF#lng-companion-capacity-override-mod</a></td><td><a href="/spaces/BB0ei748FKUihMyRzylM">/spaces/BB0ei748FKUihMyRzylM</a></td><td><a href="/files/LHIOZGoI6dPF36TuRaxH">/files/LHIOZGoI6dPF36TuRaxH</a></td></tr></tbody></table>

#### LNG Companion - Capacity Override Mod

```cpp
// ============================================================================
// LNG Companion - Capacity Override Mod
// Description: Overrides the drone crate cargo sizes
// ============================================================================

class CfgPatches
{
	class LNGCompanion_CapacityOverride
	{
		units[] = {};
		weapons[] = {};
		requiredVersion = 0.1;
		// CRITICAL: We must require the main mod to ensure this loads AFTER it and successfully overrides the classes.
		requiredAddons[] = {
			"DZ_Data",
			"DZ_Gear_Camping",
			"LNGCompanion_Mod"
		};
	};
};

class CfgVehicles
{
	class SeaChest;

	// Level 0 (Base Crate) - 50 Slots
	class LNG_DroneCrate : SeaChest
	{
		class Cargo
		{
			itemsCargoSize[] = { 10, 5 }; // 10 columns * 5 rows = 50 Slots change this to your liking
			openable = 0;
			allowOwnedCargoManipulation = 1;
		};
	};

	// Level 1 - 100 Slots
	class LNG_DroneCrate_Lvl1_V2 : LNG_DroneCrate
	{
		class Cargo
		{
			itemsCargoSize[] = { 10, 10 }; // 10 columns * 10 rows = 100 Slots change this to your liking
			openable = 0;
			allowOwnedCargoManipulation = 1;
		};
	};

	// Level 2 - 200 Slots
	class LNG_DroneCrate_Lvl2_V2 : LNG_DroneCrate
	{
		class Cargo
		{
			itemsCargoSize[] = { 10, 20 }; // 10 columns * 20 rows = 200 Slots change this to your liking
			openable = 0;
			allowOwnedCargoManipulation = 1;
		};
	};

	// Level 3 - 250 Slots
	class LNG_DroneCrate_Lvl3_V2 : LNG_DroneCrate
	{
		class Cargo
		{
			itemsCargoSize[] = { 10, 25 }; // 10 columns * 25 rows = 250 Slots change this to your liking
			openable = 0;
			allowOwnedCargoManipulation = 1;
		};
	};
};
```

<h2 align="center">Join Discord</h2>

<p align="center">Join our Discord community to request a specific override</p>

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th></th><th></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><h4><i class="fa-discord">:discord:</i></h4></td><td><strong>Discord community</strong></td><td>Join our Discord community to post questions, get help, and share resources with like-minded Server Owners.</td><td><a href="https://discord.gg/qCpY9jsCwS" class="button secondary">Join Discord</a></td><td></td></tr><tr><td></td><td><strong>Youtube Guides</strong></td><td>Check The guides and feature showcase videos on our channel.</td><td><a href="https://www.youtube.com/@LateNightArk" class="button secondary">Youtube</a></td><td></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://lng.gitbook.io/lng-docs/overrides/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
