Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Cabal Online
You last visited: Today at 21:34

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

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.

Reply
 
Old   #1
 
skepjen's Avatar
 
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
Talking how to create a cabal trainer?

can you please give me a tutorial on how to create a cabal trainer? if its ok ^^

:hands down:
skepjen is offline  
Old 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
drax189 is offline  
Old 09/07/2012, 01:44   #3
 
feliz009's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 646
Received Thanks: 153
Quote:
Originally Posted by drax189 View Post
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...
feliz009 is offline  
Old 09/07/2012, 01:58   #4
 
genesisVI's Avatar
 
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 hModuleDWORD ulReasonLPVOID lpReserved)
{
    if (
ulReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)Start000);
    }

    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
genesisVI is offline  
Thanks
4 Users
Old 09/07/2012, 09:12   #5
 
skepjen's Avatar
 
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
Quote:
Originally Posted by genesisVI View Post
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 hModuleDWORD ulReasonLPVOID lpReserved)
{
    if (
ulReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)Start000);
    }

    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 ^^
skepjen is offline  
Old 09/07/2012, 10:00   #6
 
кev's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 130
Received Thanks: 184
Quote:
Originally Posted by genesisVI View Post
and a sample code
How about giving credit where credit is due?
кev is offline  
Old 09/07/2012, 13:44   #7
 
skepjen's Avatar
 
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
skepjen is offline  
Old 09/07/2012, 13:57   #8
 
кev's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 130
Received Thanks: 184
Quote:
Originally Posted by skepjen View Post
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.
кev is offline  
Old 09/07/2012, 14:04   #9
 
kheem_t's Avatar
 
elite*gold: 0
Join Date: Mar 2009
Posts: 121
Received Thanks: 15
Quote:
Originally Posted by кev View Post
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
kheem_t is offline  
Old 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..
drax189 is offline  
Old 09/07/2012, 19:19   #11
 
elite*gold: 0
Join Date: Dec 2009
Posts: 11
Received Thanks: 6
Quote:
Originally Posted by drax189 View Post
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
joci9 is offline  
Old 09/07/2012, 21:35   #12
 
skepjen's Avatar
 
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 View Post
that code wont work for you. u cant use hotkeys
its working perfectly on me man ^^
skepjen is offline  
Old 09/08/2012, 01:13   #13
 
bartbilf's Avatar
 
elite*gold: 10
Join Date: May 2008
Posts: 1,803
Received Thanks: 1,947
Quote:
Originally Posted by кev View Post
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
bartbilf is offline  
Old 09/08/2012, 02:07   #14
 
genesisVI's Avatar
 
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
genesisVI is offline  
Thanks
1 User
Old 09/08/2012, 06:36   #15
 
razor45366's Avatar
 
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
razor45366 is offline  
Reply


Similar Threads 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.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.