You last visited: Today at 01:10
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.
11/04/2012, 13:04
#331
elite*gold: 0
Join Date: May 2011
Posts: 171
Received Thanks: 282
Quote:
Originally Posted by
gaijinz
OUTDATED PLZ CLOSED
Nope... Its not outdated. brains will be outdated if you dont know how to explore and code. XD...
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
11/09/2012, 14:56
#333
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
Quote:
Originally Posted by
keypress14
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
11/09/2012, 15:37
#334
elite*gold: 0
Join Date: Nov 2012
Posts: 4
Received Thanks: 0
how 2 download
11/09/2012, 16:02
#335
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:
New Project
Win32 Console Application
Name your project --> Hit OK
Click Next
Change Application Type: to DLL
Check the box, Empty Project under Additional Options --> Hit Finish
Look on the right side of the screen for Source Files
Right click on Source Files and click Add --> New Item
In the Add New Item - your application name window, select C++ File(.cpp). Give it a name, and hit Add
Click on the new .cpp file you just added under Source Files.
To the left of your screen is where you have to put the Code.
Copy and paste the Code Below, and change stdafx.h to windows.h
Hit File at the top left of your screen, and hit Save All
Click BUILD --> Build Solution
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);
}
}
11/09/2012, 22:11
#336
elite*gold: 6851
Join Date: Oct 2008
Posts: 52,122
Received Thanks: 11,067
Cabal Hacks, Bots, Cheats, Exploits & Macros -> Cabal Guides & Templates
#moved & sticked
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)
11/10/2012, 06:06
#338
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
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)
11/10/2012, 11:42
#340
elite*gold: 0
Join Date: Dec 2011
Posts: 119
Received Thanks: 43
Quote:
Originally Posted by
summoner01
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:
New Project
Win32 Console Application
Name your project --> Hit OK
Click Next
Change Application Type: to DLL
Check the box, Empty Project under Additional Options --> Hit Finish
Look on the right side of the screen for Source Files
Right click on Source Files and click Add --> New Item
In the Add New Item - your application name window, select C++ File(.cpp). Give it a name, and hit Add
Click on the new .cpp file you just added under Source Files.
To the left of your screen is where you have to put the Code.
Copy and paste the Code Below, and change stdafx.h to windows.h
Hit File at the top left of your screen, and hit Save All
Click BUILD --> Build Solution
DLL creation complete.
Very nice Tutorial! But if i Inject the DLL into cabalmain.exe and press F11, Cabal simply closes.
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
11/11/2012, 23:37
#342
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
11/12/2012, 00:29
#343
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!
11/12/2012, 02:19
#344
elite*gold: 0
Join Date: Jun 2012
Posts: 17
Received Thanks: 3
Quote:
Originally Posted by
bartbilf
@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...
11/12/2012, 08:11
#345
elite*gold: 0
Join Date: Sep 2012
Posts: 10
Received Thanks: 0
i have no raseon for that
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 01:10 .