Raised This Month: $ Target: $400
 0% 

[L4D & L4D2] Custom Player Stats v1.4B121


Post New Thread Reply   
 
Thread Tools Display Modes
Dude
Junior Member
Join Date: Dec 2010
Old 02-03-2011 , 11:51   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1191

Not this.
Important is part of code like this:
Code:
---- Host_Changelevel ----
L 02/03/2011 - 03:10:47: -------- Mapchange to c5m5_bridge --------
L 02/03/2011 - 03:10:47: Error log file session closed.
L 02/03/2011 - 03:10:47: [SM] Plugin encountered error 25: Call was aborted
L 02/03/2011 - 03:10:47: [SM] Native "SetFailState" reported: Use this in Left 4 Dead only.
L 02/03/2011 - 03:10:47: [SM] Displaying call stack trace for plugin "l4d_ff_limit.smx":
L 02/03/2011 - 03:10:47: [SM]   [0]  Line 146, /home/groups/alliedmodders/forums/files/4/7/3/0/8/37629.attach::OnPluginStart()
L 02/03/2011 - 03:10:47: [SM] Plugin encountered error 25: Call was aborted
L 02/03/2011 - 03:10:47: [SM] Native "SetFailState" reported: Use this Left 4 Dead only.
L 02/03/2011 - 03:10:47: [SM] Displaying call stack trace for plugin "sm_away.smx":
L 02/03/2011 - 03:10:47: [SM]   [0]  Line 20, /home/groups/alliedmodders/forums/files/4/7/7/7/7/37070.attach::OnPluginStart()
And be sure, you need to restart server after any plugin installation.
__________________
Gamers Community: gamesteams.com/Dude.html
Dudeists Steam Gropup server with stats http://left4bowl.clanservers.com
Dude is offline
tbird412
Junior Member
Join Date: Feb 2011
Location: Atlanta
Old 02-03-2011 , 13:21   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1192

EDIT: Just noticed your new post, will go play two rounds and see


The only log file I could find anywhere was "gsconsole.log" in my server's left4dead2 root folder. I don't really see any stats or smx error codes other than the invalid path for my databases.cfg file. The file is at "/left4dead2/left4dead2/addons/sourcemod/configs/" so not sure what path I should put in my server.cfg file to get that to work out right.

Here's the log stuff from that log file (again, not even sure if this is the right log file, but it's the only one I could find anywhere) ...

I left out a long list of "WARNING: Couldn't find any entities named fire_ballroom_10-sound, which ...." stuff it had in the log....
Code:
WARNING: orator at 454 5671 2684 missing modelname
Attempting to precache model, but model name is NULL
Commentary: Loading commentary data from maps/c1m1_hotel_commentary.txt. 
Initializing Director's script
Setting breakpad minidump AppID = 550
Looking up breakpad interfaces from steamclient
Calling BreakpadMiniDumpSystemInit
Failed to load Steam ServiceServiceStart: failed to startexec: couldn't exec banned_user.cfg
exec: couldn't exec banned_ip.cfg
exec //*/cfg/../addons/sourcemod/configs/databases.cfg: invalid path.
Connection to Steam servers successful.
   VAC secure mode is activated.
And my current server.cfg file is ...
Code:
// You should change these
hostname BlackKnightsClan.com - L4D2
rcon_password xxxxxxxx

// This states how players should contact you.  Use your email or website
sv_contact [email protected]

// Number of rounds to play (only versus)
mp_roundlimit 3

// Server Logging
sv_log_onefile 0 //Log server information to only one file.
sv_logbans 1 //Log server bans in the server logs.
sv_logecho 0 //Echo log information to the console.
sv_logfile 1 //Log server information in the log file.
sv_logflush 0 //Flush the log file to disk on each write (slow).
sv_logsdir "logs" //Folder in the game directory where server logs will be stored.

//Fix to get your server onto the master lists
setmaster add 68.142.72.250:27011
setmaster add 72.165.61.189:27011

// If you want to use a search key to find the server in the lobby, uncomment and edit this line
sv_search_key XXXXXXXXXX

// If you want to use this as a steam group server, uncomment this and add your group ID
sv_steamgroup #####
// If you want to restrict this to steam group members only, uncomment this
sv_steamgroup_exclusive 0

sv_allow_lobby_connect_only 0

// You shouldn't need to change anything below this in most cases
sv_alltalk 0
// If you enable cheats, people will be able to take over your server
sv_cheats 0
sv_consistency 1
sv_maxcmdrate 101
sv_maxrate 30000
sv_visiblemaxplayers -1

exec banned_user.cfg
exec banned_ip.cfg
exec ../addons/sourcemod/configs/databases.cfg

Last edited by tbird412; 02-03-2011 at 13:22. Reason: update
tbird412 is offline
Send a message via ICQ to tbird412
tbird412
Junior Member
Join Date: Feb 2011
Location: Atlanta
Old 02-03-2011 , 13:42   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1193

OK, I'm getting somewhere now. And I am assuming it is because of the path of my databases.cfg in my server.cfg

Here's the error area from the new log (If you see XXXX it is just me editing out my info for public) ...

Code:
Master at 68.142.72.250:27011 already in list
Master at 72.165.61.189:27011 already in list
exec: couldn't exec banned_user.cfg
exec: couldn't exec banned_ip.cfg
exec: couldn't exec /addons/sourcemod/configs/databases.cfg
L 02/03/2011 - 13:38:59: [l4d_stats.smx] Failed to connect to database: [1045]: Access denied for user 'XXXXXX'@'68.232.179.10' (using password: YES)
L 02/03/2011 - 13:38:59: [SM] Plugin encountered error 25: Call was aborted
L 02/03/2011 - 13:38:59: [SM] Native "SetFailState" reported: Connecting to database failed. Read error log for further details.
L 02/03/2011 - 13:38:59: [SM] Displaying call stack trace for plugin "l4d_stats.smx":
L 02/03/2011 - 13:38:59: [SM]   [0]  Line 996, /home/groups/alliedmodders/forums/files/5/2/0/8/2/80462.attach::OnConfigsExecuted()
ConVarRef mat_hdr_manual_tonemap_rate doesn't point to an existing ConVar
EDIT: Could I maybe just move my databases.cfg file into the root directory or wherever it looks when you do an "exec" command without a path?

Last edited by tbird412; 02-03-2011 at 14:14.
tbird412 is offline
Send a message via ICQ to tbird412
Dude
Junior Member
Join Date: Dec 2010
Old 02-03-2011 , 14:24   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1194

Quote:
Originally Posted by tbird412 View Post
OK, I'm getting somewhere now. And I am assuming it is because of the path of my databases.cfg in my server.cfg

Here's the error area from the new log (If you see XXXX it is just me editing out my info for public) ...

Code:
Master at 68.142.72.250:27011 already in list
exec: couldn't exec /addons/sourcemod/configs/databases.cfg
L 02/03/2011 - 13:38:59: [l4d_stats.smx] Failed to connect to database: [1045]: Access denied for user 'XXXXXX'@'68.232.179.10' (using password: YES)
EDIT: Could I maybe just move my databases.cfg file into the root directory or wherever it looks when you do an "exec" command without a path?

Yes databases.cfg path is bad.

Move this file (databases.cfg) to left4dead2/cfg/ directiory, and in config just
Code:
exec databases.cfg
should be ok.
__________________
Gamers Community: gamesteams.com/Dude.html
Dudeists Steam Gropup server with stats http://left4bowl.clanservers.com
Dude is offline
tbird412
Junior Member
Join Date: Feb 2011
Location: Atlanta
Old 02-03-2011 , 15:42   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1195

You are the best! It works fine now!

Now if only I could get the stupid sv_search_key to work. But beggers can't be choosers. I can't thank you enough. My host was willing to just give up my business to avoid even trying to solve the problem. And you did it for free. Thanks a bunch!
tbird412 is offline
Send a message via ICQ to tbird412
Dude
Junior Member
Join Date: Dec 2010
Old 02-03-2011 , 15:50   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1196

Quote:
Originally Posted by tbird412 View Post
You are the best! It works fine now!

Now if only I could get the stupid sv_search_key to work. But beggers can't be choosers. I can't thank you enough. My host was willing to just give up my business to avoid even trying to solve the problem. And you did it for free. Thanks a bunch!
LOL - of course you can donate our server! (joking)

Same problem was here, enjoy. Im not using sv_search_key. Just in game (lobby) set group server - not best or dedicater and select your server from list. If is online, should be on list.
__________________
Gamers Community: gamesteams.com/Dude.html
Dudeists Steam Gropup server with stats http://left4bowl.clanservers.com
Dude is offline
RasterMan
Senior Member
Join Date: Mar 2004
Location: Luton, UK
Old 02-04-2011 , 07:31   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1197

1.4B105

//// l4d_stats.sp
// l4d_stats.sp(1840) : warning 213: tag mismatch
// l4d_stats.sp(184 : warning 213: tag mismatch
// l4d_stats.sp(1850) : warning 213: tag mismatch
// l4d_stats.sp(1874) : warning 213: tag mismatch
// l4d_stats.sp(1876) : warning 213: tag mismatch
// l4d_stats.sp(2030) : warning 213: tag mismatch
// l4d_stats.sp(2032) : warning 213: tag mismatch
// l4d_stats.sp(2042) : warning 213: tag mismatch
// l4d_stats.sp(2044) : warning 213: tag mismatch
// l4d_stats.sp(2429) : warning 213: tag mismatch
// l4d_stats.sp(2434) : warning 213: tag mismatch
// Header size: 14588 bytes
// Code size: 218096 bytes
// Data size: 211860 bytes
// Stack/heap size: 16384 bytes; Total requirements: 460928 bytes
//
// 11 Warnings.
//
// Compilation Time: 1.22 sec
// ----------------------------------------
__________________
RasterMan is offline
Send a message via MSN to RasterMan
bzellinger
Member
Join Date: Sep 2010
Old 02-05-2011 , 14:29   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1198

Is the createtables.php included in the zip file? I can't seem to find it.
bzellinger is offline
muukis
Veteran Member
Join Date: Apr 2009
Old 02-05-2011 , 17:04   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1199

Quote:
Originally Posted by RasterMan View Post
1.4B105

//// l4d_stats.sp
// l4d_stats.sp(1840) : warning 213: tag mismatch
// l4d_stats.sp(184 : warning 213: tag mismatch
// l4d_stats.sp(1850) : warning 213: tag mismatch
// l4d_stats.sp(1874) : warning 213: tag mismatch
// l4d_stats.sp(1876) : warning 213: tag mismatch
// l4d_stats.sp(2030) : warning 213: tag mismatch
// l4d_stats.sp(2032) : warning 213: tag mismatch
// l4d_stats.sp(2042) : warning 213: tag mismatch
// l4d_stats.sp(2044) : warning 213: tag mismatch
// l4d_stats.sp(2429) : warning 213: tag mismatch
// l4d_stats.sp(2434) : warning 213: tag mismatch
// Header size: 14588 bytes
// Code size: 218096 bytes
// Data size: 211860 bytes
// Stack/heap size: 16384 bytes; Total requirements: 460928 bytes
//
// 11 Warnings.
//
// Compilation Time: 1.22 sec
// ----------------------------------------
Yeah, there´s still some cleaning up to do.

Quote:
Originally Posted by bzellinger View Post
Is the createtables.php included in the zip file? I can't seem to find it.
install.php
__________________
Monster Hunter

Though certainly not superhuman, the man's prowess inspires an excess of whispered rumors. But those rumors remain in the realm of speculation.
muukis is offline
tbird412
Junior Member
Join Date: Feb 2011
Location: Atlanta
Old 02-06-2011 , 23:27   Re: [L4D & L4D2] Custom Player Stats v1.4B105
Reply With Quote #1200

One quick sort of off topic question (though it was brought to my attention from reading the instructions for this mod) ... How do you get flagged with the admin flag to your server or whatever? I know how to use RCON from within the game. Booting or kicking etc. That works fine for me. But what is this admin root flag thing and how do I do that to myself so I can use some of these SM_ admin commands?
tbird412 is offline
Send a message via ICQ to tbird412
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 17:22.


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