This product doesn't have a video preview yet.
This addon extends PanelSIX functionality to enable per-server admin management instead of only global admin assignments. With this addon, you can assign administrators to specific game servers rather than giving them access to all servers.
PanelSIX ADDON - Admins per server/
├── Images/ # Screenshots and documentation images
├── PanelSIX Files/ # Web panel files
│ ├── SQL/
│ │ └── admin_servers_update.sql # Database schema updates
│ ├── admin/
│ │ ├── add_admin.php # Add new admin interface
│ │ ├── control_admins.php # Admin management interface
│ │ └── edit_admin.php # Edit admin interface
│ └── admins_list.php # List all admins with server assignments
├── Server Plugin/
│ └── admin_sql.sma # AMX Mod X plugin source code
├── Important information.txt # Installation notes
└── README.md # This file
CRITICAL: Before installing the plugin, you MUST modify the server identifier in the plugin source code.
Server Plugin/admin_sql.sma
in a text editoramx_server_identifier = register_cvar("amx_server_identifier", "main_server", FCVAR_PROTECTED)
"main_server"
to a unique, descriptive name for your server"dm_server_1"
for Deathmatch Server 1"jb_server_main"
for Jailbreak Main Server"surf_server_eu"
for Surf Server Europe"zombie_server_1"
for Zombie Server 1-- Run the contents of PanelSIX Files/SQL/admin_servers_update.sql
PanelSIX Files/
to your PanelSIX web directoryadmin_sql.sma
and change the server identifier (see above)amxxpc admin_sql.sma
admin_sql.amxx
to your server's addons/amxmodx/plugins/
directoryplugins.ini
file:
admin_sql.amxx
addons/amxmodx/configs/sql.cfg
amx_server_identifier "your_unique_server_name"
server_specific = 0
): Have access to ALL serversserver_specific = 1
): Only have access to assigned serversserver_identifier
The addon adds the following tables/columns:
game_servers
: Stores server information and identifiersadmin_game_servers
: Links admins to specific serversdiveban_admins.server_specific
: Flag indicating if admin is server-specificAdmins not loading on server:
sql.cfg
game_servers
tableWeb panel not showing servers:
Plugin compilation errors:
If you encounter any issues: