> For the complete documentation index, see [llms.txt](https://stg-store.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stg-store.gitbook.io/documentation/scripts/pizza-maker/configuration.md).

# Configuration

***

#### <mark style="color:green;">🍕 General Settings</mark>

| **Parameter**                                                     | **Description**                                                                | **Example Value** |
| ----------------------------------------------------------------- | ------------------------------------------------------------------------------ | ----------------- |
| <mark style="color:green;">`Config.Framework`</mark>              | Determines which framework to use: `auto`, `esx`, or `qb`.                     | `"auto"`          |
| <mark style="color:green;">`Config.Language`</mark>               | Sets the language for in-game messages. Supports `en`, `de`, `fr`, `sp`, `pt`. | `"en"`            |
| <mark style="color:green;">`Config.MaxOrder`</mark>               | Maximum number of orders a player can accept at the same time.                 | `8`               |
| <mark style="color:green;">`Config.MaxPizzaStack`</mark>          | Maximum number of pizzas that can be carried.                                  | `7`               |
| <mark style="color:green;">`Config.DeliveryVehicle`</mark>        | Spawned vehicle model used for delivery.                                       | `"foodcar4"`      |
| <mark style="color:green;">`Config.BannedIngredientChance`</mark> | Chance (%) to have banned ingredients in an order. Use `false` to disable.     | `10`              |
| <mark style="color:green;">`Config.MaxBannedIngredients`</mark>   | Maximum number of banned ingredients per pizza.                                | `1`               |
| <mark style="color:green;">`Config.PayPerIngredient`</mark>       | If `true`, ingredients are charged individually when placing them.             | `true`            |
| <mark style="color:green;">`Config.PizzaBakeTime`</mark>          | Time (in seconds) needed to bake a pizza.                                      | `10`              |
| <mark style="color:green;">`Config.Target`</mark>                 | Enables or disables target system integration.                                 | `false`           |

***

#### 🍽️ Pizza Station Settings

| **Parameter**                                                | **Description**                                   | **Example Value**             |
| ------------------------------------------------------------ | ------------------------------------------------- | ----------------------------- |
| <mark style="color:green;">`Config.PizzaPlace`</mark>        | Coordinates and vehicle spawn locations.          | `vec3(538.17, 101.63, 96.53)` |
| <mark style="color:green;">`Config.Blips`</mark>             | Custom blip settings for restaurant and delivery. | `label = "Pizza Place"`       |
| <mark style="color:green;">`Config.DeliveryLocations`</mark> | List of all available delivery destinations.      | `vec4(...)`                   |

***

#### 🧀 Ingredients Configuration

| **Ingredient** | **Amount Required** | **Cost** |
| -------------- | ------------------- | -------- |
| `sauce`        | `1`                 | `10`     |
| `cheese`       | `1`                 | `20`     |
| `pepperoni`    | `16`                | `3`      |
| `mushroom`     | `16`                | `5`      |
| `onion`        | `16`                | `2`      |
| `pepper`       | `16`                | `3`      |
| `olive`        | `16`                | `5`      |
| `prawn`        | `16`                | `7`      |

***

#### 🍕 Pizza Types

| **Label**          | **Ingredients**                               | **Payment** |
| ------------------ | --------------------------------------------- | ----------- |
| `Margarita`        | sauce, cheese                                 | `3500`      |
| `Pepperoni Pizza`  | sauce, cheese, pepperoni                      | `6500`      |
| `Veggie Express`   | sauce, cheese, pepper, onion, mushroom, olive | `8800`      |
| `Ocean Dream`      | sauce, cheese, prawn, olive                   | `7200`      |
| `Dragon Fire`      | sauce, cheese, pepperoni, pepper, onion       | `8400`      |
| `Cheesy Comet`     | sauce, cheese                                 | `3000`      |
| `The Supreme`      | All ingredients                               | `10000`     |
| `Midnight Special` | sauce, cheese, olive, pepperoni, onion        | `5800`      |
