Hi all if i put
maxteamsize 1 in my server.cfg will this start as a solo server ? maxteamsize 1 in my server.cfg will this start as a solo server ? relationshipmanager.maxteamsize: "4"
In response to Warkingz ():do you no what the command is to set the team size i did put that in and it comes up with below afte...
[ServerUserVar]
public static void trycreateteam(ConsoleSystem.Arg arg)
{
if (maxTeamSize == 0)
{
arg.ReplyWith("Teams are disabled on this server");
return;
}
BasePlayer basePlayer = ArgEx.Player(arg);
if (basePlayer.currentTeam == 0)
{
PlayerTeam playerTeam = Instance.CreateTeam();
playerTeam.teamLeader = basePlayer.userID;
playerTeam.AddPlayer(basePlayer);
}
}