# DynamicSpawn

**Description**\
List of specific room + coordinate pairs where the item may spawn. Useful when you need precise room control but want the spawn system to pick one of several positions in that room.

**Parameters**

* `room` — `string` — Room identifier/name (e.g., `"Lcz914"`).
* `coords` — `Vector3` — Local coordinates inside the specified room.

**Example Yaml context**

```yaml
spawn:
  spawn_settings:
  - chance: 50
    dynamic_spawn:
    - room: Lcz914
      coords:
        x: 1
        y: 1
        z: 1
    - room: HczWarhead
      coords:
        x: 2
        y: 0.5
        z: -4
```


---

# Agent Instructions: 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:

```
GET https://docs.uci.ucserver.it/uncomplicatedcustomitems/api/spawning/dynamicspawn.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
