Quote:
Originally Posted by Boofo
Can this be made to send a pm for other than 1 point? If an admin gives rep on my site, it is 100 points. Can it reflect the right amount, too? 
|
I have not tested this yet, but i think you can add an if ... else statement to check if the user is in admin group to return proper amount point. for example:
PHP Code:
if($bbuserinfo[usergroupid] == '6')
{
$reppoint = '100';
}
else
{
$reppoint = '1';
}
now, in title + message, modify it a bit. i.e.
PHP Code:
$pm_title = "You have been given $reppoint point.";