get_switches
Retrieve all game switch names from RPG Maker MZ/MV projects to manage event triggers and conditional logic in game development.
Instructions
Get all game switch names
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/systemTools.ts:54-57 (handler)Implementation of the get_switches tool handler.
export async function getSwitches(projectPath: string): Promise<string[]> { const system = await getSystem(projectPath); return system.switches; }