When you go into the ACP and manage usergroups you can set what markup you want for an usergroup.
--------------- Added [DATE]1241959326[/DATE] at [TIME]1241959326[/TIME] ---------------
I had to write a plugin. I'll post the XML code.
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1" executionorder="5" product="vbulletin">
<title>Colored Clan Tags</title>
<hookname>postbit_display_start</hookname>
<phpcode><![CDATA[global $db;
$clantag = $db->query_first("SELECT opentag,closetag FROM " . TABLE_PREFIX . "usergroup WHERE usergroupid = '".$post['usergroupid']."' ");
$opentag = $clantag['opentag'];
$closetag = $clantag['closetag'];]]></phpcode>
</plugin>
</plugins>