44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
/***************************************
 | 
						|
 * READ THIS CAREFULLY! SEE BOTTOM FOR EXAMPLES
 | 
						|
 *
 | 
						|
 * For each admin, you need two settings:
 | 
						|
 *  "identity"		"permissions"
 | 
						|
 *
 | 
						|
 * For the Identity, you can use a SteamID, IP address, or Name (the type will be auto-detected).
 | 
						|
 * For the Permissions, you can use a flag string or group (read below), and an optional password.
 | 
						|
 *
 | 
						|
 * There are 26 flags (a-z), and each flag has a specific meaning/role.
 | 
						|
 * For example, the "b" flag means "kick permissions."
 | 
						|
 *
 | 
						|
 * You can combine flags into a string like this:
 | 
						|
 * "abcdefgh"
 | 
						|
 *
 | 
						|
 * The default flags are:
 | 
						|
 * 
 | 
						|
 *		"reservation"		"a"		//Slot reservation
 | 
						|
		"kick"			"b"		//Kick other players
 | 
						|
		"ban"			"c"		//Ban other players
 | 
						|
		"unban"			"d"		//Unban other players
 | 
						|
		"slay"			"e"		//Slay other players
 | 
						|
		"changemap"		"f"		//Change the map or gameplay type
 | 
						|
		"cvars"			"g"		//Change cvars
 | 
						|
		"configs"		"h"		//Run config files
 | 
						|
		"chat"			"i"		//See dead/team chat and chat with other admins
 | 
						|
		"votes"			"j"		//Display votes
 | 
						|
		"password"		"h"		//Change server password
 | 
						|
		"rcon"			"i"		//Use RCON
 | 
						|
		"root"			"z"		//All permissions
 | 
						|
 *
 | 
						|
 * NOTE: If you specify a - in a flag string, each subsequent flag will be subtracted instead of added.
 | 
						|
 *       You can specify a + to "undo" this in the same string.
 | 
						|
 *
 | 
						|
 * Examples:
 | 
						|
 *   "STEAM_0:1:16"		"bce"			//kick, ban, slay for this steam ID
 | 
						|
 *   "127.0.0.1"		"z"			//all permissions for this ip
 | 
						|
 *   "BAILOPAN"			"mypassword:abc"	//name BAILOPAN, password "mypassword" gets reservation, kick, ban
 | 
						|
 *
 | 
						|
 ***************************************/
 | 
						|
 
 | 
						|
"127.0.0.1" "z"
 | 
						|
 |