Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Cabal Online > Cabal Guides & Templates
You last visited: Today at 04:19

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



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

Discussion on [TUTORIAL] Making a Trainer Using C++ in easiest way within the Cabal Guides & Templates forum part of the Cabal Online category.

Reply
 
Old 01/09/2013, 08:05   #76
 
elite*gold: 0
Join Date: Jan 2011
Posts: 31
Received Thanks: 1
what should I do? xtrap detects the memory has been edited and closed the game.
warshockPH is offline  
Old 01/09/2013, 11:27   #77
 
elite*gold: 0
Join Date: Mar 2010
Posts: 4
Received Thanks: 1
nice guide, DLL works great. Thanks for sharing.
junruiz82 is offline  
Old 01/09/2013, 16:20   #78
 
elite*gold: 0
Join Date: Dec 2012
Posts: 3
Received Thanks: 0
detected in win 7 32 bit please help.. thanks
delosreyesme is offline  
Old 01/09/2013, 17:26   #79
 
elite*gold: 0
Join Date: Nov 2012
Posts: 3
Received Thanks: 0
keep up da gud work sir
scientistgod is offline  
Old 01/14/2013, 11:42   #80
 
elite*gold: 0
Join Date: Feb 2010
Posts: 8
Received Thanks: 0
AWESOME Guide Mr.Fuji
blade187 is offline  
Old 01/15/2013, 16:30   #81
 
elite*gold: 0
Join Date: Mar 2011
Posts: 14
Received Thanks: 2
Nice.. now i need tut for finding Pointer and offsets.
tagzkienet is offline  
Thanks
1 User
Old 02/05/2013, 16:19   #82
 
LifeStyIe's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 38
Received Thanks: 9
these thread should be sticky dont it ? O.o
LifeStyIe is offline  
Old 02/07/2013, 18:43   #83
 
elite*gold: 0
Join Date: Jul 2012
Posts: 43
Received Thanks: 65
Can you make auto killing/use skills and auto use hp potions, and auto pick up items bot with dll?
If so, can u plzzzz show us how? so we can start learning from it :P
If u can, would you mail me plz?
dersiniar is offline  
Old 02/10/2013, 09:35   #84
 
elite*gold: 0
Join Date: Jul 2012
Posts: 19
Received Thanks: 3
How to create wallhack?? Pls help me??
pisti7771 is offline  
Old 02/10/2013, 11:11   #85
 
elite*gold: 0
Join Date: Jun 2011
Posts: 30
Received Thanks: 1
what should i put to create a WALLHACK in EXTREME CABAL plz help i know how to make DLL but i dont know what will i write
wutangclan01 is offline  
Old 02/10/2013, 12:36   #86
 
elite*gold: 0
Join Date: Jul 2012
Posts: 19
Received Thanks: 3
yeaa pls help me too
pisti7771 is offline  
Old 02/12/2013, 12:05   #87
 
elite*gold: 0
Join Date: Sep 2011
Posts: 32
Received Thanks: 3
How about in Extreme Cabal can someone give sample dll. Thanks.
mansinito is offline  
Old 02/13/2013, 05:08   #88
 
JetroPH's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 352
Received Thanks: 31
Sir FUJI can u help me w/ this..

what to edit here if i only have 3 address

Code:
//BM2 POINTERS 
#define BM2_PTR1 0x3a0
#define BM2_PTR2 0x270
#define BM2_PTR3 0x34c
#define BM2_PTR4 0x124
#define BM2_PTR5 0x20
Code:
DWORD *BM2_1 = (DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1);
	DWORD *BM2_2 = (DWORD*)(*(DWORD*)BM2_1 + BM2_PTR2);
	DWORD *BM2_3 = (DWORD*)(*(DWORD*)BM2_2 + BM2_PTR3);
	DWORD *BM2_4 = (DWORD*)(*(DWORD*)BM2_3 + BM2_PTR4);
	*(DWORD*)(*(DWORD*)BM2_4 + BM2_PTR5) = 0x0;
and here only 1 address

Code:
//NO SKILL DELAY/SP REGEN
#define NSD_PTR1 0x3c8
#define NSD_PTR2 0x2a0
#define NSD_PTR3 0x738
Code:
DWORD *NSD_1 = (DWORD*)(*(DWORD*)ADDR_BASE + NSD_PTR1);
	DWORD *NSD_2 = (DWORD*)(*(DWORD*)NSD_1 + NSD_PTR2);
	*(DWORD*)(*(DWORD*)NSD_2 + NSD_PTR3) = 1629697;

i also got this error..
Code:
Build started 2/12/2013 7:07:21 PM.
     1>Project "c:\Users\cravenxavier\documents\visual studio 2010\Projects\bisyo\bisyo\bisyo.vcxproj" on node 2 (build target(s)).
     1>PrepareForBuild:
         Creating directory "c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\".
       InitializeBuildStatus:
         Creating "Release\bisyo.unsuccessfulbuild" because "AlwaysCreate" was specified.
       ClCompile:
         C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\CL.exe /c /Zi /nologo /W3 /WX- /O2 /Oi /Oy- /GL /D WIN32 /D NDEBUG /D _WINDOWS /D _USRDLL /D BISYO_EXPORTS /D _WINDLL /D _UNICODE /D UNICODE /Gm- /EHsc /MD /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Release\\" /Fd"Release\vc100.pdb" /Gd /TP /analyze- /errorReport:prompt MainDLL.cpp MyCheat.cpp
         MainDLL.cpp
         MyCheat.cpp
       Link:
         C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\bisyo.dll" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Release\bisyo.dll.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\bisyo.pdb" /SUBSYSTEM:WINDOWS /OPT:REF /OPT:ICF /LTCG /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\bisyo.lib" /MACHINE:X86 /DLL Release\MainDLL.obj
         Release\MyCheat.obj
         Generating code
     1>c:\users\cravenxavier\documents\visual studio 2010\projects\bisyo\bisyo\mycheat.cpp(18): warning C4700: uninitialized local variable 'OnSpeed' used
     1>c:\users\cravenxavier\documents\visual studio 2010\projects\bisyo\bisyo\mycheat.cpp(34): warning C4700: uninitialized local variable 'OnBM2' used
     1>c:\users\cravenxavier\documents\visual studio 2010\projects\bisyo\bisyo\mycheat.cpp(47): warning C4700: uninitialized local variable 'OnCombo' used
     1>c:\users\cravenxavier\documents\visual studio 2010\projects\bisyo\bisyo\mycheat.cpp(60): warning C4700: uninitialized local variable 'OnNSD' used
         Finished generating code
         bisyo.vcxproj -> c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\bisyo.dll
       Manifest:
         C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:"c:\users\cravenxavier\documents\visual studio 2010\Projects\bisyo\Release\bisyo.dll;#2" /manifest Release\bisyo.dll.intermediate.manifest
       FinalizeBuildStatus:
         Deleting file "Release\bisyo.unsuccessfulbuild".
         Touching "Release\bisyo.lastbuildstate".
     1>Done Building Project "c:\Users\cravenxavier\documents\visual studio 2010\Projects\bisyo\bisyo\bisyo.vcxproj" (build target(s)).

Build succeeded.

Time Elapsed 00:00:02.29
thanks in advance..
JetroPH is offline  
Old 02/13/2013, 11:01   #89
 
FUJl's Avatar
 
elite*gold: 0
Join Date: Oct 2012
Posts: 235
Received Thanks: 8,667
MULTI LEVEL OFFSET

@JetroPH

1 OFFSET
Code:
	*(DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1) = 0x0;
2 OFFSET
Code:
	DWORD *BM2_1 = (DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1);
	*(DWORD*)(*(DWORD*)BM2_1 + BM2_2) = 0x0;
3 OFFSET
Code:
	DWORD *BM2_1 = (DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1);
	DWORD *BM2_2 = (DWORD*)(*(DWORD*)BM2_1 + BM2_PTR2);
	*(DWORD*)(*(DWORD*)BM2_2 + BM2_3) = 0x0;
4 OFFSET
Code:
	DWORD *BM2_1 = (DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1);
	DWORD *BM2_2 = (DWORD*)(*(DWORD*)BM2_1 + BM2_PTR2);
	DWORD *BM2_3 = (DWORD*)(*(DWORD*)BM2_2 + BM2_PTR3);
	*(DWORD*)(*(DWORD*)BM2_3 + BM2_4) = 0x0;
5 OFFSET
Code:
	DWORD *BM2_1 = (DWORD*)(*(DWORD*)ADDR_BASE + BM2_PTR1);
	DWORD *BM2_2 = (DWORD*)(*(DWORD*)BM2_1 + BM2_PTR2);
	DWORD *BM2_3 = (DWORD*)(*(DWORD*)BM2_2 + BM2_PTR3);
	DWORD *BM2_4 = (DWORD*)(*(DWORD*)BM2_3 + BM2_PTR4);
	*(DWORD*)(*(DWORD*)BM2_4 + BM2_5) = 0x0;
FUJl is offline  
Old 02/13/2013, 11:51   #90
 
geosnuk's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 263
Received Thanks: 52
sir fuji ive pm you about the wallhack in lua script for cheat engine how to make a hotkey on it can you teach me sir?sorry for the off topic
geosnuk is offline  
Reply

Tags
how to cheat, how to create dll, how to create trainer, how to make trainer, making a trainer


Similar Threads Similar Threads
Easiest Way To found the true adress With Cytriik Trainer
05/07/2011 - S4 League Hacks, Bots, Cheats & Exploits - 20 Replies
You need theese Cytriik Trainer Process Hacker Cheat Engine ID List brain.exe Install the Cytriik trainer than open S4 Trainer will auto suspend Aegis and Aegis64
World Easiest and fastest Buff Trainer 4 free
10/09/2010 - 9Dragons - 11 Replies
Hello... why use super Wannabe Advanced buff trainers when you can just use auto keybord when you start 9D with GameGuardKiller? is easy to use.. and it can generate tons of numbers and letters and guees what?.. deelay is 1ms.. or 99999999Ms.. ur choise.. i use this every time.. and is so trust able.. Like : Ve shield Train, Set VE shield at Number 1. then make keystroke, push number 1 then make it generate 5000 and deelay on 1000ms "1 second" or just 100 ms to be sure its fast :) then Make...
[Tutorial]Easiest way unblock ur self from GBL
02/20/2010 - Kal Online - 29 Replies
There are alot of tutorials how to bypass GBL but it is easiest way i think unblock your self from GBL (hardware ban) realy simple, and fast. Download PBDownForce run it and press start spoofing. Also you can set up some options, but it no necessary. Just sometimes :pimp: Sorry was not having time to make virusscan. You can do it your self here: Jotti's malware scan Good luck.
What is easiest tutorial in Fragment hack?
09/01/2009 - Grand Chase Philippines - 11 Replies
i want to duplicate my fragment but how? or easily to get?



All times are GMT +1. The time now is 04:20.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.