WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Good desync

ffrr

Newbie
Newbie

ffrr

Newbie
Newbie
Status
Offline
Joined
Mar 14, 2020
Messages
2
Reaction score
0
C++:
void new_antiaim::desync(bool& send_packet)

{

    if (!g_local || !g_local->is_alive())

        return;

    //run lby

    lby_prediction_run();



    if (!g_options.newaa_fake_master)

        return;



    float side = g_options.newaa_fake_invert_toggle ? -1.f : 1.f;



    if (g_options.newaa_fake_bodylean_master)

    {

        if (g_options.newaa_fake_invert_toggle)

            ctx::client.cmd->viewangles.yaw += g_options.newaa_fake_bodylean_inverted;

        else

            ctx::client.cmd->viewangles.yaw -= g_options.newaa_fake_bodylean_factor;

    }



    if (!g_options.newaa_fake_switch_mode)

    {

        if (!g_options.newaa_fake_lbymaster)

        {

            static auto alternate = false;



            float sideAmount = 2.f * ((ctx::client.cmd->buttons & IN_DUCK || ctx::client.cmd->buttons & IN_WALK) ? 3.f : 1.f);



            if ((ctx::client.cmd->command_number % 2) == 1)

            {

                ctx::client.cmd->viewangles.yaw += 120.f * side;

                send_packet = false;

            }



            if (g_local->vec_velocity().length2d() <= 0.f || std::fabs(g_local->vec_velocity().z <= 100.f))

                ctx::client.cmd->sidemove += alternate ? sideAmount : -sideAmount;



            alternate = !alternate;

        }

        else

        {

            const auto in_lby_update = g_local->flags() & fl_onground && (lby_update_time - globals.curtime) <= interfaces::global_vars->

                interval_per_tick;



            if ((ctx::client.cmd->command_number % 2) == 1)

            {

                ctx::client.cmd->viewangles.yaw += 120.f * side;

                send_packet = false;

            }



            if (in_lby_update)

            {

                ctx::client.cmd->viewangles.yaw -= g_options.newaa_fake_lbyoffset * side; //58

                send_packet = false;

            }

        }

    }

}
 

Aham

Newbie
Newbie

Aham

Newbie
Newbie
Status
Offline
Joined
Sep 2, 2019
Messages
20
Reaction score
195
Can I just say how wrong and right this is. Also stop copy and pasting this is sensum's desync
 

maklord

Newbie
Newbie

maklord

Newbie
Newbie
Status
Offline
Joined
Nov 26, 2020
Messages
6
Reaction score
0
C++:
void new_antiaim::desync(bool& send_packet)

{

    if (!g_local || !g_local->is_alive())

        return;

    //run lby

    lby_prediction_run();



    if (!g_options.newaa_fake_master)

        return;



    float side = g_options.newaa_fake_invert_toggle ? -1.f : 1.f;



    if (g_options.newaa_fake_bodylean_master)

    {

        if (g_options.newaa_fake_invert_toggle)

            ctx::client.cmd->viewangles.yaw += g_options.newaa_fake_bodylean_inverted;

        else

            ctx::client.cmd->viewangles.yaw -= g_options.newaa_fake_bodylean_factor;

    }



    if (!g_options.newaa_fake_switch_mode)

    {

        if (!g_options.newaa_fake_lbymaster)

        {

            static auto alternate = false;



            float sideAmount = 2.f * ((ctx::client.cmd->buttons & IN_DUCK || ctx::client.cmd->buttons & IN_WALK) ? 3.f : 1.f);



            if ((ctx::client.cmd->command_number % 2) == 1)

            {

                ctx::client.cmd->viewangles.yaw += 120.f * side;

                send_packet = false;

            }



            if (g_local->vec_velocity().length2d() <= 0.f || std::fabs(g_local->vec_velocity().z <= 100.f))

                ctx::client.cmd->sidemove += alternate ? sideAmount : -sideAmount;



            alternate = !alternate;

        }

        else

        {

            const auto in_lby_update = g_local->flags() & fl_onground && (lby_update_time - globals.curtime) <= interfaces::global_vars->

                interval_per_tick;



            if ((ctx::client.cmd->command_number % 2) == 1)

            {

                ctx::client.cmd->viewangles.yaw += 120.f * side;

                send_packet = false;

            }



            if (in_lby_update)

            {

                ctx::client.cmd->viewangles.yaw -= g_options.newaa_fake_lbyoffset * side; //58

                send_packet = false;

            }

        }

    }

}
it's strange,but it's p,none can hit this p desync i love it bro <3
 
Top