Dails

Villager
Member
Joined
Jul 11, 2021
Messages
29
Reaction score
19
First Language
Español
Primarily Uses
RMMV
Hello, everyone.

I wanted to know if there is any plugin that allows you to have more than 4 followers on the map. I don't want them in battle, just make them appear on the map more than 4 if you have them in the group.

I think there is one but it is paid and right now I don't know if it is good for me to buy it. If you could share or tell me how to do it without spending money, I would really appreciate it.

Greetings and thanks for reading my post.
 

AquaEcho

Script Kitty
Veteran
Joined
Sep 20, 2021
Messages
583
Reaction score
273
First Language
English
Primarily Uses
RMMV
You can always make them generic events that follow you around, the challenge would just be giving them a move route equivalent to the default party followers.
 

xabileug

Veteran
Veteran
Joined
Jul 1, 2014
Messages
602
Reaction score
210
it's the caterpillar script , or follower options.. i cant remember the japanese plugin, but there's some in the english community.
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,891
Reaction score
6,692
First Language
English
Primarily Uses
RMMV
Copy this and paste it into a text editor; save as a *.js file and include as a plugin.

Code:
Game_Followers.prototype.initialize = function() {
    this._visible = $dataSystem.optFollowers;
    this._gathering = false;
    this._data = [];
// Change X on the next line
    for (var i = 1; i < Math.max($gameParty.maxBattleMembers(), $gameVariables.value(X)); i++) {
        this._data.push(new Game_Follower(i));
    }
};

Where I indicated, you change X to the ID of a game variable (don't include leading zeros). Use in-game event commands to set that variable to how many party members you want to show as followers. Just make sure the player has that many party members.
 

Dails

Villager
Member
Joined
Jul 11, 2021
Messages
29
Reaction score
19
First Language
Español
Primarily Uses
RMMV
Copy this and paste it into a text editor; save as a *.js file and include as a plugin.

Code:
Game_Followers.prototype.initialize = function() {
    this._visible = $dataSystem.optFollowers;
    this._gathering = false;
    this._data = [];
// Change X on the next line
    for (var i = 1; i < Math.max($gameParty.maxBattleMembers(), $gameVariables.value(X)); i++) {
        this._data.push(new Game_Follower(i));
    }
};

Where I indicated, you change X to the ID of a game variable (don't include leading zeros). Use in-game event commands to set that variable to how many party members you want to show as followers. Just make sure the player has that many party members.
Hi, sorry for not replying sooner. I was kind of busy. About the script does not work. I already put a variable by substituting the "x" for a variable (120). There are 5 followers plus the characters you control. So I put 6 and it doesn't work, I also put 5 and it doesn't work either. I also tried to use another variable (44) and neither. I don't know what else to try. I did all these tests in a project without plugins so as not to generate conflicts
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
8,891
Reaction score
6,692
First Language
English
Primarily Uses
RMMV
Add this to the plugin:
Code:
Game_Follower.prototype.actor = function() {
    return $gameParty.members()[this._memberIndex];
};

That should make the followers reference everyone in your party, not just the four in battle.
 

Latest Threads

Latest Posts

Latest Profile Posts

Feeling a tad frustrated designing one map of my project... MC is supposed to grab a key from inside a kofun to escape a certain area. Unfortunately, kofuns are cramped, dark and claustrophobic: not exactly many places to run and hide in horror games. :ysad:
When ya accidentally delete a whole map and saved before you realized.

We really need a recycle bin
How the fusion of Batman+Spider-Man would be? Be creative on your replies.
Farm is all but done!

Map007.png


FarmerYard.png

Might add a wagon or something towards the bottom but I think we're good to go. ^_^
1686161626348.png
This is something I randomely made in my free time while trying to find alternative ways to post images here instead of imgur, hope it doesn't look too blurry or bad.

Forum statistics

Threads
131,720
Messages
1,222,611
Members
173,464
Latest member
Sora1107
Top