
| 
					 | 
				
					Quellcode | 
			
					1 2 3 4  | 
				
					"Plugin"
{
	"file"	"../cstrike/addons/metamod/bin/server"
}
				 | 
			
| 
					 | 
				
					Quellcode | 
			
					1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17  | 
				
					;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 *********** addons/sourcemod/bin/sourcemod_mm  | 
			
Zitat
"Plugin"
{
"file" "../cstrike/addons/metamod/bin/server.so"
}
| 
					 | 
				
					Quellcode | 
			
					1 2 3 4 5  | 
				
					"Metamod Plugin"
{
	"alias"		"sourcemod"
	"file"		"addons/sourcemod/bin/sourcemod_mm"
}
				 | 
			
Benutzerinformationen überspringen
Wohnort: Mönchengladbach
Beruf: Brückenkranführer / Staplerfahrer
Rootserver vorhanden: Nein
								Benutzerinformationen überspringen
Wohnort: Hagen
Beruf: Mechatroniker (didaktische Systeme)
Rootserver vorhanden: Nein
| 
					 | 
				
					Quellcode | 
			
					1  | 
				
					plugin_print; meta_version; meta list; sm plugins list; sm exts list  | 
			
.								| 
					 | 
				
					Quellcode | 
			
					1 2 3 4 5 6 7 8 9  | 
				
					// Die Versionsanzeige von Server Tools ist bei der Orangebox Engine und Linux fehlerhaft. // Deswegen wird Metamod z.B. nicht bei HLSW angezeigt. Schreibt man jedoch die Versionsnummer in die server.cfg, // wird es wieder angezeigt und man kann die Funktionen von Tools wie HLSW wieder nutzen. metamod_version "1.8.2" // Die Versionsanzeige von Server Tools ist bei der Orangebox Engine und Linux fehlerhaft. // Deswegen wird Sourcemod z.B. nicht bei HLSW angezeigt. Schreibt man jedoch die Versionsnummer in die server.cfg, // wird es wieder angezeigt und man kann die Funktionen von Tools wie HLSW wieder nutzen. Sourcemod_version "1.3.3"  |