add_event
Create new events on RPG Maker MZ maps by specifying coordinates, IDs, and names to build interactive game elements and narrative content.
Instructions
Add a new event to a map
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event_id | Yes | Event ID | |
map_id | Yes | Map ID | |
name | Yes | Event name | |
project_path | Yes | Path to the RPG Maker MZ project directory | |
x | Yes | X coordinate | |
y | Yes | Y coordinate |
Input Schema (JSON Schema)
{
"properties": {
"event_id": {
"description": "Event ID",
"type": "number"
},
"map_id": {
"description": "Map ID",
"type": "number"
},
"name": {
"description": "Event name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"project_path",
"map_id",
"event_id",
"name",
"x",
"y"
],
"type": "object"
}