# Model Parameters

Model parameters control variables for models, e.g. letting users define specific color for bed's wool color or wood frame. These are completely dynamic and can be created by anymore inside model.yml file.

Example of color parameter:

```yaml
parameters:
  bedColor:
    default: "RED"
    values: "%colors%"
    description: "Color of the bed (wool)"
```

This would let you further into parts configuration use \<bedColor> parameter, to define color for wool used with bed.&#x20;

<figure><img src="https://i.imgur.com/vSXdDGe.png" alt=""><figcaption></figcaption></figure>

In this example, each `bed_frame` part would use DARK\_OAK\_LOG material, and `bed_material` parts would use any defined color of WOOL.&#x20;

To define parameters with models, you use them inside `/am give` command, example:

```
/am give Steve bed 1 bedColor:orange
```

This command would give an orange wool textured bed.

## Default Values

### %colors%

All minecraft colors: white, orange, magenta, light blue, yellow, lime, pink, gray, light gray, cyan, purple, blue, brown, green, red, and black

This is useful when working with materials, such as WOOL, CARPET, CONCRETE, STAINED\_GLASS, GLASS, TERRACOTTA, GLAZED\_TERRACOTTA, CONCRETE\_POWDER

### %wood types%

All wood colors: OAK,SPRUCE,BIRCH,JUNGLE,ACACIA,DARK\_OAK,WARPED,MANGROVE,CHERRY


---

# 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://models.advancedplugins.net/models-and-guides/model-parameters.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.
