HOW TO MAKE AIMBOT TUTORIAL - CS2 Aimbot External Cheat

HOW TO MAKE AIMBOT TUTORIAL - CS2 Aimbot External Cheat

kxbra

8 месяцев назад

25,795 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@kxbraaaa
@kxbraaaa - 06.04.2024 12:16

Hi everyone,

Due to some changes to the cs2 engine as well as the a2x dumper, this video is now outdated. However, it can be fixed if you
find the correct offsets and adjust them accordingly.

Ответить
@fluidmind3629
@fluidmind3629 - 22.08.2024 01:39

hello, can i get the source ? thanks

Ответить
@fortcraft325
@fortcraft325 - 20.08.2024 18:29

can somone send me the dumber its not available annymore

Ответить
@stakeverificationsystem
@stakeverificationsystem - 14.08.2024 06:03

Hey man, I need you to come back and help me. It says there are errors in the build.

Ответить
@sshady675
@sshady675 - 02.08.2024 10:50

Heres the code for fov aimbot;



void Fov_Aimbot()
{
uintptr_t localPlayerPawn = mem.ReadMemory<uintptr_t>(GetProcessInfo::clientAddress + ofs.dwLocalPlayerPawn);
int localTeam = mem.ReadMemory<int>(localPlayerPawn + ofs.m_iTeamNum);

uintptr_t entityList = mem.ReadMemory<uintptr_t>(GetProcessInfo::clientAddress + ofs.dwEntityList);
if (!entityList)
return;

vec3 localEyePos = mem.ReadMemory<vec3>(localPlayerPawn + ofs.m_vOldOrigin) + mem.ReadMemory<vec3>(localPlayerPawn + ofs.m_vecViewOffset);
vec3 currentAngles = mem.ReadMemory<vec3>(GetProcessInfo::clientAddress + ofs.dwViewAngles);

float closestDistance = -1;
vec3 enemyPos;

// Define your FOV here
float fov = 10.0f; // Field of view in degrees, adjust this value as needed

for (int i = 0; i < 64; i++)
{
uintptr_t listEntry = mem.ReadMemory<uintptr_t>(entityList + ((8 * (i & 0x7FF) >> 9) + 16));
if (!listEntry)
continue;

uintptr_t entityController = mem.ReadMemory<uintptr_t>(listEntry + 120 * (i & 0x1FF));
if (!entityController)
continue;

int entityControllerPawn = mem.ReadMemory<int>(entityController + ofs.m_hPlayerPawn);
if (!entityControllerPawn)
continue;

uintptr_t entityPawn = mem.ReadMemory<uintptr_t>(listEntry + 120 * (entityControllerPawn & 0x1FF));
if (!entityPawn)
continue;

if (localTeam == mem.ReadMemory<int>(entityPawn + ofs.m_iTeamNum))
continue;

if (mem.ReadMemory<int>(entityPawn + ofs.m_iHealth) <= 0)
continue;

vec3 entityPos = mem.ReadMemory<vec3>(entityPawn + ofs.m_vOldOrigin);

vec3 entityTorsoPos = entityPos + mem.ReadMemory<vec3>(entityPawn + ofs.m_vecViewOffset) * 0.5;
vec3 entityEyePos = entityPos + mem.ReadMemory<vec3>(entityPawn + ofs.m_vecViewOffset);

float currentDistance = distance(localEyePos, entityEyePos);

// Calculate the angle to the target
vec3 targetAngle = (entityEyePos - localEyePos).RelativeAngle();

// Calculate the angle difference between the current view and target
float angleDiff = targetAngle.AngleDifference(currentAngles);

// Check if the angle is within the FOV
if (angleDiff > fov / 2)
continue;

if (closestDistance == 0) continue;

if (closestDistance < 0 || currentDistance < closestDistance)
{
closestDistance = currentDistance;
enemyPos = entityEyePos;
}
}

if (closestDistance >= 0)
{
vec3 relativeAngle = (enemyPos - localEyePos).RelativeAngle();

// Add smoothness
float smoothFactor = 1.0f; // Adjust this value to change smoothness, lower is smoother
vec3 smoothedAngle = currentAngles + (relativeAngle - currentAngles) * smoothFactor;

mem.WriteMemory<vec3>(GetProcessInfo::clientAddress + ofs.dwViewAngles, smoothedAngle);
}
}


// vector angle differece code

float AngleDifference(const vec3& other) const
{
auto deltaPitch = std::fabs(x - other.x);
auto deltaYaw = std::fabs(y - other.y);

if (deltaPitch > 180.0f)
deltaPitch = 360.0f - deltaPitch;

if (deltaYaw > 180.0f)
deltaYaw = 360.0f - deltaYaw;

return std::sqrt(deltaPitch * deltaPitch + deltaYaw * deltaYaw);
}

Ответить
@WyattOhHeyDude
@WyattOhHeyDude - 23.07.2024 06:29

when ever i try and use it it just aims at the sky and goes black... then i get kicked out of the game :)

Ответить
@sshady675
@sshady675 - 21.07.2024 12:16

make more videos please

Ответить
@sshady675
@sshady675 - 21.07.2024 10:14

man i love you

Ответить
@RealDX1-t7e
@RealDX1-t7e - 15.07.2024 16:57

Make for valorant please

Ответить
@user-rf3ot9pq9q
@user-rf3ot9pq9q - 14.07.2024 13:28

Can i make aimbot for warzone with this method ?

Ответить
@KithOakes
@KithOakes - 09.07.2024 18:49

how to open the visual studio?

Ответить
@MrcPLUSPLUSguy
@MrcPLUSPLUSguy - 20.06.2024 03:16

this dude needs to get more views keep making, good content

Ответить
@kvfs_
@kvfs_ - 12.06.2024 05:12

in the exact moment when you WRITE TO GAME MEMORY is NOT EXTERNAL because you are WRITTING DATA into the game. EXTERNAL MEANS that you DON'T WRITE INTO GAME MEMORY.

Ответить
@AbdulCamila
@AbdulCamila - 26.05.2024 18:01

i want to make a cheat in xdefiant can u help with a tutorial please

Ответить
@moder-pb5dr
@moder-pb5dr - 26.05.2024 01:35

hi, for everyone, add if(closest_distance == 0) continue; because entity that is closest to you is always you :)

Ответить
@LucasAlvarez-de5ts
@LucasAlvarez-de5ts - 06.05.2024 18:07

aimbot tutorial que no es para principiantes... hahahahahaah enserio?? dios mio

Ответить
@DrLifeGamer
@DrLifeGamer - 05.05.2024 21:41

how do you make a visibility check?

Ответить
@yungshinobiplug
@yungshinobiplug - 28.04.2024 17:22

Please make a internal esp and aimbot. Would love to see that.

Ответить
@yanairozenblum2099
@yanairozenblum2099 - 27.04.2024 18:12

when i press the Lshift it goes straight to the floor. any idea whats wrong?

Ответить
@H4x_Developers
@H4x_Developers - 23.04.2024 17:04

Friend, I followed the tutorial, I copied your code so when I start the cheat the mouse aims instead of aiming at the enemy player the aimbot pulls the aim to the back or to the sky, the field of view is not configured correctly it should have a fov controller

Mine worked but it hits all the enemies on the map, behind the wall, on the ground, it's really buggy, could you help me?

Ответить
@aydennnfy
@aydennnfy - 15.04.2024 09:34

I was wondering if you could put this into a ImGui

Ответить
@yuval9685
@yuval9685 - 13.04.2024 18:31

hi how can we smooth the aimbot ? and make maybe close to crosshair aimbot

Ответить
@I_pvn
@I_pvn - 08.04.2024 03:34

imgui?

Ответить
@treceezzz
@treceezzz - 04.04.2024 01:54

How could I put this into a menu, and would it be possible to put this, the wallhack and the trigerbot together and make a cheat menu?

Ответить
@user-ue1zx6vc4h
@user-ue1zx6vc4h - 02.04.2024 21:50

Can this get detected by the anti cheat ?

Ответить
@musarapio_hha
@musarapio_hha - 01.04.2024 23:19

it aims to the floor, maybe they change something?

Ответить
@igorghgx6037
@igorghgx6037 - 28.03.2024 03:15

Could you update this aimbot tutorial with a fov for triggerbot and pro aimbot and that can change the speed it pulls and increase and decrease the fov through the code?

Ответить
@bestelectrocity
@bestelectrocity - 27.03.2024 15:31

bro where is d3dx9.h file, where can i found it ?

Ответить
@igorghgx6037
@igorghgx6037 - 25.03.2024 02:54

You could be creating a tutorial creating a fov for the aimbot, something to change the speed it will pull too and something like that, the aimbot this way you have no control and it's kind of a bit useless let's say, if it's possible to make a tutorial teaching how to Improving everything you've already done would be great, you're awesome.

Ответить
@ricardofr165
@ricardofr165 - 23.03.2024 02:30

do roblox plsss

Ответить
@bestrustplayer322
@bestrustplayer322 - 22.03.2024 16:52

it gets built as a obj file

Ответить
@MaxwelMazur
@MaxwelMazur - 22.03.2024 15:24

Thank you for sharing your knowledge

Ответить
@MaxwelMazur
@MaxwelMazur - 22.03.2024 15:23

Awesome

Ответить
@coreyf8019
@coreyf8019 - 22.03.2024 10:11

"Promosm" 😀

Ответить
@theeaglewarrior3322
@theeaglewarrior3322 - 21.03.2024 21:54

I got LNK2019 in main.obj and LNK1120 in external-cheat-base.exe
Did I just do something wrong or am I just dumb

Ответить
@novx1247
@novx1247 - 18.03.2024 03:20

i take LNK2001, LNK1120 errors in the main.obj , external-cheat-base.exe and aimbot.obj

Ответить
@tXzmxn
@tXzmxn - 17.03.2024 17:43

If your shit get good cheating will cause you to be shittier and you wont look good you will get reported banned since valve will ban u by the acc good players cya cheaters u suck

Ответить
@XE_NEXFF
@XE_NEXFF - 16.03.2024 15:41

Hello Please fo free fire please,And give me ur gmail so i can contact u pleaee

Ответить
@blutwix5136
@blutwix5136 - 16.03.2024 07:41

bro pls skin changer tutorial

Ответить
@Xeiarg
@Xeiarg - 16.03.2024 00:53

Do free fire

Ответить
@zakerafk158
@zakerafk158 - 14.03.2024 07:35

You are my inspiration to learn how to code. Gained a follower 🥹

Ответить
@HyperGT240
@HyperGT240 - 13.03.2024 00:40

What’s your new discord so I can add yiu

Ответить
@HyperGT240
@HyperGT240 - 13.03.2024 00:35

hey i keep gettng this error Severity Code Description Project File Line Suppression State Details
Error LNK2001 unresolved external symbol "void __cdecl aimbot::frame(void)" (?frame@aimbot@@YAXXZ) external-cheat-base C:\Users\coew\Downloads\external-cheat-base-master\external-cheat-base\main.obj 1

Ответить
@Darkpsychic.
@Darkpsychic. - 12.03.2024 06:08

yo my thing wont open it says "the system cannot find the file specified"

Ответить
@HyperGT240
@HyperGT240 - 10.03.2024 21:39

Do fortnite

Ответить
@Therenizm
@Therenizm - 10.03.2024 16:05

keep doing game cheats like this my friend

Ответить
@Kifoxxxxe
@Kifoxxxxe - 08.03.2024 03:14

dont work for me

Ответить