thx for this sir fuji very helpul...
sir do you have codes that working in windows xp sp3?
please share it sir..thx
sir do you have codes that working in windows xp sp3?
please share it sir..thx
Read [Only registered and activated users can see links. Click Here To Register...]...Quote:
how do you find the addresses?
gameguard in PH funktioniert nicht in Windows 7 Ultimate SP1 64 bit ....Quote:
wenn ich das ding über nen bypass laufen lasse funzt es,alles gut und schön.... aber da is ja der hund begraben.ich möcht das ding ja schließlich ohne bypass haben und ich hab keine ahnung wie ich die memory protection umgehe.für einen hilfreichen hinweis wäre ich sehr dankbar^^
just use calculator to bring it up all offset that worked in Win XP....Quote:
thx for this sir fuji very helpul...
sir do you have codes that working in windows xp sp3?
please share it sir..thx
just turn off/disabled anti-virus to be able to download the injector and use it...Quote:
I can't download the injectors T_T it will say Virus .... but I know it suppose to be virus but still my PC won't able me to download it...
[Only registered and activated users can see links. Click Here To Register...]Quote:
sir fuji where can we download the visual studio?
what do you mean by bring up all offset that worked on Win XP? how do we know what to add, sorry for noob question still learning C++.Quote:
just use calculator to bring it up all offset that worked in Win XP....
and use rantenor CE Table for your reference...
//CHANNEL (STATIC ADDRESS) #define CHANNEL 0x0A93E50 //CURRENT MAP (STATIC ADDRESS) #define CURRENT_MAP 0x0A9FEA8
//================ Get Current Map ====================
int GetCurrentMap()
{
return *(DWORD*)CURRENT_MAP;
}
//=====================================================
//===== DISABLE CHEAT IN MWAR/WARZONE/PUBLIC PLACE ====
bool IsValidMaP()
{
if (*(DWORD*)CHANNEL == 16){return false;}
switch (GetCurrentMap())
{
case 1:return false;break;//BI
case 2:return false;break;//GD
case 3:return false;break;//DS
case 15:return false;break;//MWAR
case 16:return false;break;//MWAR
default:return true;break;//VALID MAP
}
}
//=====================================================
//================= NO SKILL DELAY =====================
if (GetKeyState(VK_F8) < 0)
{
if (IsValidMaP())
{
if(!OnNSD){
OnNSD = true;
MessageBoxA (NULL,"No Skill Delay ON",CAPTION,MB_OK);
}else{
OnNSD = false;
MessageBoxA (NULL,"No Skill Delay OFF",CAPTION,MB_OK);
}
}else{
MessageBoxA (NULL,"You cannot activate NSD in Mwar/Warzone/Public Place",Caption,MB_OK);
}
}
//=====================================================
//=========== FREEZING VALUE ==========================
if (IsValidMaP())
{
//RESTRICTED CHEAT
if(OnNSD) NSD();
}
if(OnSpeed) MOVE_SPEED(600.0);
if(OnBM2) NOCD_BM2();
if(OnCombo) NOCD_COMBO();
//=====================================================
//BASE (STATIC ADDRESS) #define ADDR_BASE 0x00B8B990 //MAP OFFSET #define OFFSET_WLKKLLGTS 0x72e4 //MAP ADDRESS NR2 (STATIC ADDRESS) #define ADDR_WLKKLLGTS2 0x00B98BB8
//================= WALK THROUGH GATES =====================
if (GetAsyncKeyState(VK_F1) < 0) // Turn On
{
*(DWORD*)(*(DWORD*)ADDR_BASE + OFFSET_WLKKLLGTS) = 1;
}
if (GetAsyncKeyState(VK_F1) < 0 && GetAsyncKeyState(VK_F2) < 0 ) // Turn Off
{
*(DWORD*)(*(DWORD*)ADDR_BASE + OFFSET_WLKKLLGTS) = *(DWORD*)ADDR_WLKKLLGTS2;
}
//GM/AOE/RANGE
#define ADDR_GM 0x0E8C410
#define ADDR_AOE 0x0ECF7A4
#define ADDR_RANGE 0x0ECF7A0
if (GetKeyState(VK_F5) < 0)
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 5; <<<any value
*(DWORD*)ADDR_RANGE = 3; <<<any value
}
if (GetKeyState(VK_F6) < 0)
{
*(DWORD*)ADDR_GM = 0
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}