I've been trying to figure out how to make it so a tamer has unlimited control slots. Anyone can point me in the right direction to do this?
 
it's based on FollowersMax which is a property in Server/Mobile

to put it simply - to make a true "unlimited" followers, you would need to remove this property completely - and that would be a pain

to make it easier - you could just set the followersmax to something higher - but keep in mind that the player stats window will reflect the number and won't look right

there is another option...give me a second
 
you could alter a few scripts so it doesn't check followers max

playermobile - line 6048 - comment out the lines as shown
Code:
//if ((Followers + pet.ControlSlots) <= FollowersMax)
              //  {
                    pet.SetControlMaster(this);

                    if (pet.Summoned)
                    {
                        pet.SummonMaster = this;
                    }

                    pet.ControlTarget = this;
                    pet.ControlOrder = OrderType.Follow;

                    pet.MoveToWorld(Location, Map);

                    pet.IsStabled = false;
                    pet.StabledBy = null;

                    pet.Loyalty = BaseCreature.MaxLoyalty; // Wonderfully Happy

                    if (Stabled.Contains(pet))
                    {
                        Stabled.Remove(pet);
                    }
             //   }
              /*  else
                {
                    SendLocalizedMessage(1049612, pet.Name); // ~1_NAME~ remained in the stables because you have too many followers.
                }
	*/

Scripts/Skills/AnimalTaming.cs - line 182 - comment out this section
Code:
else if (from.Followers + creature.ControlSlots > from.FollowersMax)
						{
	from.SendLocalizedMessage(1049611); // You have too many followers to tame that creature.
}

Scripts/Mobiles/Normal/BaseCreature.cs - lines 5440 - comment out this section
Code:
if (m.Followers + ControlSlots > m.FollowersMax)
{
	m.SendLocalizedMessage(1049607); // You have too many followers to control that creature. return false;
}

This hasn't been tested and there are a few other places to edit if you want Vendors to recognize this as well.
 
Thanks I'll try these out! I'm new to all this so I'll probably have more questions. I was thinking of making it the more followers you have the harder to control, but I'm not that advanced yet lol.
 
Back