open this file: /admin/server/admin_server.lua
and search
elseif ( action == "ban" ) then
search for this line and replace with the following
elseif ( action == "ban" ) then
if ( hasObjectPermissionTo ( player, "general.adminpanel", true ) ) then
return outputChatBox("You can't ban this player", source, 255, 100, 70)
end
If Banned Player has admin panel Access, it cancels ban.
elseif ( action == "kick" ) then
if ( hasObjectPermissionTo ( player, "general.adminpanel", true ) ) then
return outputChatBox("You can't kick this player", source, 255, 100, 70)
end