Register for your free account! | Forgot your password?

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

  • 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 11/12/2012, 09:34   #346
 
elite*gold: 0
Join Date: Jan 2009
Posts: 14
Received Thanks: 0
anybody want to share perfect combo offsets for cabal PH. TIA
ou812 is offline  
Old 11/16/2012, 16:43   #347
 
elite*gold: 0
Join Date: Oct 2012
Posts: 9
Received Thanks: 1
waaaaa my brain wanted to explode.. i wish i could turn back time, i will take computer programing course, not nautical. could someone teach me where to start or what program should i use? im really interested to learn, i dont have work for now so it means i have 24/7 time to research, but i have to know where to start, please someone there help me, just pm me and link the programs or tutorial, thank you so much guys...
UPAW is offline  
Old 11/17/2012, 05:01   #348
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
Quote:
Originally Posted by UPAW View Post
waaaaa my brain wanted to explode.. i wish i could turn back time, i will take computer programing course, not nautical. could someone teach me where to start or what program should i use? im really interested to learn, i dont have work for now so it means i have 24/7 time to research, but i have to know where to start, please someone there help me, just pm me and link the programs or tutorial, thank you so much guys...
compiler:


simple tut:


video tut:

basic programing:
genesisVI is offline  
Thanks
1 User
Old 11/17/2012, 05:57   #349
 
elite*gold: 0
Join Date: Oct 2012
Posts: 9
Received Thanks: 1
Smile

Quote:
Originally Posted by genesisVI View Post
compiler:


simple tut:


video tut:


basic programing:
thank you so much sir your my hero.. mwuah mwuah tsup tsup.
UPAW is offline  
Old 11/22/2012, 14:28   #350
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
has anyone noticed that cabal na blocked the maindll attach process? mine just stopped working....
syndrah is offline  
Old 11/28/2012, 01:12   #351
 
skepjen's Avatar
 
elite*gold: 0
Join Date: Jul 2012
Posts: 147
Received Thanks: 10
Quote:
Originally Posted by Hanfsalat View Post
Very nice Tutorial! But if i Inject the DLL into cabalmain.exe and press F11, Cabal simply closes.
change the address to your cabal server address coz some of cabal servers has diffirent address
skepjen is offline  
Old 12/05/2012, 00:57   #352
 
elite*gold: 0
Join Date: Jun 2011
Posts: 10
Received Thanks: 0
Quote:
Originally Posted by summoner01 View Post
Successfully compiled. At first I had issues since I'm not used to C++ at all, but after reading some posts, I figured it out.

Compiler:
Microsoft Windows Studio Express 2012 for Windows Desktop
Download:

DLL Creation Process:
  1. New Project
  2. Win32 Console Application
  3. Name your project --> Hit OK
  4. Click Next
  5. Change Application Type: to DLL
  6. Check the box, Empty Project under Additional Options --> Hit Finish
  7. Look on the right side of the screen for Source Files
  8. Right click on Source Files and click Add --> New Item
  9. In the Add New Item - your application name window, select C++ File(.cpp). Give it a name, and hit Add
  10. Click on the new .cpp file you just added under Source Files.
  11. To the left of your screen is where you have to put the Code.
  12. Copy and paste the Code Below, and change stdafx.h to windows.h
  13. Hit File at the top left of your screen, and hit Save All
  14. Click BUILD --> Build Solution
  15. DLL creation complete.

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

Altered Code to make it compile:
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);
    }
}



i've already done this when i press f11 poooff nothing happens ) can somebody tell me why?
x2pher012 is offline  
Old 12/23/2012, 05:53   #353
 
elite*gold: 0
Join Date: Jul 2011
Posts: 3
Received Thanks: 0
how to get addr for cabal softnyx?
satta87 is offline  
Old 01/09/2013, 02:06   #354
 
elite*gold: 0
Join Date: Sep 2010
Posts: 11
Received Thanks: 0
I'll try this guide but i cant find the updated adress of Cabal NA, can anyone help?
abrahan_m is offline  
Old 02/26/2013, 07:53   #355
 
elite*gold: 0
Join Date: Jul 2012
Posts: 66
Received Thanks: 4
Base Address: 00B87170
Gm Address: 01071218
Range Address: 010C0EC4
Map Base: 01077528
AOE Address: 010C1864

can some one help me on this?
niceguy0998 is offline  
Old 04/27/2013, 05:01   #356
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
yea i cant find the updated cabal na addresses also.

need following addresses

GM or View HP
Nation
Movement
NCD
Perfect Combo
no CD BM
syndrah is offline  
Old 05/13/2013, 18:56   #357
 
nasyer_boy's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 352
Received Thanks: 347
ca anyone here teach me how to code in float????

Sample address:

#define BASE_ADD 0x00745879
#define X_offset 0x264
#define Y_offset 0x268


how to incode that in float???

please help
nasyer_boy is offline  
Old 05/19/2013, 17:09   #358
 
elite*gold: 0
Join Date: Aug 2012
Posts: 8
Received Thanks: 0
Base Address: 00B93530
Gm Address: 0107D588
Range Address: 010CD2A4
Map Base: 010838D8
AOE Address: 010CDC44

Try MY own Address
shinzue29 is offline  
Old 05/21/2013, 11:16   #359
 
Wayntressierts's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 424
Received Thanks: 422
Quote:
Originally Posted by nasyer_boy View Post
ca anyone here teach me how to code in float????

Sample address:

#define BASE_ADD 0x00745879
#define X_offset 0x264
#define Y_offset 0x268


how to incode that in float???

please help
These are just typeless Constants.
To set a FLOAT value simply declare your variable as pointer to a FLOAT instead of DWORD.
Wayntressierts is offline  
Thanks
1 User
Old 05/26/2013, 17:55   #360
 
elite*gold: 0
Join Date: Sep 2012
Posts: 2
Received Thanks: 1
@Wayntressierts

#include "windows.h"

#define ADDR_BASE 0x0B93530
#define ADDR_GM 0x107D588
#define ADDR_AOE 0x10CDC44
#define ADDR_RANGE 0x10CD2A4

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

Sir. Here's the one I made. Got the addresses of my game. But when I press F11, the game closes. What's wrong?
superpheng 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 +1. The time now is 17:59.


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.