Jump to content

Featured Replies

Posted

Hi guys! i need the adresse of the enemies the includes the information of the PLayerPosition!

And the adress of my angle of view would be nice and usefull too!

It's for my extern Aimb0t + ESP which im going to release when it's finished:cool:

  • 2 weeks later...
Teh adresse is: ******street 18

His phone number is 0900 - N1GG3R.

 

You sir, are a FUCKING ***got.

you do not tell us which game you are working on and by the sound of your post I seriously doubt you could write an aimbot and esp...
  • Author
i think u all know the cvar command snd_show 1 at cs:s.... and i need the extern adress of the position of the enemies
Hi guys! i need the adresse of the enemies the includes the information of the PLayerPosition!

And the adress of my angle of view would be nice and usefull too!

It's for my extern Aimb0t + ESP which im going to release when it's finished:cool:

rite well once your finished send me a copy, until then mpcdownloads(google it) may be your friend.

i think u all know the cvar command snd_show 1 at cs:s.... and i need the extern adress of the position of the enemies

 

that would only be useful for sound esp :/

  • Author
thaht should show that the adress of the enemies posi exists....but i tried a lot of things to find the right adress....but no success.....maybe u could help me wav ?
the sound positions are stored into a string so find the pointer to the string in memory and parse it and render esp.

cl_pdump 1

 

it shows you the xyz pos of any entity if you make your own server. make a server with a bot and use that plus artmoney to find the value in memory. but you need to use pointers to be useful at all.

  • Author

ok... i found what i needed but there's a other problem....i want to set my angle of view on the enemy.....but i think the adress is protected....here is the addr + my writemem function

 

 

 

//WriteMem functon

void WriteMem(char* window, LPCVOID address, int value)

{

HWND hWnd = FindWindow(0, window);

DWORD proc_id;

GetWindowThreadProcessId(hWnd, &proc_id);

HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);

BYTE newdata=value;

DWORD newdatasize = sizeof(newdata);

WriteProcessMemory(hProcess, (LPVOID)address, &newdata, newdatasize, 0);

CloseHandle(hProcess);

}

 

 

WriteMem("Counter-Strike Source", (LPCVOID)0x0DF69140, pitch);

WriteMem("Counter-Strike Source", (LPCVOID)0x0DF69144, yaw);

 

need help:wow:

Guest
This topic is now closed to further replies.