1. Hey there,

    its possible to read the cfg/user.cfg or easier: list all admins (ownerids) from a server?
     
  2. Wulf

    Wulf Community Admin

    You can loop through the BasePlayer.activePlayerList and check if player.IsAdmin().
     
  3. or if you wanna get them all just in one move.
    Code:
    var admins = ServerUsers.GetAll(ServerUsers.UserGroup.Owner);
     
  4. Wulf

    Wulf Community Admin

    Forgot about that one, I think we even use something similar in Oxide. :p