CS:GO update today made me worry about the offsets that I have here. Wanted to make sure that these were the latest ones before I continue to work on the rest of my program. Also if anyone could help me with a few errors that I am getting with "_________ is unidentified" please and thank you!
Here is the rest of my code that I have
And here are the errors I am receiving
IntelliSense: identifier "GetLocal" is undefined Line 13 Column 21
IntelliSense: identifier "DW_Client" is undefined Line 17 Column 29
IntelliSense: identifier "GetLocal" is undefined Line 24 Column 21
IntelliSense: identifier "DW_Client" is undefined Line 27 Column 20
IntelliSense: identifier "GetInCross" is undefined Line 39 Column 17
IntelliSense: identifier "GetTeamNum" is undefined Line 40 Column 38
Code:
const DWORD LocalPlayer = 0x00a75ccc; //me or current player
const DWORD EntityList = 0x04a17bd4;
const DWORD m_iCrossHairID = 0x00002410; // crosshair
const DWORD SensivityAddress = 0xA7B464; // sens
const DWORD m_iTeamNum = 0x000000f0;
const DWORD EntitySize = 0x10; <-- what is this one?
const DWORD m_fFlags = 0x00000100;
Code:
#include <windows.h>
#include <iostream>
const DWORD LocalPlayer = 0x00a75ccc; //me or current player
const DWORD EntityList = 0x04a17bd4;
const DWORD m_iCrossHairID = 0x00002410; // crosshair
const DWORD SensivityAddress = 0xA7B464; // sens
const DWORD m_iTeamNum = 0x000000f0;
const DWORD EntitySize = 0x10;
const DWORD m_fFlags = 0x00000100;
float GetSens()
{
DWORD PlayerBase = GetLocal();
if (PlayerBase)
{
float result;
memmove(&result, (float*)(DW_Client + SensivityAddress), sizeof(float));
return result;
}
}
void SetSens(float x)
{
DWORD PlayerBase = GetLocal();
if (PlayerBase)
{
memmove((float*)(DW_Client + SensivityAddress), &x, sizeof(float));
}
}
void SensDemo()
{
float OrigSens = NULL;
while (OrigSens == NULL)
OrigSens = GetSens();
while (true) // adjusting the sens
{
int InCross = GetInCross();
if (InCross < 64 && InCross > 0 && GetTeamNum(InCross - 1) != GetTeamNum()) // aiming sens
SetSens((OrigSens*0.3)); // adjusted sens
if (InCross == NULL && GetSens() != OrigSens) // not aiming sens
SetSens(OrigSens);
Sleep(1);
}
}
IntelliSense: identifier "GetLocal" is undefined Line 13 Column 21
IntelliSense: identifier "DW_Client" is undefined Line 17 Column 29
IntelliSense: identifier "GetLocal" is undefined Line 24 Column 21
IntelliSense: identifier "DW_Client" is undefined Line 27 Column 20
IntelliSense: identifier "GetInCross" is undefined Line 39 Column 17
IntelliSense: identifier "GetTeamNum" is undefined Line 40 Column 38
Ver publicacion completa // See full post --> >>MPGH - MultiPlayer Game Hacking & Cheats<<
Thx cornholeo
PostDate: June 11, 2015 at 04:53PM
0 comentarios:
Publicar un comentario