hi, im building a aimbot and i got to the aiming part, i needed some offsets and i couldnt find anything it in gtamods https://gtamods.com/wiki/Memory_Addresses_(SA)
is there a place i can find these addresses? getting them by cheat engine is very difficult
hi, im trying to get the localplayer current weapon id through offsets i found in https://gtamods.com/wiki/Memory_Addresses_(SA) but it doesnt seem to be working
WORD GetCurrentWeaponID(DWORD PED)
{
if (!PED)
return;
WORD currentWEPID = *(WORD*)((uintptr_t)PED + 0x740)...
how do i get the player camera's x,y,z position ?
i tried
float camX = (float)(0x76F338);
float camY = (float)(0x76F33C);
float camZ = (float)(0x76F340);
didnt work
Hey i have a problem with my esp, when i draw it it works fine but the limit is only up to 300m, some esp hacks even have up to 30000m and mine just doesnt draw above 300m here is the code that im using to draw the esp:
if (Bools.Visuals.BoneESP)
{
for (int i = 0; i < MAX_PLAYERS; i++)
{...
sorry thats not the code , here is the code i talked about:
if (bools::bones)
{
for (int i = 0; i < MAX_PLAYERS; i++)
{
CPool<CPed, CCopPed>* pedPool = CPools::ms_pPedPool;
CPed* ped = pedPool->GetAt(i);
if (ped)
{
ESP_Bones(i, ped);
}...
CPool<CPed, CCopPed>* pedPool = CPools::ms_pPedPool;
if (pedPool) {
for (int i = 0; i < pedPool->m_nSize; i++) {
if (!pedPool->IsFreeSlotAtIndex(i)) {
CPed* ped = pedPool->GetAt(i)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.