Hallöchen,
so ein kleines Problemchen beim Metamod bzw. Sourcemod.
Ich habe alles nach den Anleitungen auf der Homepage gemacht.
Egal wie, der Metamod geht IMMER.
Sprich ich gebe "meta" ein und bekomme eine Antwort.
Gebe ich jetzt "sm" ein, passiert nichts. (Methode
sourcemod.vdf)
Gebe ich dann "sm" ein, bekomme ich dort auch die Hilfe angezeigt. (Methode
metaplugins.ini)
Meine "./addons/metamod/sourcemod.vdf" Datei sieht so aus:
|
Quellcode
|
1
2
3
4
5
|
"Metamod Plugin"
{
"alias" "sourcemod"
"file" "addons/sourcemod/bin/sourcemod_mm"
}
|
Allein so geht's leider nicht.
Modifiziere ich die metaplugins.ini auf folgendes, dann geht alles.
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;If your plugin came with a .vdf file, you do not need to use this file.
;
;List one plugin per line. Each line should contain the path to the plugin's binary.
;Any line starting with a ';' character is a comment line, and is ignored.
;
;You do not need to include the _i486.so or .dll part of the file name. Example:
; addons/sourcemod/bin/sourcemod_mm
;You may also put an alias in front of the file, for example:
; sm addons/sourcemod/bin/sourcemod_mm
;Will allow you to use "meta load sm" from the console.
;
;********* LIST PLUGINS BELOW ***********
sourcemod addons/sourcemod/bin/sourcemod_mm
|
Wieso geht die sourcemod.vdf Methode also nicht?