[Include] OnPlayerAirbreak
#12

Quote:
Originally Posted by jakejohnsonusa
Посмотреть сообщение
Well done!

+1 for the nice work!
Quote:
Originally Posted by pds2k12
Посмотреть сообщение
Looks nice, but I didn't test it, I just looked at the code
Quote:
Originally Posted by Strawhats
Посмотреть сообщение
This can come in handy, so i won't have to script it myself
Quote:
Originally Posted by FailerZ
Посмотреть сообщение
Very useful thank you
Thanks.

Quote:
Originally Posted by [uL]Pottus
Посмотреть сообщение
I find it funny that the guy who named it "airbreaking" used the wrong variation of the word :P anyways I would like to try it but this won't work on my server without significant alteration unfortunately so I can't really give you feedback of it's effectiveness right now.
That's true, lol. "Airbreaking" doesn't make any sense, how can someone break the air? lol.

Quote:
Originally Posted by [uL]Pottus
Посмотреть сообщение
You know Richie, it really takes a lot of patience to build a AC you just can't tell what will happen until you try. I'm sure Emmet built this good but to perfect takes time and it's a absolute must to have a public server to test on. What I do when implementing any new AC features is just report to get a feel if there is false positives. It takes while to develop confidence with any AC routine so I wouldn't throw this out but try and figure out why false positives are being thrown then try again until your confidence is high enough to have it autoban which could take a week or maybe never and you have to remove the check.
Thank you for your understanding. After all, I've released an airbreak detection method last year and it had way more bugs than this one, so I had to scrap it and start from scratch. It took me about 3 more tries but I've done it. :d

This is why that in most anticheat detections, it is good to have a variable that counts the number of detections, false or not. If the variable reaches a certain amount, ban that player.

pawn Код:
new g_AB_DetectCount[MAX_PLAYERS];

public OnPlayerAirbreak(playerid)
{
    g_AB_DetectCount[playerid]++;
    if (g_AB_DetectCount[playerid] >= 3)
    {
        Ban(playerid);
    }
    return 1;
}
@Richie©: Thanks for taking your time to report the bugs, I've worked on the script a bit and all of them should be fixed now (after 1-2 hours of testing and tweaking), sorry about that XD.
Reply


Messages In This Thread
OnPlayerAirbreak - by Emmet_ - 06.11.2013, 21:44
Re: OnPlayerAirbreak - by jakejohnsonusa - 06.11.2013, 22:03
Re: OnPlayerAirbreak - by Patrick - 06.11.2013, 22:14
Re: OnPlayerAirbreak - by Baboon - 06.11.2013, 22:28
Re: OnPlayerAirbreak - by Pottus - 06.11.2013, 23:01
Re: OnPlayerAirbreak - by FailerZ - 07.11.2013, 10:40
Re: OnPlayerAirbreak - by Richie© - 07.11.2013, 18:24
Re: OnPlayerAirbreak - by Pottus - 07.11.2013, 18:29
Re: OnPlayerAirbreak - by Richie© - 07.11.2013, 18:36
Re: OnPlayerAirbreak - by Pottus - 07.11.2013, 19:01
Re: OnPlayerAirbreak - by iZN - 07.11.2013, 20:00
Re: OnPlayerAirbreak - by Emmet_ - 07.11.2013, 21:53
Re: OnPlayerAirbreak - by Michael@Belgium - 08.11.2013, 18:33
Re: OnPlayerAirbreak - by Konstantinos - 08.11.2013, 18:38
Re: OnPlayerAirbreak - by PT - 10.11.2013, 22:00
Re: OnPlayerAirbreak - by Emmet_ - 11.11.2013, 23:42
Respuesta: OnPlayerAirbreak - by deryan - 25.11.2013, 19:22
Re: OnPlayerAirbreak - by daniscape - 06.12.2013, 14:26
Re: OnPlayerAirbreak - by kristo - 06.12.2013, 16:51
Re: OnPlayerAirbreak - by Emmet_ - 06.12.2013, 16:58
Re: OnPlayerAirbreak - by kristo - 06.12.2013, 17:06
Re: OnPlayerAirbreak - by Emmet_ - 06.12.2013, 17:08
Re: OnPlayerAirbreak - by Phaze - 06.12.2013, 17:08
Re: OnPlayerAirbreak - by kristo - 06.12.2013, 17:11
Re: OnPlayerAirbreak - by Emmet_ - 06.12.2013, 17:21
Re: OnPlayerAirbreak - by Zamora - 10.12.2013, 16:34
Re: OnPlayerAirbreak - by Emmet_ - 05.01.2014, 10:36
Re: OnPlayerAirbreak - by Michalec - 06.01.2014, 01:21
Re: OnPlayerAirbreak - by Emmet_ - 06.01.2014, 01:50
Re: OnPlayerAirbreak - by kristo - 19.08.2014, 13:39
Re: OnPlayerAirbreak - by Emmet_ - 25.02.2016, 14:32
Re: OnPlayerAirbreak - by ]Rafaellos[ - 25.02.2016, 14:55
Re: OnPlayerAirbreak - by Emmet_ - 25.02.2016, 15:17
Re: OnPlayerAirbreak - by Kar - 15.03.2016, 04:28
Re: OnPlayerAirbreak - by Crayder - 15.03.2016, 04:43
Re: OnPlayerAirbreak - by Kar - 15.03.2016, 15:53
Re: OnPlayerAirbreak - by Crystallize - 15.03.2016, 22:19
Re: OnPlayerAirbreak - by Joron - 15.03.2016, 22:21
Re: OnPlayerAirbreak - by Kar - 16.03.2016, 00:25
Re: OnPlayerAirbreak - by AdrianGabriel96 - 29.03.2016, 23:49

Forum Jump:


Users browsing this thread: 6 Guest(s)