The Arcive of vBulletin Modifications Site. |
|
removing Arcade ModCp ? Details »»
|
|||||||||||||||||||||||||
Anyway to remove it or disable moderators from using it ? (so that only admins can use)
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
We are wanting the same thing.
https://vborg.vbsupport.ru/showthread.php?t=175759 |
|
#3
|
||||
|
||||
|
try this:
open /arcade/modules/mod_modcp.php search for Code:
if( $main->arcade->user['is_admin'] )
{
$this->privs['scores'] = 1;
$this->privs['comments'] = 1;
$this->privs['champs'] = 1;
$this->privs['tourney'] = 1;
}
Code:
$this->privs['scores'] = 0;
$this->privs['comments'] = 0;
$this->privs['champs'] = 0;
$this->privs['tourney'] = 0;
|
|
#4
|
||||
|
||||
|
Quote:
|
|
#5
|
||||
|
||||
|
yes, you asked to remove moderators from accessing it, and so it does - and only admins are left to use the Arcade ModCP ...
|
![]() |
|
|