ok i added a little update to my version, if an account has spaces in it, it will only use the first part of the name not the whole name so i made a little fix that removes the space. If your useing my version change:
PHP Code:
<?php
error_reporting(7);
require('./global.php');
eval("dooutput(\"".gettemplate('forumchat')."\");");
?>
to:
PHP Code:
<?php
error_reporting(7);
require('./global.php');
$chatusername=str_replace(" ","",$bbuserinfo[username]);
eval("dooutput(\"".gettemplate('forumchat')."\");");
?>
now in the forumchat template find:
PHP Code:
$bbuserinfo[username]
and replace it with:
it apears twice so change both and there, when a user goes to the chat it removes any spaces from there name