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.

[SOURCE] Fake Duck

callie

Newbie
Newbie

callie

Newbie
Newbie
Status
Offline
Joined
Apr 20, 2020
Messages
1
Reaction score
2
A very simple and easy to do feature but posting here incase anyone else may want it. (Use with infinite duck)

Code:
    if (config->antiAim.fakeDuck && config->antiAim.fakeDuckKey && GetAsyncKeyState(config->antiAim.fakeDuckKey) && localPlayer->isAlive())
        if (localPlayer && localPlayer->isAlive())
            if (interfaces->engine->getNetworkChannel()->chokedPackets > (config->misc.chokedPackets / 2))
                cmd->buttons |= UserCmd::IN_DUCK;
            else
                cmd->buttons &= ~UserCmd::IN_DUCK;
 

Mr House

Moderator
Experienced

Mr House

Moderator
Experienced
Status
Offline
Joined
Mar 27, 2019
Messages
313
Reaction score
863
Good enough for a first person. Nice Sharing!
 

Yaxe

Newbie
Newbie

Yaxe

Newbie
Newbie
Status
Offline
Joined
Dec 6, 2020
Messages
3
Reaction score
0
A very simple and easy to do feature but posting here incase anyone else may want it. (Use with infinite duck)

Code:
    if (config->antiAim.fakeDuck && config->antiAim.fakeDuckKey && GetAsyncKeyState(config->antiAim.fakeDuckKey) && localPlayer->isAlive())
        if (localPlayer && localPlayer->isAlive())
            if (interfaces->engine->getNetworkChannel()->chokedPackets > (config->misc.chokedPackets / 2))
                cmd->buttons |= UserCmd::IN_DUCK;
            else
                cmd->buttons &= ~UserCmd::IN_DUCK;
thanks man
 
Top