add_actor
Create new characters in RPG Maker MZ by adding actors to the game database with specified IDs and names for your project.
Instructions
Add a new actor to the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Actor ID | |
name | Yes | Actor name | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Actor ID",
"type": "number"
},
"name": {
"description": "Actor name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"id",
"name"
],
"type": "object"
}