> For the complete documentation index, see [llms.txt](https://kaarlos.gitbook.io/arma3-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kaarlos.gitbook.io/arma3-documentation/snippets-and-scripts/warlords-setup/custom-assets-in-request-menu.md).

# Custom Assets In Request Menu

This is how you create a custom request menu in Warlords. First of all go to your mission folder, then create a file named `requsitions.hpp` now open it and put this code in there. Customize it to your liking.

<details>

<summary>Requsitions.hpp Code</summary>

{% code fullWidth="false" %}

```sqf
class CfgWLRequisitionPresets
{
	class WLHugoPreset
	{
		class WEST
		{
			class Infantry
			{
				class Unit_Classname {cost = 0; requirements[] = {};};
			};
			class Vehicles
			{
				class Vehicle_Classname {cost = 0; requirements[] = {};};
			};
			class Aircraft
			// ("A" = Airstrip) ("H" = Helipad) ("W" = Watar/Harbor)
			{
				class Aircraft_Classname {cost = 0; requirements[] = {"A"};};
			};
			class Naval // (Optional)
			{
				class Boat_Classname {cost = 0; requirements[] = {"W"};};
			};
			class Gear // (Optional)
			{
				class Gear_Classname {cost = 0; requirements[] = {};};
			};
			class Defences
			{
				class Defence_Classname {cost = 0; requirements[] = {}; offset[] = { 0, 5.3, 0 };};
			};
		};
		class EAST
		{
			class Infantry
			{
				class Unit_Classname {cost = 0; requirements[] = {};};
			};
			class Vehicles
			{
				class Vehicle_Classname {cost = 0; requirements[] = {};};
			};
			class Aircraft
			// ("A" = Airstrip) ("H" = Helipad) ("W" = Watar/Harbor)
			{
				class Aircraft_Classname {cost = 0; requirements[] = {"A"};};
			};
			class Naval // (Optional)
			{
				class Boat_Classname {cost = 0; requirements[] = {"W"};};
			};
			class Gear // (Optional)
			{
				class Gear_Classname {cost = 0; requirements[] = {};};
			};
			class Defences
			{
				class Defence_Classname {cost = 0; requirements[] = {}; offset[] = { 0, 5.3, 0 };};
			};
		};
	};
};
```

{% endcode %}

</details>

***

> Now You will need to create a file named `description.ext` in your mission folder. Now open it and put this line in there:
>
> ```sqf
> #include "requisitions.hpp"
> ```


---

# 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://kaarlos.gitbook.io/arma3-documentation/snippets-and-scripts/warlords-setup/custom-assets-in-request-menu.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.
