Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Special use of parallel process (no plugin required)
- Original author: Awayamatana
- Original date: December 19, 2023
- Source thread: https://forums.rpgmakerweb.com/threads/special-use-of-parallel-process-no-plugin-required.163989/
- Source forum path: Game Development Engines > RPG Maker Tutorials > RMMZ Tutorials
Summary
I'm using Google Translate, so it may be a strange translation. Please point it out. 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.
Archived First Post
I'm using Google Translate, so it may be a strange translation.
Please point it out.
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.
There's no need to use them when you can't think of a use for them.
Preparation
Create a common event like the one below.
Parallel process event that runs only once
Execute the parallel process only once immediately after the conditions are met.
procedure:
1. Set the trigger to "Parallel".
2. Enter the events you want to execute.
3. 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.
Protected downloadProtected downloadProtected downloadProtected download
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.
3. Enter the commands to use for preparation.
4. Enter the common event "Remove parallel process".
5. Override trigger.
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
Protected download
Two triggers
You can create events that can be talked to while running parallel processes.
procedure:
1. Set the trigger to "Parallel".
2. Create a conditional branch.
3. Override trigger.
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
Protected download
I've only shown a few simple examples, so there may be many other uses that I can't imagine!
Please point it out.
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.
There's no need to use them when you can't think of a use for them.
Preparation
Create a common event like the one below.
JavaScript:
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:
1. Set the trigger to "Parallel".
2. Enter the events you want to execute.
3. 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.
Protected downloadProtected downloadProtected downloadProtected download
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.
JavaScript:
this.character(0)._trigger === 4
4. Enter the common event "Remove parallel process".
5. Override trigger.
JavaScript:
this.character(0)._trigger = 0;
6. Enter "Exit Event Processing."
7. Enter the events to run after preparation.
Example: Translucent person
Protected download
Two triggers
You can create events that can be talked to while running parallel processes.
procedure:
1. Set the trigger to "Parallel".
2. Create a conditional branch.
JavaScript:
this.character(0)._trigger === 4
JavaScript:
this.character(0)._trigger = 0;
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
Protected download
I've only shown a few simple examples, so there may be many other uses that I can't imagine!
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadReferenced Images / Attachments
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...