> For the complete documentation index, see [llms.txt](https://as.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://as.advancedplugins.net/supported-plugins/modelengine-support.md).

# ModelEngine support

## How does ModelEngine work with AdvancedSpawners?&#x20;

Adding a custom ModelEngine model to AdvancedSpawners takes a couple of minutes. ModelEngine pets also fully supports settings from AdvnacedSpawners, as well as custom walking speed, custom damage.

## How to create a ModelEngine pet?

It's very simple! Go into `plugins/AddvancedSpawners/customMobs` folder. You will need to create a new mob now - using your text editor.

Create a .amob file with the name of pet you want, e.g. `ModelRobot.amob`, example:

![](https://i.imgur.com/2t0YJnc.png)

When you create the file, open it with your text editor (Notepad++ is recommended).&#x20;

We have a template you can use for ModelEngine pets:

{% code title="ModelRobot.amob" %}

```yaml
settings:
  health: 20
  damage: 1
  nametagheight: 0
  walkingspeed: 1.1
  modelengine: kindletronjr
skins:
parts:
animations:
```

{% endcode %}

To use your own custom ModelEngine model, simply change `settings.modelengine` to the model name you want. In this example we're using one of the demo mobs `kindletronjr`

That's it!
