Follower Control Plugin v1.0 for RPG Maker MZ

Hey RPG Makers!

I’m pleased to announce the release of the Follower Control plugin for RPG Maker MZ!

This plugin includes the features you’ve enjoyed from Follower Control for MV, including:

  1. Change the Max Party Members! Have as many party members as you want!
  2. Use commands on followers! This is excellent for cutscenes!
    • Set Move Route
    • Show Balloon Icon
    • Show Animation
    • Transfer Player
    • Conditional Branch
  3. Use pathfinding scripts within the Set Move Route command! This works on the player, followers, and events!
    • this.path(x, y)
    • this.path(‘event’, id)
    • this.path(‘follower’, i)
    • this.path(‘leader’)
  4. Use the Pose plugin command to change a follower’s image! You can change images to various poses, without even needing to know the follower’s actor ID or current image. All you need to know is which follower to affect, and which pose to use!

Download Follower Control Plugin MZ

Visit Store to Download

How to Install

  1. Download the file, and unzip it.
  2. Make sure the unzipped file is named Tyruswoo_FollowerControl.js and is saved as a .js file.
  3. Open the file folder of your project. Place the file in your project’s “js” folder, within the “plugins” folder.
  4. Open your project in RPG Maker MZ, then go to the Tools menu and select Plugin Manager. Use the Plugin Manager to add and activate the plugin.
  5. I recommend you place this plugin toward the bottom of your plugin list, so it has high priority.

Settings and Plugin Commands

RPG Maker MZ - How to Increase Max Party Members

With the Follower Control plugin, modifying the maximum number of party members is simple. Just open the Plugin Manager, select the Follower Control plugin, and change the Max Party Members.

List of plugin commands available with Follower Control.

Help Documentation

Tyruswoo Follower Control Plugin for RPG Maker MZ
Version 1.0, released 8/22/2020
Plugin commands:
Leader: Selects the party leader. (Default.)
Follower 1: Selects the 1st follower.
Follower 2: Selects the 2nd follower.
Follower 3: Selects the 3rd follower.
Follower 4: Selects the 4th follower.
Follower 5: Selects the 5th follower.
Follower 6: Selects the 6th follower.
Follower 7: Selects the 7th follower.
Follower 8: Selects the 8th follower.
Follower 9: Selects the 9th follower.
Follower by Position: Select any follower, based on marching order.
Follower by Name: Select follower by name of actor in database.
Follower by Actor ID: Select follower by actor ID.
Stop Chase: Prevent followers from chasing the leader.
Chase: Allow followers to chase the leader. (Default.)
Pose: Change a party member's character image to pose.
Reset Pose: Change a party member to their default pose.
Plugin parameters:
Max Party Members: Set how many party members are shown. Default 4.
Pathfinding Search Limit: Set the pathfinding search limit. Default 12.
Script calls: (Advanced. Use these within the Set Move Route command.)
this.path(x, y) Pathfind to the absolute coordinates indicated.
this.path('event', id) Pathfind to the event of ID number id.
this.path('e', id) Same as this.path('event', id). May use 'E'.
this.path('follower', i) Pathfind to the follower of position i.
this.path('f', i) Same as this.path('follower', i). May use 'F'.
this.path('leader') Pathfind to the party leader.
this.path('L') Same as this.path('leader'). May use 'l'.
this.moveToward(x, y) Move toward the absolute coordinates indicated.
this.moveToward('e', id) Move toward the event of ID number id.
this.moveToward('f', i) Move toward the follower of position i.
this.moveToward('L') Move toward the party leader. May use 'l'.
Basics of how to use this plugin:
- First, select the desired party member. This may be the leader, for default RPG Maker behavior. To control followers, select a follower.
- Next, use an event command on the "player", and the selected party member will be affected! This works for many commands, including:
-- Set Move Route
-- Show Balloon Icon
-- Show Animation
-- Transfer Player
-- Conditional Branch
- Note that if you are moving the party leader, the followers by default will chase the leader. If you want the leader to move independently, without the followers chasing, you will need to use the "Stop Chase" plugin command.
- After you are done with the eventing, remember to use the "Leader" and "Chase" plugin commands to return to default RPG Maker behavior, if desired.
Advanced uses for this plugin:
- Pro Tip: Make common events with preset movement patterns for the party. Then, use these movement patterns for cutscenes throughout the game!
- You can make a follower that looks transparent, like a ghost! Select a follower, then using the Set Move Route command to change the follower's opacity, and/or to turn off (or on) the follower's walking animation, stepping animation, or direction fix.
- You can make a follower turn toward the party leader. First, select a follower. Then, use the Set Move Route command and use the move route "turn toward player". (If you also want the party leader to turn toward the follower: Use conditional branches to check the direction faced by the follower; then, inside the conditional branch, select the leader, and use Set Move Route to make the leader face the opposite direction.)
- If followers are on the same tile as the leader, you can make them face the same direction as the leader. Select a follower, then use the Set Move Route command and use the move route "turn toward player". (This also works for events that are on the same tile as the leader.)
- Poses! These allow you to change an actor's character image, without needing to know which actor is being affected. Based on the follower you choose, the follower's actor's character image will change to the pose you choose. Example: If you have an actor named Tyruswoo with character image "Tyruswoo.png", then you can use the Pose plugin command with the argument "wounded" to change the character's image to "Tyruswoo_wounded.png". Most importantly, this affects the chosen follower, without needing to know which actor ID is being affected, and without needing to know the current graphic of the actor. To change the pose back to default, use the Reset Pose plugin command.
- Pathfinding! You can make any character (party leader, follower, or event) take a step toward coordinates, or a step toward any other follower or event! Within the Set Move Route command, use this script: this.path(x, y) and the character will step toward coordinates x,y. To make the character step toward a follower, use the script this.path('follower', i) where i is the position (marching order) of the follower. To make the character step toward the party leader, use the script this.path('leader'). To make the character step toward an event, use the script this.path('event', i) where i is the ID number of the event. If you don't want pathfinding, but want the character to attempt to take a step without trying to avoid walls, you can use the script this.moveToward(x,y), this.moveToward('follower',id), this.moveToward('event',i), or this.moveToward('leader'). In all these scripts, you can also abbreviate 'follower' to 'f', 'leader' to 'l', and 'event' to 'e'. Using abbreviations can make it easier to read the scripts inside the Set Move Route window. Note that by default, followers have Through On, so if you want the followers to pathfind around solid obstacles, you will need to use Set Move Route on the follower to set Through Off.
For more help using the Follower Control plugin, see Tyruswoo.com.
Terms of Use:
1. You joined Tyruswoo.com as a paying member when you downloaded this plugin. You do not have to remain a paying member to use the plugin you downloaded. However, your support is greatly appreciated, and allows me to continue improving and updating plugins.
2. You agree to not redistribute this plugin. You agree to direct others to Tyruswoo.com if they want the plugin.
3. You may use this for any game, whether commercial or non-commercial.
4. Adding "Tyruswoo", "Tyruswoo Studio", or "Tyruswoo Team" to your game's credits is greatly appreciated, but not required.
5. A free copy of your game is awesome, but not required.
Remember, only you can build your dreams!
-Tyruswoo

Enjoy the Follower Control plugin!

Tyruswoo

Tyruswoo
Tyruswoo

Indie Game Designer creating game content!

Articles: 267

Leave a Reply