Open /admin/functions.php
## Find:
PHP Code:
// do posts from ignored users
if (($ignore[$post[userid]] and $post[userid] != 0)) {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit")."\";");
}
return $retval;
## Replace with:
PHP Code:
// do posts from ignored users
if (($ignore[$post[userid]] and $post[userid] != 0)) {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
} elseif ($post[usergourpid]==4) { // change 4 to the usergourpid of the rpg gourp
eval("\$retval = \"".gettemplate("postbit_rpg")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit")."\";");
}
return $retval;
Change the number 4 as told in code comments
Add a new template named postbit_rpg, this is the postbit that will display for your rpg gourp.