Sie sind nicht angemeldet.

1

Mittwoch, 13. Januar 2010, 16:15

[CSS] Kein Adminmenü (sm_admin) in verbindung mit Sourcebans

Hallo,
man hat mir aus dem hlstatsX-Ce Forum den Tip gegeben mich hier zu melden...


Hier auch gleich mein Prolbem:
das Adminmenü lässt sich Ingame nicht über den Befehl sm_admin aufrufen.
der Server ist Neu installiert. Der Admin und die Gruppe wurden mit Sourcebans erstellt, haben sich auch automatisch in der admins.cfg sowie der admin_groups.cfg eingetragen.

Installierte Plugins:

zBlock 4.4
Metamod:Source version 1.8.0
SourceMod 1.2.4
SourceBans 1.4.6

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
] meta version
Metamod:Source version 1.8.0
Compiled on: Dec 19 2009
Plugin interface version: 11:7
SourceHook version: 4:4
http://www.metamodsource.net/
] meta list
  [01] SourceMod (1.2.4) by AlliedModders LLC
  [02] CS:S Tools (1.2.4) by AlliedModders LLC
  [03] SDK Tools (1.2.4) by AlliedModders LLC
] sm
SourceMod 1.2.4, by AlliedModders LLC
To see running plugins, type "sm plugins"
To see credits, type "sm credits"
Visit http://www.sourcemod.net/
] sm plugins
 "Nextmap" (1.2.4) by AlliedModders LLC
 "Anti-Flood" (1.2.4) by AlliedModders LLC
 "Client Preferences" (1.2.4) by AlliedModders LLC
 "Basic Commands" (1.2.4) by AlliedModders LLC
 "Basic Info Triggers" (1.2.4) by AlliedModders LLC
 "Reserved Slots" (1.2.4) by AlliedModders LLC
 "Admin Menu" (1.2.4) by AlliedModders LLC
 "Basic Chat" (1.2.4) by AlliedModders LLC
 "Admin File Reader" (1.2.4) by AlliedModders LLC
 "Fun Commands" (1.2.4) by AlliedModders LLC
To see more, type "sm plugins 12"
] sm plugins 12
 "Basic Votes" (1.2.4) by AlliedModders LLC
 "SourceBans" (1.4.6) by InterWave Studios Development Team
 "Sound Commands" (1.2.4) by AlliedModders LLC
 "Admin Help" (1.2.4) by AlliedModders LLC
 "Player Commands" (1.2.4) by AlliedModders LLC
 "Basic Comm Control" (1.2.4) by AlliedModders LLC
] sm_admin
[SM] Du hast keinen Zugriff auf diesen Befehl!.


admins.cfg

Quellcode

1
2
3
4
5
6
7
8
9
10
11
"Admins"
{
        "meinAdmin"
        {
                "auth"          "steam"
                "identity"              "0:0:8487112"
                "flags"         "abcde"
		"group"		"Team1"
                "immunity"              "100"
        }
}


admin_groups.cfg

Quellcode

1
2
3
4
5
6
7
8
"Groups"
{
	"Team1"
	{
		"flags"		"abcde"
		"immunity"		"100"
	}
}


sourcebans.log

Zitat

L 01/13/2010 - 11:13:23: [sourcebans.smx] plugins/basebans.smx was unloaded and moved to plugins/disabled/basebans.smx


sourcemod.log

Zitat

L 01/13/2010 - 10:44:03: SourceMod log file session started (file "L20100113.log") (Version "1.2.4")
L 01/13/2010 - 10:44:03: -------- Mapchange to de_dust2 --------
L 01/13/2010 - 10:44:04: -------- Mapchange to de_dust2 --------
L 01/13/2010 - 10:44:05: [UPDATER] Successfully updated gamedata file "sm-tf2.games.txt"
L 01/13/2010 - 10:44:05: [UPDATER] Successfully updated gamedata file "sdktools.games/engine.ep2valve.txt"
L 01/13/2010 - 10:44:05: [UPDATER] Successfully updated gamedata file "sdktools.games/game.tf.txt"
L 01/13/2010 - 10:44:05: [UPDATER] SourceMod has been updated, please reload it or restart your server.
L 01/13/2010 - 11:02:13: SourceMod log file session started (file "L20100113.log") (Version "1.2.4")
L 01/13/2010 - 11:02:13: -------- Mapchange to de_dust2 --------
L 01/13/2010 - 11:02:15: -------- Mapchange to de_dust2 --------
L 01/13/2010 - 11:13:21: SourceMod log file session started (file "L20100113.log") (Version "1.2.4")
L 01/13/2010 - 11:13:21: -------- Mapchange to de_dust2 --------
L 01/13/2010 - 11:13:24: -------- Mapchange to de_dust2


database.cfg

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"Databases"
{
        "driver_default"                "mysql"
        
        "default"
        {
                "driver"                        "default"
                "host"                          "localhost"
                "database"                      "sourcemod"
                "user"                          "root"
                "pass"                          ""
                //"timeout"                     "0"
                //"port"                        "0"
        }
        
        "storage-local"
        {
                "driver"                        "sqlite"
                "database"                      "sourcemod-local"
        }

        "clientprefs"
        {
                "driver"                        "sqlite"
                "host"                          "localhost"
                "database"                      "clientprefs-sqlite"
                "user"                          "root"
                "pass"                          ""
                //"timeout"                     "0"
                //"port"                        "0"
        }
        
        "sourcebans"
        {
                "driver"                "mysql"
                "host"                  "meineExterneDatenbank-IP"        // The host where your mysql server is located
                "database"              "sourcebans_sb" // The name of the database
                "user"                  "***"           // The name of the user that the plugin should use to connect
                "pass"                  "******"        // The password for this user
        //"timeout"            "0"
        "port"             "3306"
        }
}


sourcebans.cfg

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"SourceBans"
{
        "Config"
        {
                // Website address to tell where the player to go for unban, etc
                "Website"                       "http://www.superbong.de/"

                // Allow or disallow admins access to addban command
                "Addban"                        "1"

                // Allow or disallow admins access to unban command
                "Unban"                         "1"
        
        // The Tableprefix you set while installing the webpanel. (default: "sb")
                "DatabasePrefix"        "sb"

                // How many seconds to wait before retrying when a players ban fails to be checked. Min = 15.0 Max = 60.0
                "RetryTime"                     "45.0"
                
                // How often should we process the failed ban queue in minutes
                "ProcessQueueTime"      "5"

                // Should the plugin automaticaly add the server to sourcebans 
                // (servers without -ip being set on startup need this set to 0)
                "AutoAddServer"         "0"

                // Enable backing up config files after getting admins from database (1 = enabled, 0 = disabled)
                "BackupConfigs" "1"

                // Enable admin part of the plugin (1 = enabled, 0 = disabled)
                "EnableAdmins"  "1"
        
                // Require the admin to login once into website
                "RequireSiteLogin"      "0"

                // This is the ID of this server (Check in the admin panel -> servers to find the ID of this server)
                "ServerID"              "2"
        }

        /*
         * Generic menu options for if a reason isn't supplied in a ban
         * Without a supplied reason the ban will never be written to the database
         */
        "BanReasons"
        {
                "Hacking"       "Hacking"
                "Exploit"       "General Exploit of Game/Map/Server"
                "TK"    "Team Killing"
                "TF"    "Team Flashing"
                "CommSpam"      "Spamming Mic/Chat"
                "BadSpray"      "Inappropriate Spray"
                "BadLang"       "Inappropriate Language"
                "BadName"       "Inappropriate Name"
                "IgnoreAdmin"   "Ignoring Admins"
        "Stacking"      "Team Stacking"
                "Own Reason"    "Own Reason"
        }
        
        /*
         * Submenu options for when "Hacking" is selected
         * If "Hacking" is removed from the menu above this will not be accessable
         */
        "HackingReasons"
        {
                "Aimbot"        "Aimbot"
                "Antirecoil"    "Anti Recoil"
                "Wallhack"      "Wallhack"
                "Spinhack"      "Spinhack"
                "Speedhack"     "Speedhack"
                "Multi-Hack"    "Multi-Hack"
                "No Smoke"      "No Smoke"
                "No Flash"      "No Flash"
        }
}


Der Game-Server wurde mehrfach neugestartet.
Wieso kann ich das Ingame-Adminmenü über den befehl sm_admin nicht aufrufen?
Weiß jemand eine Lösung für dieses Problem..

Gruß Fanta

Beiträge: 2 498

Wohnort: Schwelm

Beruf: Immobilien-Verwalter / Serveradministrator

Rootserver vorhanden: Nein

  • Nachricht senden

2

Mittwoch, 13. Januar 2010, 16:28

Re: [CSS] Kein Adminmenü (sm_admin) in verbindung mit Sourcebans

Ist das ein reiner WarServer? Ansonsten schmeiss zunächst mal zBlock runter. Es sollte der Welt endlich mal bei RTL Aktuell und den ProSieben Nachrichten gesagt werden, das zBlock kein AntiCheat Programm ist und nur auf reinen ESL War Servern für die Einhaltung aller Werte sorgt.

3

Mittwoch, 13. Januar 2010, 16:58

Re: [CSS] Kein Adminmenü (sm_admin) in verbindung mit Sourcebans

Hi,

nein es ist ein Public..
ok z_block ist Deinstalliert...
Server Neu gestartet...


Quellcode

1
2
] sm_admin
[SM] Du hast keinen Zugriff auf diesen Befehl!.

4

Mittwoch, 13. Januar 2010, 17:35

Re: [CSS] Kein Adminmenü (sm_admin) in verbindung mit Sourcebans

hast du mal in deiner admin.cfg nachgeschaut, ob dort auch die admins eingetragen sind.

Das Leben ist eine lange Reihe von Zimmern und die Menschen auf die wir in den Zimmern treffen, bestimmen unser Leben!

5

Mittwoch, 13. Januar 2010, 23:23

Re: [CSS] Kein Adminmenü (sm_admin) in verbindung mit Sourcebans

Danke für eure Hilfe..

ich habe Sourcebans jetzt einfach Neu installiert, bis jetzt funktioniert alles...


Gruß Fanta