You are not logged in.

Syphon

Intermediate

  • "Syphon" started this thread

Posts: 175

Location: Speyer

  • Send private message

1

Tuesday, August 25th 2009, 12:17pm

Probleme mit Sourcemod (Anfänger)

Hallo ihr lieben,

Ich habe mich komplett von mani verabschiedet und möchte unbedingt von nun an mit SM arbeiten.. Scheint für mich sehr interessant zu sein.

Jetzt habe ich aber schon mein erstes Problem. Ich habe schon einige Sachen versucht aber ich bekomme es einfach nicht hin.
Metamod & SM laufen schon einwandfrei.

Bin gerade dabei mich als Hauptadmin einzutragen aber wenn ich meine Admin Taste (die gleiche wie damals bei mani drücke, tut sich leider nichts)
In den log files von SM bekomme ich diese Nachricht:

Spoiler Spoiler

L 08/24/2009 - 22:57:26: SourceMod error session started
L 08/24/2009 - 22:57:26: Info (map "de_dust2") (file "errors_20090824.log")
L 08/24/2009 - 22:57:26: [admin-flatfile.smx] Error(s) detected parsing addons/sourcemod/configs/admins.cfg
L 08/24/2009 - 22:57:26: [admin-flatfile.smx] (line 44) Section beginning without a matching ending


Der Fehler scheint irgendwie in line 44 zu sein, wenn ich es richtig sehe.. aber leider weiss ich nicht was ich damit anfangen soll? keinahn

Hier meine Admin.cfg. Ich hoffe der flag ist auch richtig gestezt. In der admin.levels.cfg steht "z" als Hauptadmin für alle flags, bin ich da richtig?
Dort steht aber auch was als root .. Ich habe keinen root Server.. nur einen gemieteten Server.. Ist das egal ??

Hier meine admin.cfg:

Source code

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
/**
 * USE THIS SECTION TO DECLARE DETAILED ADMIN PROPERTIES.
 *
 * Each admin should have its own "Admin" section, followed by a name.
 * The name does not have to be unique.
 *
 * Available properties: (Anything else is filtered as custom)
 *      "auth"          - REQUIRED - Auth method to use.  Built-in methods are:
 *                        "steam"  - Steam based authentication
 *                        "name"   - Name based authentication
 *                        "ip"	- IP based authentication
 *                        Anything else is treated as custom.
 *					 Note: Only one auth method is allowed per entry.
 *
 *      "identity"      - REQUIRED - Identification string, for example, a steamid or name.
 *					 Note: Only one identity is allowed per entry.
 *
 *      "password"      - Optional password to require.
 *      "group"         - Adds one group to the user's group table.
 *      "flags"         - Adds one or more flags to the user's permissions.
 *		"immunity"		- Sets the user's immunity level (0 = no immunity).
 *						  Immunity can be any value.  Admins with higher 
 *						  values cannot be targetted.  See sm_immunity_mode 
 *						  to tweak the rules.  Default value is 0.
 *
 * Example:
	"BAILOPAN"
	{
		"auth"			"steam"
		"identity"		"STEAM_0:1:16"
		"flags"			"abcdef"
	}
 *
 */
Admins
{
	"Mein Name"
	{
		"auth"			"steam"
		"identity"		"STEAM_0:1:12345678"
		"flags"			"z"
}


Ich hoffe ihr könnt mir dabei weiter helfen?

Lg
Syphon

CHUluck4

Intermediate

Posts: 313

Location: düsseldorf

Occupation: Industriemechaniker

  • Send private message

2

Tuesday, August 25th 2009, 1:57pm

Re: Probleme mit Sourcemod (Anfänger)

du hast ne klammer vergessen.

Admins
{
"Mein Name"
{
"auth" "steam"
"identity" "STEAM_0:1:12345678"
"flags" "z"
}
}

die rote fehlt bei dir.

außerdem kannst du dir noch deine imumunity angeben.

Admins
{
"Mein Name"
{
"auth" "steam"
"identity" "STEAM_0:1:12345678"
"flags" "z"
"immunity" "100"
}
}

Syphon

Intermediate

  • "Syphon" started this thread

Posts: 175

Location: Speyer

  • Send private message

3

Tuesday, August 25th 2009, 4:00pm

Re: Probleme mit Sourcemod (Anfänger)

Aaah Supi .. danke dir ;) .. Ja daran war es gelegen ..

Wie ich aber bemerkt habe kann ich das Admin menü nur über console via sm_admin öffnen ..
Gibt es nicht die möglichkeit dies mit einer bind Taste wie damals bei mani zu öffnen ?? z.B. bind "F3" Admin ??

Und .. ich habe jetzt gemerkt, dass bei sourcemod die immunity Gruppe fehlt wie z.B. damals bei mani wieder :)

Dort hatte ich es so eingestellt.. das unsere Admins immun gegen afk Kick waren im Spectator.
Geht das bei SM auch ??

Lg
Syphon

CHUluck4

Intermediate

Posts: 313

Location: düsseldorf

Occupation: Industriemechaniker

  • Send private message

4

Tuesday, August 25th 2009, 4:10pm

Re: Probleme mit Sourcemod (Anfänger)

du kannst doch den Befehl sm_admin auf eine taste binden.

bind "-" "sm_admin"

Du musst du dir erstmal ein AFK kicker drauf machen.
such mal hier
http://www.sourcemod.net/plugins.php">http://www.sourcemod.net/plugins.php</a>

und dort kannst du es dann einstellen, ob auch Admins davon betroffen sein sollen oder nicht.

Syphon

Intermediate

  • "Syphon" started this thread

Posts: 175

Location: Speyer

  • Send private message

5

Tuesday, August 25th 2009, 4:31pm

Re: Probleme mit Sourcemod (Anfänger)

Quoted from ""CHUluck4""

du kannst doch den Befehl sm_admin auf eine taste binden.
bind "-" "sm_admin"


Och meín Gott !! shaem2 shaem2 ..

Brutal .. stimmt .. Ich glaube ich sitze heute schon zu lange am Rechner wegen dem Server.. Wird wohl Zeit für eine Pause !!

Bin schon ganz matt in der Birne :-D ..

Danke dir trotzdem für deine Antwort ;) ..

Lg
Syphon

M.Matrix

Trainee

Posts: 58

Location: Schutterwald

Occupation: KFZ Mechatroniker

  • Send private message

6

Wednesday, August 26th 2009, 6:33pm

Re: Probleme mit Sourcemod (Anfänger)

Hilfe habe auch ein Problem damit bei meinem kommt immer die Fehlermeldung.

L 08/25/2009 - 23:00:18: SourceMod error session started
L 08/25/2009 - 23:00:18: Info (map "dod_orange_tower_arena_etd") (file "errors_20090825.log")
L 08/25/2009 - 23:00:18: [DUKEHACKS] Could not locate Regenerate - Disabling detour
L 08/25/2009 - 23:17:43: Error log file session closed.

Steht voll auf dem schlauch laufen kakt der Server ab und es kommt die Fehlermeldung ind den logs.

HILFEEEEEEEEEEEEEEE
DOD Source
System Linux
gemieteter Server
Mani Admin Plugin 1.2BetaS-hotfix
//EventScripts v2.1.0.281
Metamod Source v1.7.1V
SourceMod v1.2.2-dev
Dukehacks für Sourcemod V1.2.2-dev
HLSW

Merible

Trainee

Posts: 86

Location: Ketsch

wcf.user.option.userOption53: Ja

  • Send private message

7

Wednesday, August 26th 2009, 7:55pm

Re: Probleme mit Sourcemod (Anfänger)

Den Error kannst du ignorieren!
Die Fehlermeldung bezieht sich auf TF2, genauer gesagt auf
"Regenerate" was ja bei DoDS nicht gibt.

M.Matrix

Trainee

Posts: 58

Location: Schutterwald

Occupation: KFZ Mechatroniker

  • Send private message

8

Thursday, August 27th 2009, 5:09pm

Re: Probleme mit Sourcemod (Anfänger)

ja und was kann ich nun dagegen machen?

Leider ist es schon beschissen wenn dauernd de Server abstützt. :-)
DOD Source
System Linux
gemieteter Server
Mani Admin Plugin 1.2BetaS-hotfix
//EventScripts v2.1.0.281
Metamod Source v1.7.1V
SourceMod v1.2.2-dev
Dukehacks für Sourcemod V1.2.2-dev
HLSW

Merible

Trainee

Posts: 86

Location: Ketsch

wcf.user.option.userOption53: Ja

  • Send private message

9

Friday, August 28th 2009, 1:05pm

Re: Probleme mit Sourcemod (Anfänger)

Der Fehler kommt dann aber nicht von Dukehacks Extensions. Da muss wo anders der Fehler liegen.
Des weiteren lade dir mal die neue Stable Version von SM runter. Kam die nacht raus.
Version 1.2.3 ( http://www.sourcemod.net/dl.php?file_id=605&mirror_id=10">http://www.sourcemod.net/dl.php?file_id ... rror_id=10</a> )

Installiere die die dazu gehörige passend kompilierte Dukehacks Extension.
http://forums.alliedmods.net/showpost.php?p=915023&postcount=299">http://forums.alliedmods.net/showpost.p ... tcount=299</a>

Des weiteren Kompiliere deine Plugins auf die Aktuelle SM Version.