Quote:
Originally Posted by Xenon
sorry, didn't see this thread during my holidays
actually it's very easy.
open includes/function_newpost.php
find this:
PHP Code:
// get usergroup info
$getusergroupid = iif($bbuserinfo['displaygroupid'], $bbuserinfo['displaygroupid'], $bbuserinfo['usergroupid']);
$usergroup = $usergroupcache["$getusergroupid"];
if ($foruminfo['countposts'])
and change into
PHP Code:
// get usergroup info
$getusergroupid = iif($bbuserinfo['displaygroupid'], $bbuserinfo['displaygroupid'], $bbuserinfo['usergroupid']);
$usergroup = $usergroupcache["$getusergroupid"];
if ($foruminfo['countposts'] AND !in_array($bbuserinfo['userid'], array(xx, yy)))
and replace xx and yy with the userid's of your bots
|
Thank you, that worked perfectly!! I really appreciate the help on this.