Register for your free account! | Forgot your password?

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

  • 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/04/2012, 13:04   #331
 
botetebalila's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 171
Received Thanks: 282
Quote:
Originally Posted by gaijinz View Post
OUTDATED PLZ CLOSED
Nope... Its not outdated. brains will be outdated if you dont know how to explore and code. XD...
botetebalila is offline  
Old 11/04/2012, 13:43   #332
 
elite*gold: 0
Join Date: Jan 2009
Posts: 14
Received Thanks: 0
anybody wanna share perfect combo addys?? TIA
ou812 is offline  
Old 11/09/2012, 14:56   #333
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
Quote:
Originally Posted by keypress14 View Post
Anyone can debug this? bm2 cooldown this code make may PC freeze. tnx!!!
#include "stdafx.h"
#include <windows.h>

#define ADDR_BASE 0x0B87170
#define OFFSET_A 0x20
#define OFFSET_B 0x4A1C
#define OFFSET_BM2 0x124


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_DELETE) < 0) // Turn On
{
DWORD BM2 = *(DWORD*)ADDR_BASE;
*(DWORD*)(BM2+OFFSET_A);
*(DWORD*)(BM2+OFFSET_BM2);
*(DWORD*)(BM2+OFFSET_B)=0;
}

Sleep(10);
}
}
NEED HELP
keypress14 is offline  
Old 11/09/2012, 15:37   #334
 
elite*gold: 0
Join Date: Nov 2012
Posts: 4
Received Thanks: 0
how 2 download
spinx09 is offline  
Old 11/09/2012, 16:02   #335
 
summoner01's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 500
Received Thanks: 146
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);
    }
}
summoner01 is offline  
Thanks
3 Users
Old 11/09/2012, 22:11   #336



 
Acid's Avatar
 
elite*gold: 6851
The Black Market: 186/0/0
Join Date: Oct 2008
Posts: 52,122
Received Thanks: 11,067
Arrow Cabal Hacks, Bots, Cheats, Exploits & Macros -> Cabal Guides & Templates

#moved & sticked
Acid is offline  
Thanks
1 User
Old 11/10/2012, 05:57   #337
 
elite*gold: 0
Join Date: Oct 2012
Posts: 271
Received Thanks: 16
I can't find the C++ in google... and I don't even know what it really looks like.... (I want to learn how to create Cabal NA hacks)
dark23650431 is offline  
Old 11/10/2012, 06:06   #338
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
its not c++ its visual studio
c++ is a language u nid a compiler
genesisVI is offline  
Old 11/10/2012, 08:36   #339
 
elite*gold: 0
Join Date: Oct 2012
Posts: 271
Received Thanks: 16
**** creating a hack is really hard to process... takes time to make a code and most of all finding the addresses..... (Lots of time going to be taken when making hacks)
dark23650431 is offline  
Old 11/10/2012, 11:42   #340
 
elite*gold: 0
Join Date: Dec 2011
Posts: 119
Received Thanks: 43
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.
Very nice Tutorial! But if i Inject the DLL into cabalmain.exe and press F11, Cabal simply closes.
Hanfsalat is offline  
Old 11/11/2012, 06:53   #341
 
elite*gold: 0
Join Date: Oct 2012
Posts: 271
Received Thanks: 16
someone share some C++ code for Cabal NA please even if it's just AOE
dark23650431 is offline  
Old 11/11/2012, 23:37   #342
 
feliz009's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 646
Received Thanks: 153
its the same code .. you only change the addys . correct me if im wrong
feliz009 is offline  
Old 11/12/2012, 00:29   #343
 
bartbilf's Avatar
 
elite*gold: 10
Join Date: May 2008
Posts: 1,803
Received Thanks: 1,947
@dark23650431
feliz009 is right, this is sample code, you need to have the base address and offsets for NA and code those in

PS this thread deserves to be a sticky!
bartbilf is offline  
Old 11/12/2012, 02:19   #344
 
elite*gold: 0
Join Date: Jun 2012
Posts: 17
Received Thanks: 3
Quote:
Originally Posted by bartbilf View Post
@dark23650431
feliz009 is right, this is sample code, you need to have the base address and offsets for NA and code those in

PS this thread deserves to be a sticky!
sir could u share the code c++ for multi-level pointer...
referrence...
base:A9B820
offset1:738
offset2:2A0
offset3:3C8

thanks...
demons_2100 is offline  
Old 11/12/2012, 08:11   #345
 
elite*gold: 0
Join Date: Sep 2012
Posts: 10
Received Thanks: 0
i have no raseon for that
thugslife 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 14:53.


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.