AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   SourceMod Anti-Cheat (https://forums.alliedmods.net/forumdisplay.php?f=133)
-   -   Getting errors (https://forums.alliedmods.net/showthread.php?t=286281)

Adomaz1 08-13-2016 05:24

Getting errors
 
Hello, I'm getting these errors:

Code:

L 08/13/2016 - 12:18:53: [SM] Exception reported: DataPack operation is out of bounds.
L 08/13/2016 - 12:18:53: [SM] Blaming: smac_eac_banlist.smx()
L 08/13/2016 - 12:18:53: [SM] Call stack trace:
L 08/13/2016 - 12:18:53: [SM]  [0] ReadPackString
L 08/13/2016 - 12:18:53: [SM]  [1] Line 149, smac_eac_banlist.sp::OnSocketConnected()
L 08/13/2016 - 12:18:53: [SM] Exception reported: DataPack operation is out of bounds.
L 08/13/2016 - 12:18:53: [SM] Blaming: smac_kac_banlist.smx()
L 08/13/2016 - 12:18:53: [SM] Call stack trace:
L 08/13/2016 - 12:18:53: [SM]  [0] ReadPackString
L 08/13/2016 - 12:18:53: [SM]  [1] Line 143, smac_kac_banlist.sp::OnSocketConnected()
L 08/13/2016 - 12:18:56: [SM] Exception reported: DataPack operation is out of bounds.
L 08/13/2016 - 12:18:56: [SM] Blaming: smac_kac_banlist.smx()
L 08/13/2016 - 12:18:56: [SM] Call stack trace:
L 08/13/2016 - 12:18:56: [SM]  [0] ReadPackString
L 08/13/2016 - 12:18:56: [SM]  [1] Line 143, smac_kac_banlist.sp::OnSocketConnected()
L 08/13/2016 - 12:18:56: [SM] Exception reported: DataPack operation is out of bounds.
L 08/13/2016 - 12:18:56: [SM] Blaming: smac_eac_banlist.smx()
L 08/13/2016 - 12:18:56: [SM] Call stack trace:
L 08/13/2016 - 12:18:56: [SM]  [0] ReadPackString
L 08/13/2016 - 12:18:56: [SM]  [1] Line 149, smac_eac_banlist.sp::OnSocketConnected()

And when I connected I got banned. :/

I'm using 0.8.5.2 version

F.E eac_banlist line 149

Code:

public OnSocketConnected(Handle:socket, any:hPack)
{
        decl String:sAuthID[MAX_AUTHID_LENGTH], String:sRequest[256];
        SetPackPosition(hPack, 8);
        ReadPackString(hPack, sAuthID, sizeof(sAuthID));
        FormatEx(sRequest, sizeof(sRequest), "GET /%s%s HTTP/1.0\r\nHost: %s\r\nConnection: close\r\n\r\n", EAC_QUERY, sAuthID, EAC_HOSTNAME);
        SocketSend(socket, sRequest);
}


Naydef 08-14-2016 15:34

Re: Getting errors
 
Remove this module, I think the banlist is no longer working

Arkarr 08-23-2016 13:41

Re: Getting errors
 
The host wich contains the ban list as been shutdown or edited, and the values received by the socket are no longer up to date. You might have to wait a few minutes, maybe they are going to publish an update soon or the ban list server will be back on.

DarkDeviL 08-23-2016 18:15

Re: Getting errors
 
Quote:

Originally Posted by Arkarr (Post 2447606)
You might have to wait a few minutes, maybe they are going to publish an update soon or the ban list server will be back on.

I think that few minutes will end up on being forever.

pr3d4t0r 10-14-2016 13:08

Re: Getting errors
 
And how about this after a virgin installation?

sm plugins list:

32 "SourceMod Anti-Cheat" (0.8.6.0) by SMAC Development Team
33 "SMAC Aimbot Detector" (0.8.6.0) by SMAC Development Team
34 "SMAC AutoTrigger Detector" (0.8.6.0) by SMAC Development Team
35 "SMAC Client Protection" (0.8.6.0) by SMAC Development Team
36 "SMAC Command Monitor" (0.8.6.0) by SMAC Development Team
37 "SMAC ConVar Checker" (0.8.6.0) by SMAC Development Team
38 "SMAC Eye Angle Test" (0.8.6.0) by SMAC Development Team
39 "SMAC Rcon Locker" (0.8.6.0) by SMAC Development Team
40 "SMAC Anti-Speedhack" (0.8.6.0) by SMAC Development Team
41 "SMAC Spinhack Detector" (0.8.6.0) by SMAC Development Team
42 <Failed> "SMAC Anti-Wallhack" (0.8.6.0) by SMAC Development Team

Errors:
smac_wallhack.smx (SMAC Anti-Wallhack): This module is disabled for this game. Enable "sv_occlude_players" for the same feature.

Thanks!

sneaK 10-14-2016 14:20

Re: Getting errors
 
Quote:

Originally Posted by pr3d4t0r (Post 2462056)
Errors:
smac_wallhack.smx (SMAC Anti-Wallhack): This module is disabled for this game. Enable "sv_occlude_players" for the same feature.

It tells you exactly what the issue is. The SMAC Anti-Wallhack module has been disabled in CS:GO because the built-in features sv_occlude_players does the same thing.

pr3d4t0r 10-14-2016 16:45

Re: Getting errors
 
Quote:

Originally Posted by blackhawk74 (Post 2462075)
It tells you exactly what the issue is. The SMAC Anti-Wallhack module has been disabled in CS:GO because the built-in features sv_occlude_players does the same thing.

So the SMAC wallhack detector was integrated to the source engine, or am I misunderstand something?

sneaK 10-14-2016 18:38

Re: Getting errors
 
Quote:

Originally Posted by pr3d4t0r (Post 2462131)
So the SMAC wallhack detector was integrated to the source engine, or am I misunderstand something?

In layman's terms, there is now a built-in wallhack "blocker" in CS:GO, that supersedes the SMAC wallhack module, which is why it is automatically set to fail the plugin if CS:GO is detected as the running game.

Just remove smac_wallhack.smx, set sv_occlude_players to 1, and you're good to go!

pr3d4t0r 10-16-2016 09:38

Re: Getting errors
 
Quote:

Originally Posted by blackhawk74 (Post 2462161)
In layman's terms, there is now a built-in wallhack "blocker" in CS:GO, that supersedes the SMAC wallhack module, which is why it is automatically set to fail the plugin if CS:GO is detected as the running game.

Just remove smac_wallhack.smx, set sv_occlude_players to 1, and you're good to go!

Okay, now it's clear, and I'm done, thanks!

allienaded 10-21-2016 19:12

Re: Getting errors
 
Quote:

Originally Posted by Adomaz1 (Post 2444548)
I'm using 0.8.5.2 version

Don't. You should use the latest build of 0.8.6.0.


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

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