Register for your free account! | Forgot your password?

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

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

Advertisement



[Release][C++ Code] GM/AOE/Range

Discussion on [Release][C++ Code] GM/AOE/Range within the Cabal Guides & Templates forum part of the Cabal Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2012
Posts: 32
Received Thanks: 777
[Release][C++ Code] GM/AOE/Range

Well, I've got alot of pms asking me how ive done my bot without getting any detection.
Its seems that this community is thinking that nothing can be done without a bypass.

WRONG!

You cant patch memory in cabalmain.exe but you can modify temporary values of the game, such as the GM variables and more without being detected.

Here is the code for making a DLL that enable GM/AOE/Range when pressing F11 and disabling with F12.

Hope it will give a head start for people WHO REALLY WANT TO LEARN.
Those addresses are for Cabal EU.

All you have to do is compile this code and inject the DLL into 'cabalmain.exe'.
Any injector should do the job.

PHP Code:
#include "stdafx.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);
    }




TeraHack
PSCBots is offline  
Thanks
144 Users
Old 07/17/2012, 04:29   #2
 
osyris124's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 137
Received Thanks: 8
Thank you for the codes sir.. Now we can try to make our own DLL file..
Keep on sharing sir! :salute:
osyris124 is offline  
Thanks
1 User
Old 07/17/2012, 05:09   #3
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
hahah my wish has been granted ....
genesisVI is offline  
Thanks
1 User
Old 07/17/2012, 05:20   #4
 
elite*gold: 0
Join Date: Apr 2008
Posts: 116
Received Thanks: 41
thanks sir u a my hero i can learning a noob c++ with this
feiver2000 is offline  
Thanks
1 User
Old 07/17/2012, 06:34   #5
 
osyris124's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 137
Received Thanks: 8
With this code of yours.a Noob Programmer can start with this.. thank you again!
Hope you can share more knowledge of yours.. XD
osyris124 is offline  
Thanks
1 User
Old 07/17/2012, 07:44   #6
 
damn_men's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 98
Received Thanks: 24
very nice one~~it will really help alot,,thanks for this sir
damn_men is offline  
Thanks
4 Users
Old 07/17/2012, 10:01   #7
 
elite*gold: 0
Join Date: Apr 2008
Posts: 116
Received Thanks: 41
@pscbot
i compile u code
PHP Code:
#include <windows.h>

#define    ADDR_GM      0x1075C40
#define    ADDR_AOE     0x10C62DC
#define    ADDR_RANGE   0x10C62D8

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);
    }

and inject it but in game i press f11 but it nothing happen can u tell me where the error??
(i get notthing error in compile )
feiver2000 is offline  
Thanks
3 Users
Old 07/17/2012, 11:51   #8
 
elite*gold: 0
Join Date: Jul 2010
Posts: 22
Received Thanks: 2
Can you make more OPTIONS TNX for PH...
gensler is offline  
Thanks
2 Users
Old 07/17/2012, 12:27   #9
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
@feiver2000
maybe wrong addys or wrong header declaration ...
hope i helped
genesisVI is offline  
Thanks
2 Users
Old 07/17/2012, 16:03   #10
 
elite*gold: 0
Join Date: Apr 2008
Posts: 116
Received Thanks: 41
ok thx for tell me now it compile n works
feiver2000 is offline  
Thanks
1 User
Old 07/17/2012, 17:10   #11
 
elite*gold: 0
Join Date: Mar 2009
Posts: 387
Received Thanks: 1,568
did u read ur error/s..from ur compiler ?
envylang is offline  
Old 07/17/2012, 17:24   #12
 
elite*gold: 0
Join Date: Mar 2008
Posts: 21
Received Thanks: 2
tnx for this post sir,, i can start now studying how to make a dll files tnx 4 this ^^
ANTEC15 is offline  
Old 07/17/2012, 19:32   #13
 
ibonehj15's Avatar
 
elite*gold: 0
Join Date: Aug 2008
Posts: 776
Received Thanks: 97
Quote:
Originally Posted by feiver2000 View Post
ok i ty search on google and edit it
this is my main.cpp
PHP Code:
#include <stdio.h>
#include <stdlib.h>
#include "coba.h"
#include <windows.h>

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);
    }

and this is my header
PHP Code:
#ifndef __COBA_H
#define __COBA_H
#define WIN32_LEAN_AND_MEAN 
#endif

#define    ADDR_GM      0x1075C40
#define    ADDR_AOE     0x10C62DC
#define    ADDR_RANGE   0x10C62D8 
some one help me where my error???
im not a guy who can read those codes/scripts.
but i guess its the timing u inject it. hope that wud be helpful enough
ibonehj15 is offline  
Old 07/17/2012, 22:34   #14
 
elite*gold: 0
Join Date: Aug 2011
Posts: 9
Received Thanks: 2
guys cant u just make an upload of cabalmain.exe and dll injector why so many questions and guids its easyer so
Zivotinja1232 is offline  
Old 07/17/2012, 22:39   #15
 
elite*gold: 0
Join Date: Aug 2008
Posts: 49
Received Thanks: 7
Quote:
Originally Posted by Zivotinja1232 View Post
guys cant u just make an upload of cabalmain.exe and dll injector why so many questions and guids its easyer so
Why do you need cabalmain? Oo
There is no need for bypass...
WrongArrow is offline  
Reply


Similar Threads Similar Threads
Rsro range code.
06/14/2011 - SRO Coding Corner - 0 Replies
I am using Flex Hex program but i cant find how change mob selection range need help. Please Tel my how i can find code.
Range modify ESRO code chaning?
06/14/2011 - SRO Coding Corner - 3 Replies
having toruble with creating a dll... the guy posted the source which is below for his dll that goes with his loader: esroLoaderdll.cpp: #include "windows.h" void WriteMemory(DWORD address, LPVOID patch, DWORD size) { DWORD oldProtect; VirtualProtect((LPVOID)address, 4, PAGE_EXECUTE_READWRITE, &oldProtect); memcpy((LPVOID)address, patch, size);
Range modify EXRO code chaning?
06/13/2011 - SRO Coding Corner - 0 Replies
# delete request no idea why it posted twice
[Release] MS Range CheatEngine
03/13/2010 - S4 League Hacks, Bots, Cheats & Exploits - 19 Replies
entfernt da nur gemault wird
[RELEASE] ATK Range Hack v1.0b
02/19/2008 - Metin2 - 16 Replies
ATK Range Hack v1.0b Working after update ! To use this hack: 1. Start the (ATK Range Hack.exe). 2. Start Metin2. 3. Login into youre acc.



All times are GMT +2. The time now is 04:39.


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