FAQ - Häufig gestellte Fragen

Wie werde ich beim Mani Admin Plugin admin?

Seit Mani Version 1.2 gibt es die Variante clients.txt, welche etwas mehr Möglichkeiten bietet, allerdings auch komplizierter ist. Die Datei muss im Verzeichnis srcds_l/orangebox/cstrike/cfg/mani_admin_plugin erstellt werden, sofern sie noch nicht vorhanden ist.

Hier ein Beispiel, in der nur noch SteamID und ADMINNAME ersetzt werden muss. ADMINNAME kann irgend ein, in der clients.txt eindeutiger, Name sein. Das Adminmenü lässt sich mit dem Befehl "admin" öffnen. Beispiel für die userconfig.cfg: bind "F1" "admin"

"clients.txt"
{
	"version"       "1"

	// This key group lists all your client players
	"players"
	{
		// This must be a unique client name
		"ADMIN1"
		{
			// Client real name
			"name"  "ADMIN2"
			// Steam ID for client
			"steam" "STEAM_X:X:XXXXX"
			// This sub key is for multiple ip addresses
			// These are personal access flags for a player
			"groups"
			{
				"Admin"         "Serveradmin"
				"Immunity"      "Serveradmin"
			}
		}
		// This must be a unique client name
		"ADMIN2"
		{
			// Client real name
			"name"  "ADMIN2"
			// Steam ID for client
			"steam" "STEAM_X:X:XXXXX"
			// This sub key is for multiple ip addresses
			// These are personal access flags for a player
			"groups"
			{
				"Admin"         "Serveradmin"
				"Immunity"      "Serveradmin"
			}
		}
	}

	// These are global groups of flags that can be assigned to clients
	"groups"
	{
		"Immunity"
		{

			"Serveradmin"	"a b c d e f g h i j k l m n o p q r s t u v x y afk ping autojoin grav Immunity"
		}
		"Admin"
		{
			"Serveradmin"  "A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e"
			"Serveradmin"  "f g i k l m o p q q2 q3 r s t v w x y z admin client grav pban spray"
		}
	}

}

<< Zur Übersicht