[TUTORIAL] Making a Trainer Using C++ in easiest way

11/20/2012 20:39 Norvzky#16
thx for this sir fuji very helpul...


sir do you have codes that working in windows xp sp3?

please share it sir..thx
11/21/2012 09:22 dark23650431#17
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...
11/21/2012 11:48 FUJl#18
Quote:
Originally Posted by madzkull View Post
how do you find the addresses?
Read [Only registered and activated users can see links. Click Here To Register...]...

Quote:
Originally Posted by kleinidefix View Post
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^^
gameguard in PH funktioniert nicht in Windows 7 Ultimate SP1 64 bit ....
so brauche ich nicht einen Bypass. ^^

Quote:
Originally Posted by Norvzky View Post
thx for this sir fuji very helpul...


sir do you have codes that working in windows xp sp3?

please share it sir..thx
just use calculator to bring it up all offset that worked in Win XP....
and use rantenor CE Table for your reference...

Quote:
Originally Posted by dark23650431 View Post
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...
just turn off/disabled anti-virus to be able to download the injector and use it...
11/21/2012 15:56 kingkong2356#19
WTF AWSOMENESSS super great guy hehehehe tnx fuji i been craving for this code this is a very good start for me tnx hit tnx for u
11/22/2012 03:25 audreyxp2012#20
sir can you teach how to code gate hack and range hack. and how to make panel like you trainer. it appears on the windows of cabal. this is to easy instead of remembering the hot key. thanks
11/22/2012 09:08 tear56#21
sir fuji where can we download the visual studio?
11/22/2012 09:20 oOdidoOo#22
Quote:
Originally Posted by tear56 View Post
sir fuji where can we download the visual studio?
[Only registered and activated users can see links. Click Here To Register...]
11/22/2012 09:48 jcoloma78#23
Quote:
Originally Posted by FUJl View Post
just use calculator to bring it up all offset that worked in Win XP....
and use rantenor CE Table for your reference...
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++.
do we have a different offset value for XP vs Win7?
rantenor CE table is based on Win7 or XP?
11/23/2012 15:14 FUJl#24
For those asking on how to disable cheat in specific map and channel.
takenote: all address in AllDefines.h is based in cabal ph.

MAP INDEX GUIDE

[Only registered and activated users can see links. Click Here To Register...]

AllDefines.h
Code:
//CHANNEL (STATIC ADDRESS)
#define CHANNEL 0x0A93E50

//CURRENT MAP (STATIC ADDRESS)
#define CURRENT_MAP 0x0A9FEA8
MyCheat.h
Code:
//================ 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
	}
}
//=====================================================
MyCheat.cpp
Code:
//================= 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();
//=====================================================
11/23/2012 16:20 9amer#25
Ok, I'm sharing my part of code then:rolleyes:.
How to make the value of walk through gates address reversible, so you can change it anytime you want.

Well it is pretty easy to guess, since there is another address with the same value of the map.

using FUJI's Tutorial do this:

Added Sampe Cheat and Used Multi Level Pointer
-Walk through gates/ kill gates

[u]([colore=red]I will make it for EU (ep8)client[/colore])[u]

AllDefines.h
Code:
//BASE (STATIC ADDRESS)
#define    ADDR_BASE			0x00B8B990

//MAP OFFSET
#define    OFFSET_WLKKLLGTS		0x72e4

//MAP ADDRESS NR2 (STATIC ADDRESS)
#define    ADDR_WLKKLLGTS2		0x00B98BB8
MyCheat.cpp
Code:
//================= 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;
	}
11/23/2012 22:38 audreyxp2012#26
sir share the code for aoe/range hack? i cant turn off the range hack. and if i can turn off the range hack i can not turn on again. (if i press F5 it will turn ON the range hack. but when i press again the F5 nothing happened).

how to make a panel instead of a hotkey. its like a menu
11/24/2012 01:55 shene#27
alldefines.h
PHP Code:
//GM/AOE/RANGE
#define ADDR_GM 0x0E8C410
#define ADDR_AOE 0x0ECF7A4
#define ADDR_RANGE 0x0ECF7A0 
mycheat.cpp
PHP Code:
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;

11/24/2012 04:11 tear56#28
sir how is it done with Dev C++ ?? sorry i dont have Visual Studio
11/25/2012 12:03 romelmirasol#29
hey sir. can you post in windows xp? i request ! ::))
11/25/2012 22:19 drzyzdol#30
i need address Eu: Gm,Aoe,Range