PDA

View Full Version : [Request] False SMAC Ban?



mangum
11-07-2015, 09:57 AM
I'll keep this short.


I was playing on surf_aircontrol_ksf, bonus 2. EU server. On this bonus, you must bunnyhop down a slope. I was bunnyhopping down, gaining speed each time I completed the course, gradually getting faster and faster. When I hit like, 2600 speed(?) I was kicked off the server with the message:

"SMAC: R1 - BunnyHop Detected."

This is clearly a false ban as I am supposed to be bunnyhopping.
I guess the plugin thought I had a script, due to the auto bhop(?)

I'm really unsure on why I was banned and hope I can return to surfing soon.

Here is a screenshot, showing that I am banned from both the normal and the EU server, and that I was on surf_aircontrol_ksf, bonus 2.

Unedited screenshot:
https://i.gyazo.com/2bd4c836d728aa76a1a2e8ed5dc71973.jpg

Here I will highlight the proof:
https://i.gyazo.com/0ccff0183d90f40c8032404da7a300b0.jpg

I will also attach the screenshots for those afraid to click the links.
144

remkoe
11-07-2015, 10:57 AM
that will be $15 and an apology for not telling us the truth

mangum
11-08-2015, 09:34 AM
What would I even be lying about?

checkster
12-01-2015, 02:58 PM
I know you guys can code, but I assume you guys removed the autohop detection in smac_autotrigger? Cause running that aside with a autohop plugin will cause FP.

mangum
12-03-2015, 10:35 AM
I dunno, I just wanna get back to surfing to be honest. This thread seems to be getting ignored :c

Sacred
12-03-2015, 02:31 PM
The ban doesn't happen when it gets detected. It probably has nothing to do with the aircontrol bonus. The ban is intentionally delayed by the plugin.

checkster
12-04-2015, 01:25 PM
The ban doesn't happen when it gets detected. It probably has nothing to do with the aircontrol bonus. The ban is intentionally delayed by the plugin.

Smac calculates a perfection rate of bhop the bans takes about 30 seconds. I do not see why you'd run smac autotrigger to detect scripters when you have autobhop.
I do not know who OP is but I do know about smac, and unless you guys changed the code Id stand on OP side and say its false.


/* BunnyHop */
94 static Float:fCheckTime[MAXPLAYERS+1];
95
96 // Player didn't jump immediately after the last jump.
97 if (!(buttons & IN_JUMP) && (GetEntityFlags(client) & FL_ONGROUND) && fCheckTime[client] > 0.0)
98 {
99 fCheckTime[client] = 0.0;
100 }
101
102 // Ignore this jump if the player is in a tight space or stuck in the ground.
103 if ((buttons & IN_JUMP) && !(iPrevButtons[client] & IN_JUMP))
104 {
105 // Player is on the ground and about to trigger a jump.
106 if (GetEntityFlags(client) & FL_ONGROUND)
107 {
108 new Float:fGameTime = GetGameTime();
109
110 // Player jumped on the exact frame that allowed it.
111 if (fCheckTime[client] > 0.0 && fGameTime > fCheckTime[client])
112 {
113 AutoTrigger_Detected(client, METHOD_BUNNYHOP);
114 }
115 else
116 {
117 fCheckTime[client] = fGameTime + MIN_JUMP_TIME;
118 }
119 }
120 else
121 {
122 fCheckTime[client] = 0.0;
123 }
124 }

Sacred
12-05-2015, 08:08 AM
Untouch modified the plugins.

Sacred
12-05-2015, 08:10 AM
It might still be possible that false positives appear, I guess we will disable the SMAC bunnyhop stuff entirely.

checkster
12-06-2015, 04:14 AM
It might still be possible that false positives appear, I guess we will disable the SMAC bunnyhop stuff entirely.

I would do that to, and remember to remove the updater.inc when you compile, "forgot that so many times my self" otherwise it will just re download the plugin.

Sacred
12-06-2015, 12:29 PM
I'm wondering tho, maybe you have an idea - how come that the good and active surfers never get banned? We never had SMAC ban anyone good since autobhop got added, and those people play much more than some random rookies that claim to get banned despite doing nothing but autobhop.

checkster
12-07-2015, 04:19 AM
I'm wondering tho, maybe you have an idea - how come that the good and active surfers never get banned? We never had SMAC ban anyone good since autobhop got added, and those people play much more than some random rookies that claim to get banned despite doing nothing but autobhop.

That's a good question, do you have log_verbouse? It could be a false positive, I was just curious couse of the output smac R1, "also your smac is outdated".
Id probably leave the guy banned cause your point is valid, still I have never seen smac autotrigger not ban everyone when auto hop is present. So its odd. ( Just noticed there is a delay on the hops plugin you guys use, smac should not ban, cause you wont get the perfection rate)
And massive sidenote, some of your sm plugins are outdated some are updated, id guess Id sort that mess, Is it untouchable that has control of all plugin stuff?

Sacred
12-07-2015, 05:32 AM
Yea it's untouch, I personally don't have access to those. Evolv might update those, too, but I'm not entirely certain how and when.

checkster
12-07-2015, 06:02 AM
Yea it's untouch, I personally don't have access to those. Evolv might update those, too, but I'm not entirely certain how and when.

Just noticed that some sm plugins where diff versions than the most recent once, and that smac is a 1 version lower than the current.

nikow0w
12-09-2015, 01:50 PM
edit nvm im retarded