[Release][C++ Code] GM/AOE/Range

08/30/2012 05:22 Tank20#226
Thankssssssssssss
08/31/2012 19:04 kleinidefix#227
with wich command string can i ad pointers in c++?
08/31/2012 20:42 Rudz#228
how to get that ?
09/01/2012 12:58 gameMaster025#229
how to update the pointer?
09/04/2012 05:53 cleech1217#230
thanks! got mine working(ph server).:D
09/07/2012 08:37 glemor1234#231
how do i make this into a .dll file

Quote:
#include <windows.h>

#define ADDR_GM 0x1075C40
#define ADDR_AOE 0x10C62DC
#define ADDR_RANGE 0x10C62D8

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}

if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}

Sleep(1);
}
}
09/08/2012 04:25 keypress14#232
#include <windows.h>

#define ADDR_GM 0x1076C40
#define ADDR_AOE 0x10C730C
#define ADDR_RANGE 0x10C62D8

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}

if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}

Sleep(1);
}
}

i compiled this code and inject but its not working
i got the address here

[Only registered and activated users can see links. Click Here To Register...]
09/08/2012 04:45 syndrah#233
i still havent been able to work after injecting it...
09/08/2012 04:47 audreyxp2012#234
nothing effects.
09/08/2012 11:39 CabalPHGMpakyuALL#235
guys i just wanna ask what compiler best suites for making dll files? thanks eniweyz
09/08/2012 11:45 ichezen23#236
Quote:
Originally Posted by CabalPHGMpakyuALL View Post
guys i just wanna ask what compiler best suites for making dll files? thanks eniweyz
- Visual Studio !
09/08/2012 12:30 audreyxp2012#237
i try the GM / AOE / Range address off sir crckd its not working using the same source code for c++? are this address for cabal ph?
09/08/2012 12:43 ichezen23#238
Quote:
Originally Posted by audreyxp2012 View Post
i try the GM / AOE / Range address off sir crckd its not working using the same source code for c++? are this address for cabal ph?
- Try this [Only registered and activated users can see links. Click Here To Register...] :p
09/08/2012 13:00 audreyxp2012#239
i already try that one. but still the aoe is not working even the combo hack.
09/08/2012 14:57 denz0892#240
Hey I just wanna ask on how can i compile the codes in visual c++? can someone give me some idea, i dont know where to save the file and make it like "cheat.dll" its just compiling and i dont know if the file is sucessfully save. -_- this makes my brain sick, since 8:35am i am trying to search look and find on how can i compile the codes and make it a .dll file