Compile this code and put the plugin on your server, after that, you can load ANY Anti-Aim hack and it will be detected with no problems =)
Also this help to WallHack Blockers, so if the hackers move his angles 180 degres, they can't see the enemy by the FOV Check of the WHBlocker.
Код
#include < amxmodx >
#include < fakemeta >
public plugin_init ( )
{
register_forward ( FM_CmdStart, "Fw_CmdStart", 0 )
}
public Fw_CmdStart ( const id, const uc_handle, const seed )
{
new Float:Angles[3]
get_uc ( uc_handle, UC_ViewAngles, Angles )
if ( ( Angles[0] > 89.0 ) || ( Angles[0] < -89.0 ) || ( Angles[1] > 180.0 ) || ( Angles[1] < -180.0 ) )
{
server_cmd ( "kick #%d ^"Anti-Aim Detected^"", get_user_userid ( id ) )
}
}