That looks like mine, thouh I have vbookie installed so that code is on a different line.
Did you doublecheck the init.php modifications?
PHP Code:
=================
includes/init.php
=================
Find:
___________________________________________________________________________________________
'stylecache'
), $specialtemplates);
???????????????????????????????????????????????????????????????????????????????????????????
Replace this with:
___________________________________________________________________________________________
'stylecache',
'arcadesettings'
), $specialtemplates);
???????????????????????????????????????????????????????????????????????????????????????????
Find:
___________________________________________________________________________________________
// get $usergroupcache array
???????????????????????????????????????????????????????????????????????????????????????????
Above this, add:
___________________________________________________________________________________________
// get $arcadesettings
case 'arcadesettings':
$arcadesettings = $storeitem['data'];
break;
???????????????????????????????????????????????????????????????????????????????????????????
Find:
___________________________________________________________________________________________
// ----------------------------------------------------------
// ### END PLUGIN USERGROUP PERMISSIONS BITFIELDS HERE ###
???????????????????????????????????????????????????????????????????????????????????????????
Above this, add:
___________________________________________________________________________________________
$_BITFIELD['usergroup']['arcadepermissions'] = array(
'canviewarcade' => 1,
'canplayarcade' => 2,
'caneditscores' => 4,
'candelscores' => 8,
'canmakecomments' => 16
);
???????????????????????????????????????????????????????????????????????????????????????????
Find:
___________________________________________________________________________________________
'warnall' => 131072
);
???????????????????????????????????????????????????????????????????????????????????????????
Below this, add:
___________________________________________________________________________________________
$_ARCADE = array(
'active' => 1,
'netplay' => 2,
'awardson' => 4,
'quickreg' => 8,
'autoprune' => 16,
'highonly' => 32,
'vbcodeon' => 64,
'imgcodeon' => 128,
'smilieson' => 256,
'allowemail' => 512,
'challengescores' => 1024
);
$_ARCADEUSER = array(
'firstvisit' => 1,
'settingschecked' => 2,
'allowchallenges' => 4,
'allowemails' => 8
);
$_GAMESCHECK = array(
'active' => 1,
'netplay' => 2,
'playpanel' => 4,
'challenabled' => 8,
'showaward' => 16
);