AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   VAC Status Checker (v.2.5.0 8/27/19) (https://forums.alliedmods.net/showthread.php?t=80942)

StevoTVR 11-24-2008 20:55

VAC Status Checker (v.2.5.0 8/27/19)
 
38 Attachment(s)
VAC Status Checker

This plugin checks for VAC, game, Steam Community, and trade bans on the accounts of connecting clients and takes the desired action. Useful for admins who want to block access to people for bad behavior outside the server.

Get plugin | View source | View changelog

https://img.shields.io/travis/stevot...od-vacbans.svg https://img.shields.io/github/releas...od-vacbans.svg https://img.shields.io/github/downlo...bans/total.svg

RequirementsInstallation
  1. Download vacbans-x.x.x.zip
  2. Extract to addons/sourcemod
  3. Set sm_vacbans_apikey to your Steam Web API key
Console Variables

Code:

// Actions to take on detected clients
// Add up the options from the list:
// 1:  Log to sourcemod/logs/vacbans.log
// 2:  Kick
// 4:  Ban
// 8:  Display message to admins
// 16: Display message to all players
// -
// Default: "3"
// Minimum: "0.000000"
// Maximum: "31.000000"
sm_vacbans_actions "3"

// The Steam Web API key used by VAC Status Checker
// https://steamcommunity.com/dev/apikey
// -
// Default: ""
sm_vacbans_apikey ""

// How long in days before re-checking the same client
// -
// Default: "1"
// Minimum: "0.000000"
sm_vacbans_cachetime "1"

// The named database config to use for caching
// -
// Default: "storage-local"
sm_vacbans_db "storage-local"

// Enable Steam Community ban detection
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_vacbans_detect_community_bans "0"

// Enable economy (trade) ban detection (0 = disabled, 1 = bans only, 2 = bans and probation)
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "2.000000"
sm_vacbans_detect_econ_bans "0"

// Enable game ban detection
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_vacbans_detect_game_bans "0"

// Enable VAC ban detection
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_vacbans_detect_vac_bans "1"

// Ignore VAC bans older than this many days (0 = disabled)
// -
// Default: "0"
// Minimum: "0.000000"
sm_vacbans_vac_expire "0"

// Ignore VAC bans issued before this date (format: YYYY-MM-DD)
// -
// Default: ""
sm_vacbans_vac_ignore_before ""



Console Commands
  • sm_vacbans_reset - Clears the cache database. Run from server console or client with sm_rcon access.
  • sm_vacbans_whitelist <add|remove|clear> [SteamID] - Run from the server console or client with sm_rcon access to control the whitelist:
    • add <SteamID> - adds a SteamID for the plugin to ignore
    • remove <SteamID> - removes a SteamID from the whitelist
    • clear - removes all SteamIDs from the whitelist
  • sm_vacbans_list - Lists the bans of connected clients. Admins with access to this also see the connect messages when sm_vacbans_action is 2.


Override Commands
  • sm_vacbans_immunity - Users with access to this command will not be checked for bans (defaults to RCON access)

Notes
  • All account data comes from the Steam Web API.
  • This works with SourceBans.
  • Data is logged to sourcemod/logs/vacbans.log.
Credits
  • voogru - finding the algorithm for converting SteamIDs
  • berni & StrontiumDog - the function that converts SteamIDs
  • Cripix - French translation
  • Dreizehnt - Russian translation

Sillium 11-25-2008 01:05

Re: VAC Status Checker
 
Here's a german Version:

Code:

"Phrases"
{
    "Kicked"
    {
        "de"        "Du wurdest aufgrund einer früheren VAC Verletzung gekickt."
    }
    "Banned"
    {
        "de"        "Du wurdest aufgrund einer früheren VAC Verletzung gebannt."
    }
    "Banned_Server"
    {
        "#format"    "{1:s}"
        "de"        "{1} aufgrund einer früheren VAC Verletzung gebannt."
    }
}


FlyingMongoose 11-25-2008 06:20

Re: VAC Status Checker
 
The problem with this is, there are some odd half-vac bans out there, some old false positives thanks to early versions of x-fire, and a number of other oddities. I have a friend who didn't hack, but he used x-fire, now he's vac banned on all non-source servers that are VAC enabled (IE HL1 based servers). But he can play on source. Ultimately though, it's a nice plugin.

devicenull 11-25-2008 18:58

Re: VAC Status Checker
 
Quote:

Originally Posted by FlyingMongoose (Post 718090)
The problem with this is, there are some odd half-vac bans out there, some old false positives thanks to early versions of x-fire, and a number of other oddities. I have a friend who didn't hack, but he used x-fire, now he's vac banned on all non-source servers that are VAC enabled (IE HL1 based servers). But he can play on source. Ultimately though, it's a nice plugin.

Valve reversed these bans, just like they did for HLSS and Wine.

FlyingMongoose 11-25-2008 21:58

Re: VAC Status Checker
 
I wish that were the case for my friend, they never reversed him. And he did contact support. Their immediate response: "VAC IS NEVER WRONG" (in all caps just like that)

tcviper 11-26-2008 03:18

Re: VAC Status Checker
 
Thought I love what you wrote this plugin can be dangerous as it wasnt supposed to be doing this across engines. If people do something wrong in one engine it affects all games under that engine and not the others. I personally think putting this on servers would be a bad idea.

jack_wade 11-26-2008 13:23

Re: VAC Status Checker
 
Here comes the spanish translation ;)

Code:

"Phrases"
{
    "Kicked"
    {
        "es"        "Has sido kickeado debido a una violación de VAC anterior."
    }
    "Banned"
    {
        "es"        "Has sido baneado debido a una violación de VAC anterior."
    }
    "Banned_Server"
    {
        "#format"    "{1:s}"
        "es"        "{1} baneado debido a una violación de VAC anterior."
    }
}


StevoTVR 11-26-2008 14:46

Re: VAC Status Checker
 
Quote:

Originally Posted by tcviper (Post 718481)
Thought I love what you wrote this plugin can be dangerous as it wasnt supposed to be doing this across engines. If people do something wrong in one engine it affects all games under that engine and not the others. I personally think putting this on servers would be a bad idea.

I don't see why. Some server admins would prefer not to separate hackers based on engine. To them, a hacker is a hacker.

tcviper 11-26-2008 16:29

Re: VAC Status Checker
 
thats why we have steambans.com :)

dirtyjob 11-28-2008 19:22

Re: VAC Status Checker
 
so if set to "2" it only logs players that have a prior cheat infraction?

StevoTVR 11-28-2008 19:32

Re: VAC Status Checker
 
Quote:

Originally Posted by dirtyjob (Post 719837)
so if set to "2" it only logs players that have a prior cheat infraction?

Yes, sm_vacbans_action "2" will only write to vacbans.log when a VAC banned player joins.

DontWannaName 11-28-2008 21:03

Re: VAC Status Checker
 
People with delayed VAC bans arent always banned from playing on VAC servers yet, the other day someone with the VAC ban on their community profile played on my VAC secured server. This plugin could fill that gap but I would only want it to be source engine bans, not the old engine.

Lebson506th 11-28-2008 22:07

Re: VAC Status Checker
 
If it says they are banned on their community profile, then the ban is in effect.

If you see "banned" and they are still playing on your server, they were banned from a different engine.

DontWannaName 11-29-2008 01:43

Re: VAC Status Checker
 
This guy had the VAC ban ? on his community and was hacking on my server. :/

Lebson506th 11-29-2008 07:37

Re: VAC Status Checker
 
Then he will be VAC banned for that soon too.

Tournevis_man 11-29-2008 10:38

Re: VAC Status Checker
 
Here's the french version

"Phrases"
{
"Kicked"
{
"en" "You were kicked due to a previous VAC violation."
"de" "Du wurdest aufgrund einer früheren VAC Verletzung gekickt."
"es" "Has sido kickeado debido a una violación de VAC anterior."
"fr" "Vous avez été kické par le VAC pour une triche antérieure."
}
"Banned"
{
"en" "You have been banned due to a previous VAC violation."
"de" "Du wurdest aufgrund einer früheren VAC Verletzung gebannt."
"es" "Has sido baneado debido a una violación de VAC anterior."
"fr" "Vous avez été banni par le VAC pour une triche antérieure."
}
"Banned_Server"
{
"#format" "{1:s}"
"en" "{1} banned due to a previous VAC violation."
"de" "{1} aufgrund einer früheren VAC Verletzung gebannt."
"es" "{1} baneado debido a una violación de VAC anterior."
"fr" "{1} Kické pour une violation antérieure du VAC."
}
}

Thanks for your plugin

StevoTVR 11-29-2008 13:48

Re: VAC Status Checker
 
If any Linux users are experiencing frequent crashing, try this version of Socket: http://forums.alliedmods.net/showpos...3&postcount=76

It fixes a memory leak and some other issues.

OziOn 11-29-2008 21:29

Re: VAC Status Checker
 
Here's the danish translation:

Code:

"Phrases"
{
    "Kicked"
    {
    "en"        "You were kicked due to a previous VAC violation."
    "de"        "Du wurdest aufgrund einer früheren VAC Verletzung gekickt."
    "es"        "Has sido kickeado debido a una violación de VAC anterior."
    "fr"        "Vous avez été kické par le VAC pour une triche antérieure."
    "da"        "Du er blevet fjernet pĺ grund af en forhenvćrende VAC overtrćdelse."
    }
    "Banned"
    {
    "en"        "You have been banned due to a previous VAC violation."
    "de"        "Du wurdest aufgrund einer früheren VAC Verletzung gebannt."
    "es"        "Has sido baneado debido a una violación de VAC anterior."
    "fr"        "Vous avez été banni par le VAC pour une triche antérieure."
    "da"        "Du er blevet bortvist pĺ grund af en forhenvćrende VAC overtrćdelse."
    }
    "Banned_Server"
    {
    "#format"    "{1:s}"
    "en"        "{1} banned due to a previous VAC violation."
    "de"        "{1} aufgrund einer früheren VAC Verletzung gebannt."
    "es"        "{1} baneado debido a una violación de VAC anterior."
    "fr"        "{1} Kické pour une violation antérieure du VAC."
    "da"        "{1} bortvist pĺ grund af en forhenvćrende VAC overtrćdelse."
    }
}


DontWannaName 11-30-2008 20:55

Re: VAC Status Checker
 
How do you know what engine someone is banned on? HLstatsX is showing VAC bans that are able to play on my server and even show in their community, nothing has stopped them from playing.

dirtyjob 11-30-2008 22:42

Re: VAC Status Checker
 
if your server is vac secured and their steam page shows avac ban on record then its not the engine your server is on example: a kid gets vac banned on counterstrike, he can still play on vac secured servers on Counterstrike:Source since its a different game engine., i have no clue where HLstatsX gets their info, i use their stats and it seems to me anyone with admin rights can label anyone in their HLstatsX a cheater, Theres no way HLstatsX gets its info from valve so dont go by that.

Lebson506th 11-30-2008 22:43

Re: VAC Status Checker
 
If they can play on your VAC secured server, they are not banned.

That's how you can tell.

DontWannaName 11-30-2008 23:10

Re: VAC Status Checker
 
HLstatsx does get their info from the same database this does. Its just if you have a cheater on your server that you dont want people to see in the players list then you can mark them as cheaters. I dont get how delayed bans work with this, are they in the database yet or are they not, so confusing.

DontWannaName 11-30-2008 23:13

Re: VAC Status Checker
 
For example, this guy is banned on hlstatsx but not on the vacbanned site or on community. http://topnotch.hlstatsx.com/?mode=p...o&player=56716
I didnt mark anyone cheater so either they are wrong or he is on a delayed ban.

Leopard 12-01-2008 06:17

Re: VAC Status Checker
 
if a player joins and get kicked for reason "vac banned", then HLX sets the players status to "banned". thats where HLX gets its information.

hlx does NOT use the steam community profile

psychonic 12-01-2008 07:43

Re: VAC Status Checker
 
Quote:

Originally Posted by Leopard (Post 721190)
if a player joins and get kicked for reason "vac banned", then HLX sets the players status to "banned". thats where HLX gets its information.

Or if a server owner forges a log line to the HLX server saying the player is vac banned. Probably one reason there are false positives like that on their list.

Leopard 12-02-2008 04:47

Re: VAC Status Checker
 
of cause every admin is able to manipulate the database at his pleasure.
but it is NOT done by hlstats itself.

DontWannaName 12-02-2008 05:07

Re: VAC Status Checker
 
Actually it was a false positive, an error, a bug on hlstatsx part. Unbanned them.

dirtyjob 12-02-2008 20:42

Re: VAC Status Checker
 
ya hlstatsx is not a gd source of banned cheaters, any admin can lable a player a cheater on hlstatsx

Jason Argo 12-17-2008 00:27

Re: VAC Status Checker
 
Hi StevoTVR.,

First thing I want to say is great plugin, I totally support this idea not so much to ban VACed players from all engines, but because this plugin will stop VAC banned accounts being used on servers running other Anti-cheats that require VAC to be disabled.

I've put the plugin on my VAC enabled server today and when I joined there were no issues, but when another player joined the server crashed. I restarted the server and the same thing happened again. I was running it on CS:S Linux server with 1.1.0.2422 version of SM, I have the version of sockets from post #83 which I had from running KAC. The server was not experiencing any crashes before I put the plugin on and now that I have removed the plugin the server is running with no crashes. The plugin showed as loaded when I ran a sm plugins list while it was on the server and there isn't anything in the error logs. I had the plugin set to log only and kept the 30 day cache time.

Quote:

SourceMod Version Information:
SourceMod Version: 1.1.0-dev
SourcePawn Engine: SourcePawn 1.1, jit-x86 (build 1.1.0-dev)
SourcePawn API: v1 = 4, v2 = 2
Compiled on: Dec 8 2008 04:16:17
Build ID: 2422:1ae7f07990c0-dev
http://www.sourcemod.net/
Quote:

[SM] Listing 35 plugins:
01 "Admin Help" (1.1.0-dev) by AlliedModders LLC
02 "AdminSentinel" (1.0.108) by <eVa>StrontiumDog
03 "High Ping Kicker" (2.9) by Liam
04 "AFK Manager" (2.6) by Liam
05 "Basic Chat" (1.1.0-dev) by AlliedModders LLC
06 "No Block" (1.0.0.0) by sslice
07 "TeamSwitch" (1.3) by MistaGee
08 "TF2 Spawn Protection" (1.0.0) by Crimson
09 "Kigen's Anti-Cheat" (1.1.6) by Kigen
10 "Reserved Slots" (1.1.0-dev) by AlliedModders LLC
11 "Auto Join Control" (1.2) by dalto
12 "Save Scores" (1.1.0) by exvel
13 "Death Zone" (2.3) by SWAT_88 / [KH] Royal CS / lamdacore
14 "Basic Comm Control" (1.1.0-dev) by AlliedModders LLC
15 "Admin Menu" (1.1.0-dev) by AlliedModders LLC
16 "Anti-Micspam" (0.3) by Ryan "FLOOR_MASTER" Mannion
17 "Basic Ban Commands" (1.1.0-dev) by AlliedModders LLC
18 "Fun Votes" (1.1.0-dev) by AlliedModders LLC
19 "M3Motd - MOTD / Rules Display" (0.2.1) by M3Studios, Inc.
20 "Fun Commands" (1.1.0-dev) by AlliedModders LLC
21 "Country Filter" (1.1.1) by Knagg0
22 "Feedback" (0.2) by SAMURAI
23 "Basic Commands" (1.1.0-dev) by AlliedModders LLC
24 "Basic Info Triggers" (1.1.0-dev) by AlliedModders LLC
25 "Client Preferences" (1.1.0-dev) by AlliedModders LLC
26 "Command Blocker" (1.0) by pRED*
27 "Advertisements" (0.5.5) by Tsunami
28 "Nextmap" (1.1.0-dev) by AlliedModders LLC
29 "Admin File Reader" (1.1.0-dev) by AlliedModders LLC
30 "Menu Rules" (1.2) by XARiUS
31 "SlapSlay Commands" (1.1.0-dev) by AlliedModders LLC
32 "Vote Mute/Vote Silence" (1.0.102) by <eVa>Dog/AlliedModders LLC
33 "Basic Votes" (1.1.0-dev) by AlliedModders LLC
34 "CS:S Stats" (0.3.1) by R-Hehl
35 "Anti-Flood" (1.1.0-dev) by AlliedModders LLC

StevoTVR 12-17-2008 01:19

Re: VAC Status Checker
 
Yeah it seems like there is a problem with the Sockets extension on Linux. Plugins that create one socket work fine, but creating one or two per player seems to cause problems. So this probably won't work for Linux servers until a stable version of Sockets.:|

bug 12-18-2008 20:12

Re: VAC Status Checker
 
Thanks! With this plugin, VAC, KAC and Steambans most cheaters are stopped at the gate!

But I have a concert, how does VACSC deal with errors? If the steam community went offline for some reason then I don’t want my servers to stop working. So, if it doesn’t get a response, does it then just let anyone in?

StevoTVR 12-18-2008 20:48

Re: VAC Status Checker
 
Quote:

Originally Posted by bug (Post 729601)
But I have a concert, how does VACSC deal with errors? If the steam community went offline for some reason then I don’t want my servers to stop working. So, if it doesn’t get a response, does it then just let anyone in?

Yeah, if the site is down or the status can't be found for some reason, nothing will happen. All players will get in unless they are in the local DB marked as banned.

bug 12-18-2008 20:49

Re: VAC Status Checker
 
Quote:

Originally Posted by StevoTVR (Post 729611)
Yeah, if the site is down or the status can't be found for some reason, nothing will happen. All players will get in unless they are in the local DB marked as banned.

Great, thanks. :)

lhffan 01-18-2009 17:20

Re: VAC Status Checker
 
Im installed this one yesterday and today i got an error


Quote:


L 01/18/2009 - 20:38:46: [vacbans.smx] Socket error 3 (errno 10060)
L 01/18/2009 - 20:41:19: [vacbans.smx] Socket error 6 (errno 0)

Edit: Seems like i got an answer in the sockets thread.

10060 = connection timed out

Edit2:

Would it not be better if banlog would be in it´s own file instead in the sourcemod/logs fles


Quote:

maybe the destination is offline or firewalled
Also a new question: where is the ban logged? Have choosen it to log but first i looked wrong and got one dude banned. I want to remove that temp (30 day ban)

toxic4u 01-24-2009 16:11

Re: VAC Status Checker
 
I'm not able to download the plugin. I get this error message:
Plugin failed to compile! Please try contacting the author.

THX
Toxic4u

StevoTVR 01-24-2009 16:55

Re: VAC Status Checker
 
Quote:

Originally Posted by lhffan (Post 746451)
Im installed this one yesterday and today i got an error


Edit: Seems like i got an answer in the sockets thread.

10060 = connection timed out

Edit2:

Would it not be better if banlog would be in it´s own file instead in the sourcemod/logs fles


Also a new question: where is the ban logged? Have choosen it to log but first i looked wrong and got one dude banned. I want to remove that temp (30 day ban)

It's possible that the Steam Community was down at the time and caused the timeout. Does it work now?

To answer your other question, data is logged to sourcemod/logs/vacbans.log.

Quote:

Originally Posted by toxic4u (Post 749456)
I'm not able to download the plugin. I get this error message:
Plugin failed to compile! Please try contacting the author.

THX
Toxic4u

It requires a 3rd party extension, so the web compiler won't work. Download the attached smx file, or compile the source manually.

toxic4u 01-26-2009 03:12

Re: VAC Status Checker
 
Quote:

Originally Posted by StevoTVR (Post 749485)
It requires a 3rd party extension, so the web compiler won't work. Download the attached smx file, or compile the source manually.


?

I don't get, what you are talking about?
I just want to D/L the plugin. I don't know what you mean with "compile"!

strontiumdog 01-26-2009 10:35

Re: VAC Status Checker
 
http://forums.alliedmods.net/attachm...4&d=1227634969

bug 02-15-2009 10:51

Re: VAC Status Checker
 
I got some errors and sometimes crashes with SM dev. I don't know how it affect the server or plugin but I've had two crashes soon after the errors and the last one did not even close. Thanks!

Code:

L 02/15/2009 - 01:40:48: SourceMod error session started
L 02/15/2009 - 01:40:48: Info (map "l4d_vs_hospital02_subway") (file "errors_20090215.log")
L 02/15/2009 - 01:40:48: [SM] Native "WriteFileString" reported: Invalid file handle 3d10217 (error 1)
L 02/15/2009 - 01:40:48: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 01:40:48: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 01:40:48: [SM] Native "WriteFileString" reported: Invalid file handle 3d10217 (error 1)
L 02/15/2009 - 01:40:48: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 01:40:48: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 01:40:48: [SM] Native "FileSeek" reported: Invalid file handle 3d10217 (error 1)
L 02/15/2009 - 01:40:48: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 01:40:48: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 02:00:31: Error log file session closed.

Code:

L 02/15/2009 - 13:50:40: SourceMod error session started
L 02/15/2009 - 13:50:40: Info (map "l4d_airport01_greenhouse") (file "errors_20090215.log")
L 02/15/2009 - 13:50:40: [vacbans.smx] Socket error 6 (errno 0)
L 02/15/2009 - 13:50:42: [SM] Native "WriteFileString" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:42: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:42: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:42: [SM] Native "WriteFileString" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:42: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:42: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "FileSeek" reported: Invalid file handle 97e0220 (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "WriteFileString" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 13:50:43: [SM] Native "FileSeek" reported: Invalid file handle 97a021d (error 3)
L 02/15/2009 - 13:50:43: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 13:50:43: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 14:02:25: Error log file session closed.

Code:

L 02/15/2009 - 15:27:48: SourceMod error session started
L 02/15/2009 - 15:27:48: Info (map "l4d_airport01_greenhouse") (file "errors_20090215.log")
L 02/15/2009 - 15:27:48: [SM] Native "WriteFileString" reported: Invalid file handle 13d1021d (error 3)
L 02/15/2009 - 15:27:48: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:48: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 15:27:48: [SM] Native "FileSeek" reported: Invalid file handle 13d1021d (error 3)
L 02/15/2009 - 15:27:48: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:48: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 15:27:49: [SM] Native "WriteFileString" reported: Invalid file handle 13d50216 (error 3)
L 02/15/2009 - 15:27:49: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:49: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 15:27:49: [SM] Native "WriteFileString" reported: Invalid file handle 13d50216 (error 3)
L 02/15/2009 - 15:27:49: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:49: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 15:27:49: [SM] Native "WriteFileString" reported: Invalid file handle 13d50216 (error 3)
L 02/15/2009 - 15:27:49: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:49: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 15:27:50: [SM] Native "FileSeek" reported: Invalid file handle 13d50216 (error 3)
L 02/15/2009 - 15:27:50: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 15:27:50: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 15:35:55: Error log file session closed.

Code:

L 02/15/2009 - 16:40:59: SourceMod error session started
L 02/15/2009 - 16:40:59: Info (map "l4d_farm01_hilltop") (file "errors_20090215.log")
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "FileSeek" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "FileSeek" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:40:59: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:40:59: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:40:59: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "FileSeek" reported: Invalid file handle 1c73022a (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "WriteFileString" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 92, vacbans.sp::OnSocketReceive()
L 02/15/2009 - 16:41:00: [SM] Native "FileSeek" reported: Invalid file handle 1c6f0227 (error 3)
L 02/15/2009 - 16:41:00: [SM] Displaying call stack trace for plugin "vacbans.smx":
L 02/15/2009 - 16:41:00: [SM]  [0]  Line 98, vacbans.sp::OnSocketDisconnected()


StevoTVR 02-15-2009 13:58

Re: VAC Status Checker
 
I see it's L4D. Does it happen to be a forked Linux server?


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

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