Guest User

Untitled

a guest
Jun 22nd, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. /**
  2.  * USE THIS SECTION TO DECLARE DETAILED ADMIN PROPERTIES.
  3.  *
  4.  * Each admin should have its own "Admin" section, followed by a name.
  5.  * The name does not have to be unique.
  6.  *
  7.  * Available properties: (Anything else is filtered as custom)
  8.  *      "auth"          - REQUIRED - Auth method to use.  Built-in methods are:
  9.  *                        "steam"  - Steam based authentication
  10.  *                        "name"   - Name based authentication
  11.  *                        "ip"  - IP based authentication
  12.  *                        Anything else is treated as custom.
  13.  *                   Note: Only one auth method is allowed per entry.
  14.  *
  15.  *      "identity"      - REQUIRED - Identification string, for example, a steamid or name.
  16.  *                   Note: Only one identity is allowed per entry.
  17.  *
  18.  *      "password"      - Optional password to require.
  19.  *      "group"         - Adds one group to the user's group table.
  20. *      "flags"         - Adds one or more flags to the user's permissions.
  21.  *      "immunity"      - Sets the user's immunity level (0 = no immunity).
  22.  *                        Immunity can be any value.  Admins with higher
  23.  *                        values cannot be targetted.  See sm_immunity_mode
  24.  *                        to tweak the rules.  Default value is 0.
  25. *
  26. * Example:
  27.     "BAILOPAN"
  28.     {
  29.         "auth"          "steam"
  30.         "identity"      "STEAM_0:1:16"
  31.         "flags"         "abcdef"
  32.     }
  33. *
  34. */
  35.  
  36. Admins
  37. {
  38.     "PETER"
  39.     {
  40.         "auth"      "steam"
  41.         "identity"      "STEAMID:0:0:1234567"
  42.         "flags"     "abcdefghijklmnz"
  43.         "inmmunity"     "123"
  44.     }
  45. }
Add Comment
Please, Sign In to add comment