Baseaddress access denied

10/17/2013 14:52 oOEnyOo#1
Hey,

with cheat engine i can find the baseaddress of many programmes, but if i try to find addresses of engine.exe (kal online) the programm hang cause error like this: no accessable memory. If i check all checkboxes at Settings->Extras it works fine.


Now my problem ... if i try to get data from many games it works fine with my vb.net programm. But if i try to get the baseaddress of engine.exe i get access denied Error.

Any one know how to get the baseaddress? Windows 7 64bit VS2010 VB.Net
10/17/2013 17:48 meak1#2
Code:
DWORD BasePointer = SearchPattern("8B 4D 08 0F B6 51 04 A1 x x x x 89 90 x x x x",0x00400000,0x007FFFFF);
DWORD SpeedOffset = SearchPattern("8B 85 x x x x 8B 88 x x x x 83 C1 64 89 8D x x x x",0x00400000,0x007FFFFF);
DWORD TargetOffset = SearchPattern("50 68 x x x x 8B 4D B4 8B 91 x x x x 52 8B 4D B4",0x00400000,0x007FFFFF);
DWORD BaseP=*(DWORD*)(BasePointer+0x08);
DWORD SpeedO=*(DWORD*)(SpeedOffset+0x08);
Example:

Code:
DWORD dwPlayerPtr = *(DWORD*)BaseP;
//Speedy=*(DWORD*)(dwPlayerPtr+SpeedO);
 DWORD NewSpeed=45;
		 MemcpyEx(DWORD(((DWORD)dwPlayerPtr)+SpeedO),(DWORD)&NewSpeed,4);
10/17/2013 18:01 oOEnyOo#3
Hätte mal reinschreiben sollen das ich vb.net nutze( nachträglich editiert ). Mir sagt das jetzt mal gar nix was du mir als Beispiel gibst.:confused:

so i know what u did

Looking for x at y-z

Last hours i tried to convert it to vb.net but i cant find any solution. May someone can give me a hint.