Try this; create a new plugin at forumhome_start with the following:
Code:
$query = $db->query_read("SELECT username,userid FROM user WHERE usergroupid = 'X'");
while($row = mysql_fetch_array($query))
{
eval('$usernames .= "' . fetch_template('forum_users_bit') . '";');
}
Note the Red X must be replaced with the UsergroupID of the Users you're trying to retrieve.
Then create a new template named "forum_users_bit" with the following:
Code:
<a href="member.php?u=$row[userid]">$row[username]</a>,
Then just place "$usernames" in your Forumhome template and you're off.
You can fiddle with it yourself if you're not trying to place it on the forumhome.