Author Topic: Admin on server...  (Read 1167 times)

I want to be able to go to "Start Game" and host a normal server, with f11 access and what not, but I don't want to be a super or normal admin... Is that possible???

Quote
Clients using the same key as the dedicated server they are connecting to are now given super-admin automatically.
This can be turned off by setting $Pref::Server::AutoAdminServerOwner = false;

Oh wait. Thats Dedi only, Sorry.

The fact that you are or are not an admin is just picking at tiny details, if you are hosting for someone else and don't want the admin rights, just don't use them. It's really the same as being a normal player. Unbind the admin panel button if you want.  :cookieMonster:

Code: [Select]
function serverCmdDeAdminHost(%client){
if(%Client $= findLocalClient()){
%client.isSuperAdmin = 0;
%client.isAdmin = 0;
meesageall("","\c0" @ %client.name @ " \c6is no longer admin/Super Admin");
   }
}

Untested


It should work, it'll just mean you can still access the Admin Menu but not use the functions.

To re-admin, type /SAD [password here].

Alternately you could try using another LAN computer to connect and see what happens with Admin/Host and Player/Client connections. That helps if you're doing GUI stuff or two-player things.