I will teach you the ultimate techniques for those who want to reduce the use of plugins, variables, and switches as much as possible.
These techniques are the same as for plugins.
Preparation
Create a common event like the one below.
const character = this.character(0);
character._interpreter = null;
character._trigger = null;
Parallel process event that runs only once
Execute the parallel process only once immediately after the conditions are met.
procedure:
- Set the trigger to “Parallel”.
- Enter the events you want to execute.
- Enter the common event “Remove parallel process” at the end of the contents.
Example: An event where the weather changes depending on the value when a variable is changed.
Event that allows other trigger to run after a parallel process runs only once
Use this when you want to prepare for an event that meets the conditions.
procedure:
1.Set the trigger to “Parallel”.
2.Create a conditional branch.
this.character(0)._trigger === 4
3. Enter the commands to use for preparation.
4. Enter the common event “Remove parallel process”.
5. Override trigger.
this.character(0)._trigger = 0;
The numbers on the right side can be 0 to 3, and each corresponds to “Action Button” to “Autorun”.
6. Enter “Exit Event Processing.”
7. Enter the events to run after preparation.
Example: Translucent person
Two triggers
You can create events that can be talked to while running parallel processes.
procedure:
- Set the trigger to “Parallel”.
- Create a conditional branch.
this.character(0)._trigger === 4
3. Override trigger.
this.character(0)._trigger = 0;
The numbers on the right side can be 0 to 3, and each corresponds to “Action Button” to “Autorun”.
4. Enter “Loop”.
5. Input the events used for parallel process.
6. Enter “Wait”.
7. Input events without parallel process.
Example: A person who always displays a balloon except when an event is running
I’ve only shown a few simple examples, so there may be many other uses that I can’t imagine!






