Raised This Month: $51 Target: $400
 12% 

What is this in my server console ?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
JAWAWA
Junior Member
Join Date: May 2013
Old 06-04-2013 , 10:16   What is this in my server console ?
Reply With Quote #1



[L4D2] Those Unknown commands....what are they doing there ???

Last edited by JAWAWA; 06-04-2013 at 14:18. Reason: /
JAWAWA is offline
winniethepooh
SourceMod Donor
Join Date: Sep 2012
Old 06-04-2013 , 15:05   Re: What is this in my server console ?
Reply With Quote #2

One or more of your cfg files for a plugin is not commented properly and is trying to execute comments like the defaults and ranges of a variable.

Meticulously go through your .cfg's in /cfg/sourcemod/ and check for uncommented or incorrectly comments files.

Maybe check the one for l4d2_storm.cfg in particular since l4d2_storm_version executes between all of your unknown commands

Last edited by winniethepooh; 06-04-2013 at 15:08.
winniethepooh is offline
killjoy64
AlliedModders Donor
Join Date: Apr 2012
Location: 81.773644,-46.933594
Old 06-04-2013 , 22:10   Re: What is this in my server console ?
Reply With Quote #3

If you dont find it, try going through the .cfg in your cfg folder not including sourcemod
__________________
killjoy64 is offline
nomy
Senior Member
Join Date: Dec 2009
Location: United Kingdom
Old 06-05-2013 , 13:02   Re: What is this in my server console ?
Reply With Quote #4

I think it would be inside cfg/sourcemod/ folder. Some plugin is actually running a cfg file not ignoring the commented lines... Just my guess.

Here is an example of code in weapon restrict plugin:

PHP Code:
//Config loader. Loads configs for specific map or prefix.
CheckConfig()
{
    
decl String:file[300];
    
decl String:map[100];
    
decl String:pref[10];
    
GetCurrentMap(mapsizeof(map));
    
BuildPath(Path_SMfilesizeof(file), "configs/restrict/%s.cfg"map);
    if(!
RunFile(file))
    {
        
SplitString(map"_"prefsizeof(pref));
        
BuildPath(Path_SMfilesizeof(file), "configs/restrict/%s_.cfg"pref);
        
RunFile(file);
    }

nomy is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 00:00.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode