Show usernames without Titles?
Hey Guys,
I have a problem i want to save the Users Nickname without their Titles. I use Clan Tags too and these Tags are Shown too.

To get the Displayname i use:
p = BasePlayer.FindByID(Convert.ToUInt64(memberId));
sb.Append(p.displayName);​

Is there a way to remove the Tags and Titles?

I dont know if im right to post it here or at Clan Tags too.
Better Chat titles are not actually part of their username. Clan tags however are, so your question is related to clans.
Yes its Related to Clan, sorry if i post in the Wrong Section, i use ClanTags and there are added ThirdPartyTags with a BetterChat Call.
I take a look into the Clans Plugins and found the Section stripTag. If i call this function i need the variable "clan" and this i get if i call the function findClanByUser, then i get the "return clan". for this i need the userid. i have the userid but its a littlebit unsortet then i use a struct like this.
		public struct player_t {
			public string SteamId;
			public string DiscordId;
			public string Nickname;
			public string SteamName;
		};​
With my current understanding i know that this is no longer belongs to BetterChat. But i hope that someone can teach my how i can sort this thing better and how to call the function to remove or save the Clan in a better sorted way.

I hope my english was not so terrible that no one understand what i mean :D

in best regards,

BattleSheep