many hacker is in official server
and admin can ban them while hacker is using cheat
but few hacker is using cheat with small value
eg.
speed hack : x1.3
only use esp
avoid head shot while using aim bot
so i want to dev make value checker system for admin, or dev self to ban hacker
CheckSpeedHacker( Player player )
{
float speed = CheckSpeedForSecond( player )
if( speed > NormalSpeed )
++speedHackCount;
if( speedHackCount> SPEEDHACK_BAN_TRESHOLD ) // SPEEDHACK_BAN_TRESHOLD = 10f;
Ban (player); // or Kick(player)
}
CheckAimbot( Player player )
{
Player destPlayer = null;
Vector3 aimPos = GetPlayerAimPos( player, out destPlayer );
if( destPlayer == null )
return;
if( (destPlayer.transform.pos - aimPos).magnitude <= AIMHACK_BAN_CHECK_DISTANT ) // AIMHACK_BAN_CHECK_DISTANT = 0.01f;
++aimBotCount;
if( aimBotCount >= AIMHACK_BAN_TRESHOLD )
Ban( player );
}
You need to report to twitter this has been said many times and then they will investigate for official ban
Three threads?
Sorry, you need to Log In to post a reply to this thread.