Quote:
Originally Posted by StoneHalo
Does this just allow users in the 'Registered users' usergroup to play? Or can it be set to other usergroups?
I have two subscription groups that I would like to have access to this but not those in the normal registered group.
Thanks
|
It's automatically set up to stop guests from playing, but allow everyone else. In flash.php, find:
PHP Code:
if ($bbuserinfo['userid'] == 0)
{
print_no_permission();
}
Change it to:
PHP Code:
if ($bbuserinfo['userid'] == 0 OR $bbuserinfo['usergroupid'] == 2)
{
print_no_permission();
}
And keep adding usergroups to the end of that line you want NOT to be able to play.