since vac does check opening handle to game from other processes and memory places where that memory should be untouched, using this will get you probably insta banned (unless, if you know what you are doing, you can bypass it with just few steps, for exampl. handle hijacking + kernel read/write). so only for educational purposes, not responsible for any bans on your accounts
- compile it with visual studio (c++17)
- if needed, update the
client.dll.hppandoffsets.hppfrom cs2-dumper (since im too lazy to fetch dynamically) - even though vac sucks, it can still clap your cheeks, so do not just compile and grind, you would probably marked with red trust and then banned, thus only for educational purposes, not responsible for any bans on your accounts
- to adjust the fov and smoothness in
Aimbot.h
#define AIMSMOOTH 0.2f // must between 0 and 1
#define FOV 5- you can change the aimbot key in
main.cpp(check Winuser.h)
while (GetAsyncKeyState(VK_MENU))
{
//los gehts
}- to turn off visibility and teammate check just command out these lines accordingly in
Aimbot.cpp
Vector3 getClosestEntity()
{
for (auto player : playerList)
{
...
if(!Game::Entity::isVisible(player)) continue; <--
if(Game::Entity::entityIsTeammate(player)) continue; <--
...
}
return closestEnemy;
}