Quote:
Originally Posted by ZombieAndy
Anyway to exclude specific members or usergroups? would be great! thanks
|
for member exclusion, I think that the simple way is to edit the XML in this way:
Replace
Code:
if (($vbulletin->userinfo[posts] < 10) and
with
Code:
if (($vbulletin->userinfo[posts] < 10) and ($vbulletin->userinfo[userid] <> XX)
where XX is the ID of the user that you wish to exclude from this check.
for the group exlusion, edit the XML in this way:
Replace
Code:
if (($vbulletin->userinfo[posts] < 10) and
with
Code:
if (($vbulletin->userinfo[posts] < 10) and (!is_member_of($vbulletin->userinfo, YY))
where YY is the ID of the group that you wish to exclude from this check.
I will try
hjogi