> For the complete documentation index, see [llms.txt](https://docs.uct.ucserver.it/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.uct.ucserver.it/syntax/enums.md).

# Enums

Enums are a important element of UCT, serving to define configuration logic. They enable you to determine specific conditions, such as spawning a Custom Team upon Warhead detonation versus LCZ Decontamination. Without this system, customization would be minimal.

**Note:** For Enums like `RoleTypeId` (related to roles), please refer to: [Enums](https://docs.ucr.ucserver.it/syntax-notions/enums).

Below you will find all Enums used in UCT that are necessary for configuration.

## Wave Type

**Used for:** `Spawn Wave`

```yaml
        None
        NtfWave
        ChaosWave
        AfterWarhead
        AfterDecontamination
        UsedItem
        RoundStarted
        RoundEnded
        ScpDeath
        TeamDependent
        AfterGeneratorActivated
```

#### Explanation:

* None - Undefined Wave type. Disables automatic spawning for this Custom Team, limiting it to manual spawns via the `uct spawn` command.
* NtfWave - Replaces the Nine-Tailed Fox spawn wave with this Custom Team.
* ChaosWave - Replaces the Chaos Insurgency spawn wave with this Custom Team.
* AfterWarhead - Spawns the Custom Team after the Warhead detonates.
* AfterDecontamination - Spawns the Custom Team after LCZ decontamination.
* UsedItem - Spawns the Custom Team after a specific item is used. This can be a base game item, UCI Custom Item or EXILED Custom Item.
* RoundStarted - Spawns the Custom Team after the round starts.
* RoundEnded - Spawns the Custom Team after the round ends.
* ScpDeath - Spawns the Custom Team after an SCP dies. This can trigger on a specific SCP or the SCP team generally.
* TeamDependent - The Custom Team spawn depends on another Custom Team. It can spawn either after the other team spawns or after it is eliminated.
* AfterGeneratorActivated -Spawns the Custom Team after an SCP-079 Generator is activated.

## Priority

Used for: `Priority`

```yaml
        None
        First
        Second
        Third
        Fourth
        Fifth
```

#### Explanation:

The priority of assigning Custom Role in the Spawn Wave (First -> Fifth).\
The lower the value, the higher the priority.


---

# 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://docs.uct.ucserver.it/syntax/enums.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.
