Griffin Premium
C++:
||=========================================================||
>> NightStar-AutoLogger <<
>> Games : Rules Of Survival <<
>> Date : 14-4-2018 <<
>> Time : 10:14:46 <<
||=========================================================||
====================> Address Result <===================
||=========================================================||
#define OFS_SPEED 0x175E2C0
#define OFS_NOFALLDMG 0x545038
#define OFS_NOFOG 0xC372DE
#define OFS_UNDERWATER 0x395A5C
#define OFS_NOGRASS 0xC37260
#define OFS_WALKTHROUGH 0x1754F48
||=========================================================||
>> Created By NightStar <<
||=========================================================||
>> Copyright © 2018 <<
||=========================================================||
>> memoryhackers.org <<
||=========================================================||
Örnek olarak;
C++:
define OFS_NOFOG 0xC372DE
int nofog;
DWORD DwRos = (DWORD)GetModuleHandleA("ros.exe");
void PacthHook(void *adress,void *bytes,int size)
{
DWORD dwProtect;
VirtualProtect((void*)adress,size,PAGE_EXECUTE_READWRITE,&dwProtect);
memcpy((void *)adress,(PBYTE)bytes,size);
VirtualProtect((void*)adress,size,dwProtect,&dwProtect);
}
C++:
if (nofog == 1)
{
PacthHook((void *)(DwRos + OFS_NOFOG), (int*)(PBYTE)"\xF3\x0F\x11\x4D\xE8", 5);
}
if (nofog == 0)
{
PacthHook((void *)(DwRos + OFS_NOFOG), (int*)(PBYTE)"\xF3\x0F\x11\x45\xE8", 5);
}