|
You last visited: Today at 21:34
Advertisement
how to create a cabal trainer?
Discussion on how to create a cabal trainer? within the Cabal Online forum part of the MMORPGs category.
09/06/2012, 22:01
|
#1
|
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
|
how to create a cabal trainer?
|
|
|
09/06/2012, 22:08
|
#2
|
elite*gold: 0
Join Date: Nov 2008
Posts: 285
Received Thanks: 60
|
learn c++/other language basics first just google theres millions of them
|
|
|
09/07/2012, 01:44
|
#3
|
elite*gold: 0
Join Date: Mar 2012
Posts: 646
Received Thanks: 153
|
Quote:
Originally Posted by drax189
learn c++/other language basics first just google theres millions of them
|
he´s asking for a tutorial , you think he will learn to code from one day to other?if that was easy...
|
|
|
09/07/2012, 01:58
|
#4
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
actually its easy if u only want AOE/RANGE
u just nid a compiler , i use visual studio 2010
and a sample code
PHP Code:
#include "windows.h"
#define ADDR_GM 0x1075C48 #define ADDR_AOE 0x10C62FC #define ADDR_RANGE 0x10C62F8
void Start();
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved) { if (ulReason == DLL_PROCESS_ATTACH) { CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0); }
return TRUE; }
void Start() { while (1) { if (GetKeyState(VK_F11) < 0) // Turn On { *(DWORD*)ADDR_GM = 2; *(DWORD*)ADDR_AOE = 100; *(DWORD*)ADDR_RANGE = 7; } if (GetKeyState(VK_F12) < 0) // Turn Off { *(DWORD*)ADDR_GM = 0; *(DWORD*)ADDR_AOE = 0; *(DWORD*)ADDR_RANGE = 0; } Sleep(1); } }
dont ask me where to put these codes
ask google
u nid to edit the addresses that fits ur server
|
|
|
09/07/2012, 09:12
|
#5
|
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
|
Quote:
Originally Posted by genesisVI
actually its easy if u only want AOE/RANGE
u just nid a compiler , i use visual studio 2010
and a sample code
PHP Code:
#include "windows.h"
#define ADDR_GM 0x1075C48
#define ADDR_AOE 0x10C62FC
#define ADDR_RANGE 0x10C62F8
void Start();
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}
return TRUE;
}
void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}
if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}
Sleep(1);
}
}
dont ask me where to put these codes
ask google
u nid to edit the addresses that fits ur server
|
ty sir i already downloaded a visual studio c++ ill try it now ^^
|
|
|
09/07/2012, 10:00
|
#6
|
elite*gold: 0
Join Date: Aug 2012
Posts: 130
Received Thanks: 184
|
Quote:
Originally Posted by genesisVI
and a sample code
|
How about giving credit where credit is due?
|
|
|
09/07/2012, 13:44
|
#7
|
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
|
i got a proble after i start debugging it says. unable to start program blah blah blah... and at the buttom access denied
|
|
|
09/07/2012, 13:57
|
#8
|
elite*gold: 0
Join Date: Aug 2012
Posts: 130
Received Thanks: 184
|
Quote:
Originally Posted by skepjen
i got a proble after i start debugging it says. unable to start program blah blah blah... and at the buttom access denied
|
Debugging dlls through VS integrated debugger doesn't work like that, dlls aren't standalone components and thus don't run on their own.
You need to start from the ground up, you won't learn any programming language or debugging from a tutorial or two. I could spoonfeed you everything but all you need is already on this forum so I won't.
|
|
|
09/07/2012, 14:04
|
#9
|
elite*gold: 0
Join Date: Mar 2009
Posts: 121
Received Thanks: 15
|
Quote:
Originally Posted by кev
Debugging dlls through VS integrated debugger doesn't work like that, dlls aren't standalone components and thus don't run on their own.
You need to start from the ground up, you won't learn any programming language or debugging from a tutorial or two. I could spoonfeed you everything but all you need is already on this forum so I won't. 
|
it would be nice if you could for us noobs
so other noober than me can stop begging
|
|
|
09/07/2012, 18:46
|
#10
|
elite*gold: 0
Join Date: Nov 2008
Posts: 285
Received Thanks: 60
|
genesisVI's post is enough for anyone to make many hacks like (gm range aoe)no cooldown zoom hack etc, for other hacks that need pointers google for sure u will find something
but first u must learn basics ofc if u wanna know even how to just export dll and more..
|
|
|
09/07/2012, 19:19
|
#11
|
elite*gold: 0
Join Date: Dec 2009
Posts: 11
Received Thanks: 6
|
Quote:
Originally Posted by drax189
genesisVI's post is enough for anyone to make many hacks like (gm range aoe)no cooldown zoom hack etc, for other hacks that need pointers google for sure u will find something
but first u must learn basics ofc if u wanna know even how to just export dll and more..
|
that code wont work for you. u cant use hotkeys
|
|
|
09/07/2012, 21:35
|
#12
|
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
|
1>------ Build started: Project: Trainer, Configuration: Release Win32 ------
1> Form1.cpp
1> MainDLL.cpp
1> Generating code
1> Finished generating code
1> Trainer.vcxproj -> c:\users\xian\documents\visual studio 2010\Projects\Trainer\Release\Trainer.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
yeeeeeeeeeeeeeeeeeeeeeeeeeeessssssssssssssssssssss ssssss!!!!!!!!!!!
atlast ive successfully create a working trainer wooooooooooo!
tnx so much sir genisis! ^^
Quote:
Originally Posted by joci9
that code wont work for you. u cant use hotkeys
|
its working perfectly on me man ^^
|
|
|
09/08/2012, 01:13
|
#13
|
elite*gold: 10
Join Date: May 2008
Posts: 1,803
Received Thanks: 1,947
|
Quote:
Originally Posted by кev
How about giving credit where credit is due?
|
@genesisVI
like kev said, give the credits (or post the link instead of the sample code), this is code from PSCBots' thread
|
|
|
09/08/2012, 02:07
|
#14
|
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
|
oh yah sorry about that im on a hurry 
here
u could find some hints there on the comments like how to freeze a value
and multi lvl pointers just read the thread and i think its on page 11 that sample codes posted
just do a little reading
|
|
|
09/08/2012, 06:36
|
#15
|
elite*gold: 0
Join Date: Mar 2010
Posts: 82
Received Thanks: 7
|
i wanna learn!... i think dev c++ can compile but its not effective
|
|
|
Similar Threads
|
How create a trainer in cheat engine, and how to create autoassemble scripts [16 June
06/17/2012 - Facebook - 3 Replies
Many people asked me that...
Maybe some of these people are from here.. or maybe not..
Anyway.. heres 25 minutes video ;D which should help?
How create a trainer in cheat engine, and how to create autoassemble scripts - YouTube
And yea..
I noticed that there 360p and 720p only.. no idea where the 460p gone... :x
put 720p and full screen, otherwise in normal size its looks crappy
|
Want create a own trainer
07/26/2009 - Dekaron - 6 Replies
can some say me some progs to create a trainer???
|
All times are GMT +1. The time now is 21:34.
|
|