Комментарии:
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.
hello, can i get the source ? thanks
Ответитьcan somone send me the dumber its not available annymore
ОтветитьHey man, I need you to come back and help me. It says there are errors in the build.
Ответить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);
}
when ever i try and use it it just aims at the sky and goes black... then i get kicked out of the game :)
Ответитьmake more videos please
Ответитьman i love you
ОтветитьMake for valorant please
ОтветитьCan i make aimbot for warzone with this method ?
Ответитьhow to open the visual studio?
Ответитьthis dude needs to get more views keep making, good content
Ответить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.
Ответитьi want to make a cheat in xdefiant can u help with a tutorial please
Ответитьhi, for everyone, add if(closest_distance == 0) continue; because entity that is closest to you is always you :)
Ответитьaimbot tutorial que no es para principiantes... hahahahahaah enserio?? dios mio
Ответитьhow do you make a visibility check?
ОтветитьPlease make a internal esp and aimbot. Would love to see that.
Ответитьwhen i press the Lshift it goes straight to the floor. any idea whats wrong?
Ответить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?
I was wondering if you could put this into a ImGui
Ответитьhi how can we smooth the aimbot ? and make maybe close to crosshair aimbot
Ответитьimgui?
Ответить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?
ОтветитьCan this get detected by the anti cheat ?
Ответитьit aims to the floor, maybe they change something?
Ответить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?
Ответитьbro where is d3dx9.h file, where can i found it ?
Ответить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.
Ответитьdo roblox plsss
Ответитьit gets built as a obj file
ОтветитьThank you for sharing your knowledge
ОтветитьAwesome
Ответить"Promosm" 😀
ОтветитьI got LNK2019 in main.obj and LNK1120 in external-cheat-base.exe
Did I just do something wrong or am I just dumb
i take LNK2001, LNK1120 errors in the main.obj , external-cheat-base.exe and aimbot.obj
Ответить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
ОтветитьHello Please fo free fire please,And give me ur gmail so i can contact u pleaee
Ответитьbro pls skin changer tutorial
ОтветитьDo free fire
ОтветитьYou are my inspiration to learn how to code. Gained a follower 🥹
ОтветитьWhat’s your new discord so I can add yiu
Ответить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
yo my thing wont open it says "the system cannot find the file specified"
ОтветитьDo fortnite
Ответитьkeep doing game cheats like this my friend
Ответитьdont work for me
Ответить