Did You guys were able to get mr argus working? Cuz my premium expired and i`d could tell You how to get it work if You`ll be so kind and give me next year free
Lol i cannot post new post to i`ll just edit this.
First of all you must to find Initcode which is different every time you start POL.
This isn`t really hard.
Here`s the code for it.
#define SCAN_INIT_START 0x100000
#define SCAN_INIT_END 0x1FFFFF
void FindInitCode(DWORD dwModbase, HANDLE hMemory)
{
DWORD dwKod = 67584454;
DWORD dwBuff;
DWORD dwAdres;
dwAdres = dwModbase+SCAN_INIT_START;
//printf("\n Debug: dwAdres = 0x%x \n", dwAdres);
while( /* dwKod != dwBuff || */ dwAdres != dwModbase + SCAN_INIT_END)
{
dwAdres = dwAdres + 0x01;
ReadProcessMemory(hMemory, LPVOID(dwAdres), &dwBuff, 0x04, NULL);
//printf(" Debug: dwAdres = 0x%x, dwBuff(int) = %u \n", dwAdres, dwBuff);
//Sleep(1);
//}
if(dwKod == dwBuff ) {
//printf("Debug: InitCode : %x \n ", dwAdres);
BYTE program[0x30] = {0};
ReadProcessMemory(hMemory, (LPVOID)(dwAdres), program, 0x30, NULL);
memset(program+0x0F, 0x90,

;
WriteProcessMemory(hMemory, (LPVOID)(dwAdres), program, 0x30, NULL);
//printf("Debug: InitCode disabled \n");
}
}
}
This function will disable the init code so targets will stay in memory.
Next thing is TARGETINFO offset i saw you all post them but they just wrong... Don`t use any auto-finding tools if You didn`t wrote it and cannto trust it. I`ve personaly just used art money and calculator to find it, and here it is:
#define OFFSET_TARGETINFO 0x421ACC
Althrought i don`t know if your offset for npc map is good so here you go:
#define OFFSET_NPCMAP 0x3CC2E8
If You do not have programming knowlegde or just lazy i can compile and post binary of working standalone bot.
So?