Hey Guys,
Can anyone help me? I search the Teammate of the Player who called the plugin.
I have this Code but no Output.
RelationshipManager.PlayerTeam team = relationship.FindPlayersTeam(player.userID);
if (team != null )
{
foreach (ulong membername in team.members)
{
SendMessage(player, Convert.ToString(membername));
}
} else {
SendMessage(player, "Player has no Team");
}Thx for your Help