first off, great plugin!

have been looking for something like this for a long time. i especially like the banned_name function.
i am having the same lag problem using the SQL version. everything works fine, but when players connect, don't agree to the terms, etc. the whole server lags.
i'm new to SQL, but i was curious if this mod is querrying the SQL every time someone connects / chooses an option? our website is on a seperate server (dual quad core cpu's) and is pretty fast the majority of the time, but does slow down occasionally. could that cause the server to lag if it can't connect quick enough?
if so, is it possible to only querry at mapchange? our forum mod does that for stats.
here is our ClientChecker.cfg:
Code:
// Show (dis)connect message of players [0 = Disabled, 1 = Enabled]
cc_connectmsg 1
// Show info in console when a players joins the server
cc_showinfo 1
// Show country in player connect message
// This uses the AMXModX GeoIP module so it needs to be enabled in modules.ini
cc_showgeoip 1
// Show message about invalid settings to:
// 0 = Disabled
// 1 = AMX Admins
// 2 = Checked Player + AMX Admins
// 3 = All players
cc_messagetype 1
// Show agreement menu [0 = No agreement, 1 = Show agreement]
cc_agreemenu 1
// Menu time out in seconds
cc_agreetimeout 30
// How long the agreement of a client should be saved
cc_daystosave 999
// Rate Checker [0 = Disabled, 1 = Enabled]
cc_ratecheck 1
// Ping Checker [0 = Disabled, 1 = Enabled]
cc_pingcheck 0
// Cvar Checker [0 = Disabled, 1 = Enabled]
cc_cvarcheck 1
// Logging [0 = Disabled, 1 = Enabled]
cc_writelog 1
// Write settings to config [0 = Disabled, 1 = Enabled]
cc_writecfg 1
// Maximum allowed invalid cvars before kick
cc_maxinvalid 0
// Check delay between checks in seconds
cc_chkdelay 4
// Maximum items to check at once
cc_maxitems 5
// Maximum ping allowed
cc_maxping 500
// Ping check cycles before kick
cc_maxpingwarns 6
// Minimum Allowed rates
cc_minupdaterate 20
cc_mincmdrate 20
cc_minrate 10000
// SQL Stuff
cc_sqlhost "209.31.112.62"
cc_sqldbname "savage9r_ClientChecker"
cc_sqluser "savage9r_SID"
cc_sqlpass "xxxxxxxxx"
thanks
__________________