I have figured out how to change the permission message but I cannot figure out how to add several usergroups - I don't know how to program. Anyone know how to add multiple usergroups instead of just limited to the two usergroups?
I have tried this:
[CODE]
if ($vbulletin->options['prvnt_pm_swith'])
{
$prvnt_group = $vbulletin->userinfo['usergroupid'] ;
}
if($prvnt_group == 4 or $prvnt_group == 15,3,43,12,98,41,99)
{
print_no_permission() ;
and this:
Code:
if ($vbulletin->options['prvnt_pm_swith'])
{
$prvnt_group = $vbulletin->userinfo['usergroupid'] ;
}
if($prvnt_group == 4 or $prvnt_group == 15 or $prvnt_group == 43 or $prvnt_group == 12 or $prvnt_group == 98 or $prvnt_group == 41 or $prvnt_group == 99 $prvnt_group == 96)
{
print_no_permission() ;
and this:
[CODE]
if ($vbulletin->options['prvnt_pm_swith'])
{
$prvnt_group = $vbulletin->userinfo['usergroupid'] ;
}
if($prvnt_group == 4,15,3,43,12,98,41,99)
{
print_no_permission() ;
and they won't work.
TIA