I'd like to take more than one beast with me but I'm hitting my follower limit. I've messed around with FollowersMax but I cannot seem to increase my followers?
 
It is a per-mobile setting so if you change your own FollowersMax value ( [props yourself) you should be able to to add more pets.
 
@Barclay: try the addon script for followers based on intelligence. I had mine set to 100 followers at one time, so I know you can do it easily. Say so here if you can't find it, i'll post mine.
Post automatically merged:

there it is. try this out.
 

Attachments

  • MaxFollowersBasedOnIntelligence.cs
    1.6 KB · Views: 50
If you're wanting to adjust all players max follower count you need to look in your Mobile.cs. Find this and change it to whatever it is you;re wanting to set it as.

C#:
if (version < 15)
                        {
                            m_Followers = 0;
                            m_FollowersMax = 5;
                        }
 
For some odd reason it's not working for me


if (version < 15)
{
m_Followers = 0;
m_FollowersMax = 9;
}


After adding that i still only get a maximum of 5 in my stats menu
 
Here is a deed that will increase max followers by 1 (max of 10).
 

Attachments

  • MaxFollowerDeed.cs
    1.4 KB · Views: 45
Back