Edit: Do you want it for everyone that joins, or like a special group of people to only have these clan tags?
//When the player joins, the can tags will be set to this
//NOTE: This is untested, and it changes the tags for everyone.
//Change the values to change what the tag becomes
$Pref::Server::ClanPrefixOverride = "ASDF"
$Pref::Server::ClanSuffixOverride = "qwer"
package ClanTagsOverride
{
function GameConnection::autoAdminCheck(%this)
{
%this.clanPrefix = $Pref::Server::ClanPrefixOverride;
%this.clanSuffix = $Pref::Server::ClanSuffixOverride;
return parent::autoAdminCheck(%this);
}
};
activatePackage(ClanTagsOverride);