Quote:
Originally Posted by rockergrrl
Init.php is unhacked for me..
The clean init.php file has this 'canseedelnotice' => 262144
So having 'canvbgarage' => 262144, just wouldn't work
what should it be then?
|
Err.. 'canseedelnotice' is in a separate array. It's under:
PHP Code:
$_BITFIELD['usergroup']['forumpermissions'] = array(
You need to be adding 'canvbgarage' under this array:
PHP Code:
$_BITFIELD['usergroup']['genericpermissions'] = array(
In the end, it should look like this:
PHP Code:
$_BITFIELD['usergroup']['genericpermissions'] = array(
'canviewmembers' => 1,
'canmodifyprofile' => 2,
'caninvisible' => 4,
'canviewothersusernotes' => 8,
'canmanageownusernotes' => 16,
'canseehidden' => 32,
'canbeusernoted' => 64,
'canprofilepic' => 128,
'canseeraters' => 256,
'canuseavatar' => 512,
'canusesignature' => 1024,
'canusecustomtitle' => 2048,
'canseeprofilepic' => 4096,
'canviewownusernotes' => 8192,
'canmanageothersusernotes' => 16384,
'canpostownusernotes' => 32768,
'canpostothersusernotes' => 65536,
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144
// END VBGARAGE HACK
);