Sie sind nicht angemeldet.

janhugolino

Fortgeschrittener

  • »janhugolino« ist der Autor dieses Themas

Beiträge: 302

Wohnort: Schweiz

Beruf: Zimmermann

Rootserver vorhanden: Nein

  • Nachricht senden

1

Samstag, 11. Dezember 2010, 12:02

-insecure Modus

Hi Leutz

Also um ein par Scripts zu testen SM/ES habe ich mal ES und SM installiert also das ganze im -insecure Modus.
Dann habe ich mich als Admin eingetragen

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
//
// READ THIS CAREFULLY! SEE BOTTOM FOR EXAMPLES
//
// For each admin, you need three settings:
//  "identity"		"permissions"		"password"
//
// For the Identity, you can use a SteamID or Name.  To use an IP address, prepend a ! character.
// For the Permissions, you can use a flag string and an optional password.
//
// PERMISSIONS:
//  Flag definitions are in "admin_levels.cfg"
//  You can combine flags into a string like this:
//  "abcdefgh"
//
//  If you want to specify a group instead of a flag, use an @ symbol.  Example:
//  "@Full Admins"
//
//	You can also specify immunity values.  Two examples:
//	"83:abcdefgh"			//Immunity is 83, flags are abcdefgh
//	"6:@Full Admins"		//Immunity is 6, group is "Full Admins"
//
//	Immunity values can be any number.  An admin cannot target an admin with 
//	a higher access value (see sm_immunity_mode to tweak the rules).  Default 
//  immunity value is 0 (no immunity).
//
// PASSWORDS:
//  Passwords are generally not needed unless you have name-based authentication.
//  In this case, admins must type this in their console:
//
//   setinfo "KEY" "PASSWORD"
//
//  Where KEY is the "PassInfoVar" setting in your core.cfg file, and "PASSWORD"
//  is their password.  With name based authentication, this must be done before
//  changing names or connecting.  Otherwise, SourceMod will automatically detect
//  the password being set.
//
////////////////////////////////
// Examples: (do not put // in front of real lines, as // means 'comment')
//
//   "STEAM_0:1:16"		"bce"				//generic, kick, unban for this steam ID, no immunity
//   "!127.0.0.1"		"99:z"				//all permissions for this ip, immunity value is 99
//   "BAILOPAN"			"abc"	"Gab3n"		//name BAILOPAN, password "Gab3n": gets reservation, generic, kick
//
////////////////////////////////
 

"STEAM_0:0:27912157" "99:z" // Jan 


Dann starte ich CSS und erstell ein Server und veruche das Admin Menu aufzumachen dann kommt immer diese Meldung in der Console.

[SM] This command can only be used in-game.

Ist es einfach nicht möglich Admin zu bekommen im Offline Modus oder habe ich irgend ein Fehler gemacht beim installieren von SM.

Lg. Jan

rain

Super Moderator

Beiträge: 1 410

Wohnort: Lutherstadt Wittenberg

Beruf: Anlagenmechaniker

Rootserver vorhanden: Ja

  • Nachricht senden

2

Samstag, 11. Dezember 2010, 12:50

Re: -insecure Modus

Quellcode

1
2
3
4
5
6
7
8
9
10
"Admins"
{
	"jan"
	{
		"auth"		"steam"
		"identity"		"STEAM_0:0:27912157"
		"flags"		"z"
		"immunity"		"99"
	}
}


Versuche mal das!





3

Samstag, 11. Dezember 2010, 13:08

Re: -insecure Modus

im offline-modus hast du keine Steam-id , oder?

ich weiss nicht genau wie es bei SM ist aber bei mani musste man früher dann die ip im lan statt steam-id eintragen,
wir bei SM so ähnlich sein denke ich.
Für LEute die nicht verlieren können, cheatet die ganze Welt!

=Freie Allianz kranker Krieger= Onlinefungaming seit 1999

4

Samstag, 11. Dezember 2010, 14:23

Re: -insecure Modus

Im Offlinemodus ist das Format

Bsp:
"!192.168.xxx.xxx"

Also deine IP.

CHUluck4

Fortgeschrittener

Beiträge: 313

Wohnort: düsseldorf

Beruf: Industriemechaniker

  • Nachricht senden

5

Samstag, 11. Dezember 2010, 14:24

Re: -insecure Modus

Im Offlinemodus lautet deine SteamID STEAM_ID_LAN zumindest wenn du in Sourcemod Admin sein möchtest.

Nur mal zum besseren verständniss, du hast aber schon einen dedicated laufen???
Oder hast du einfach nur das Game gestartet und hast dann InGame auf Server erstellen geklickt???

Ich glaube nämlich nicht das es funktioniert wenn du keinen dedicated Server hast ;)

janhugolino

Fortgeschrittener

  • »janhugolino« ist der Autor dieses Themas

Beiträge: 302

Wohnort: Schweiz

Beruf: Zimmermann

Rootserver vorhanden: Nein

  • Nachricht senden

6

Samstag, 11. Dezember 2010, 14:47

Re: -insecure Modus

Ich habe einfach css im -insecure Modus gestartet und dann im Game "server erstellen" gemacht

Also thx für die vielen Antworten ich werd die jetzt mal alle ausprobieren.

janhugolino

Fortgeschrittener

  • »janhugolino« ist der Autor dieses Themas

Beiträge: 302

Wohnort: Schweiz

Beruf: Zimmermann

Rootserver vorhanden: Nein

  • Nachricht senden

7

Samstag, 11. Dezember 2010, 15:09

Re: -insecure Modus

Ok habe jetzt mal Rain's Code genommen und es getesteht mir aufgefallen dies auch nicht geht.

Dann habe !admin mal manuel eingegben. Und es ging :ba7:.
Aber leider ging das Menu nur auf und wo ich dann eine Funktion ausgewählt habe hats sich das Menu geschlossen.

Danach habs ich es mit meiner Variante nochmals verucht und ebenfals manuell und es ging dann aber komplett.

Ka warum aber Hauptsache es funzzt :bigri:

8

Montag, 13. Dezember 2010, 18:40

Re: -insecure Modus

Sind das normalerweise nicht 2 Dateien in denen man die Eintragungen zu den Admins vornimmt ??

admins.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
/**
 * 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"
{
	"Admin 1"
	{
		"auth"		"steam"
		"identity"		"STEAM_X:X:XXXXXXXX"
		"flags"		"z"
		"immunity"		"100"
	}
	"Admin 2"
	{
		"auth"		"steam"
		"identity"		"STEAM_X:X:XXXXXXXX"
		"flags"		"z"
		"immunity"		"100"		
	}
}

admins_simple.ini

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
//
// READ THIS CAREFULLY! SEE BOTTOM FOR EXAMPLES
//
// For each admin, you need three settings:
//  "identity"		"permissions"		"password"
//
// For the Identity, you can use a SteamID or Name.  To use an IP address, prepend a ! character.
// For the Permissions, you can use a flag string and an optional password.
//
// PERMISSIONS:
//  Flag definitions are in "admin_levels.cfg"
//  You can combine flags into a string like this:
//  "abcdefgh"
//
//  If you want to specify a group instead of a flag, use an @ symbol.  Example:
//  "@Full Admins"
//
//	You can also specify immunity values.  Two examples:
//	"83:abcdefgh"			//Immunity is 83, flags are abcdefgh
//	"6:@Full Admins"		//Immunity is 6, group is "Full Admins"
//
//	Immunity values can be any number.  An admin cannot target an admin with 
//	a higher access value (see sm_immunity_mode to tweak the rules).  Default 
//  immunity value is 0 (no immunity).
//
// PASSWORDS:
//  Passwords are generally not needed unless you have name-based authentication.
//  In this case, admins must type this in their console:
//
//   setinfo "KEY" "PASSWORD"
//
//  Where KEY is the "PassInfoVar" setting in your core.cfg file, and "PASSWORD"
//  is their password.  With name based authentication, this must be done before
//  changing names or connecting.  Otherwise, SourceMod will automatically detect
//  the password being set.
//
////////////////////////////////
// Examples: (do not put // in front of real lines, as // means 'comment')
//
//   "STEAM_0:1:16"		"bce"				//generic, kick, unban for this steam ID, no immunity
//   "!127.0.0.1"		"99:z"				//all permissions for this ip, immunity value is 99
//   "BAILOPAN"			"abc"	"Gab3n"		//name BAILOPAN, password "Gab3n": gets reservation, generic, kick
//
////////////////////////////////
 
"STEAM_X:X:XXXXXXX"	"z"		//Admin 1
"STEAM_X:X:XXXXXXX"	"z"		//Admin 2
Ich habe die Admins manuell bisher immer auf diese Weise angelegt.
Den Unterschied beider Datei habe ich auch nie verstanden.
+88_________________+880______
_+880_______________++80______
_++88______________+880_______
_++88_____________++88________
__+880___________++88_________
__+888_________++880__________
__++880_______++880___________
__++888_____+++880____________
__++8888__+++8880++88_________
__+++8888+++8880++8888________
___++888++8888+++888888+80____
___++88++8888++8888888++888___
___+++++888888fx8888888888__
____++++++888888888888888888__
_____++++++++000888888888888__
_____+++++++00008f8888888888__
______+++++++00088888888888___
_______+++++++0888f8888888____
_______+++++++08888l888888____
________+++++++8888888888_____

Ich bin das Arschloch das dir direkt die Meinung sagt, um dir die Peinlichkeit zu ersparen.

HSFighter

Administrator

Beiträge: 1 517

Wohnort: Flensburg

Beruf: Industrieelektroniker

Rootserver vorhanden: Nein

  • Nachricht senden

9

Montag, 13. Dezember 2010, 18:48

Re: -insecure Modus

Zitat von »"wiskyjim"«

Den Unterschied beider Datei habe ich auch nie verstanden.


Wenn du mit Admin-Gruppen arbeitest (admin_groups.cfg), dann benötigst du die admins.cfg .

MfG



-
Anti Cheat: www.smacbans.com
Kein direkter Support per PM (nur auf Anforderung)