How to configure permissions for wOS admin commands
"Admin Commands" refer to the console command "wos_openadminmenu"
- Navigate to lua/wos/advswl/config/general/sv_adminsettings.lua
- Find the "wOS.ALCS.Config.CanAccessAdminMenu" value
- Add a rank to the table and set it equal to true
Example
Permits the ranks "owner" and "developer" to use the admin commands built into wOS (No other ranks can use them except for the ones specified in the table)
wOS.ALCS.Config.CanAccessAdminMenu = {
["owner"] = true,
["developer"] = true,
}