Quote:
Originally Posted by Lynne
Did you try just writing a plugin to use the reputation_power hook location? Something like:
PHP Code:
if (is_member_of($userinfo['usergroup'], xx)) $reppower = yy;
NOT TESTED AT ALL, so test on your test site.
|
Try this: @Lynne was very close. Thanks @Lynne
Code:
if (is_member_of($vbulletin->userinfo, xx)) $reppower = yy;
xx = User Group ID or list of ID's ie. 6,5,3
yy = Your reputation number
Hook: reputation_power
Note - This does not write to the database, it just alters the displayed information that gets sent to the template.