hi,
do you mean the "custom ban" message if a banned user trys to login to your forums ? that's defined in "/includes/functions.php"
PHP Code:
if (($bbuserinfo['usergroupid']==$vboptions['warn_banned_usergroup_id'] OR $bbuserinfo['usergroupid']==$vboptions['warn_troll_usergroup_id']) AND $bbuserinfo['userid'])
{
$ban=$DB_site->query_first("SELECT liftdate FROM " . TABLE_PREFIX . "userban WHERE userid=$bbuserinfo[userid]");
if ($ban['liftdate']=='0')
{
$until="Permanently Banned";
}
else
{
$until=vbdate($vboptions['dateformat'],$ban[liftdate]);
$until=" temporarily banned, until the $until";
}
eval(print_standard_error('nopermission_banned',true));
}
$until ="temporarly banned,until the $until" (temporarly banned can be changed)
as for the usergroup thingy you should be able to define this this through your usergroupmanager and the aws settings open this url
http://www.yoursite.com/vbulletin/ad...=manageoptions there you can define what happens if a user get's banned