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.

Fast Bombplant

DREDD

Administrator
Administrator
Administrator
Administrator
Status
Offline
Joined
Apr 18, 2019
Messages
147
Reaction score
249
This function will help you set the bomb much faster. Without this fix, in order to planting a bomb, it was necessary to run through a significant part of the site, but now this will not happen.

So i fixed it real quick, obviously call it in createmove.
Additional sideeffect, u can antiaim while holding down use/plant till u are on site
PS: could prolly cause a problem with doors if u are holding the bomb

Before

After
C++:
void FixedBombPlant(CUserCmd* cmd){
    if (!(cmd->buttons & IN_USE) && !(cmd->buttons & IN_ATTACK))return; if (!pLocal || pLocal->GetHealth() <= 0)return;
    C_BaseCombatWeapon* pWeapon = (C_BaseCombatWeapon*)pLocal->GetActive();
    if (!pWeapon || !pWeapon->IsBomb() || pLocal->getm_bInBombZone())return;//m_bInBombZone
 
    //keep antiaiming/dont run 10m into site
    cmd->buttons &= ~IN_USE;
    cmd->buttons &= ~IN_ATTACK;
}
 
Top