You last visited: Today at 11:43
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.
09/12/2012, 08:33
#271
elite*gold: 0
Join Date: Sep 2012
Posts: 106
Received Thanks: 712
Quote:
Originally Posted by
jasper324
what's GM? i can't seem to understand that o.o
GM in GM Mode!!! and use your brain.dll and Run yung Brain.exe!!!
09/12/2012, 17:53
#272
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
question here
do i need to put the NSD into a loop?
09/12/2012, 19:23
#273
elite*gold: 0
Join Date: Nov 2009
Posts: 25
Received Thanks: 9
@caine291ph
yes.
09/13/2012, 11:18
#274
elite*gold: 0
Join Date: May 2011
Posts: 171
Received Thanks: 282
Need sample about a c++ code for a DLL that Exports value... This can be used to accept and use GUI from VStudio. A sample code is appreciated.
09/13/2012, 11:30
#275
elite*gold: 0
Join Date: Sep 2012
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by
Glenox
GM in GM Mode!!! and use your brain.dll and Run yung Brain.exe!!!
whashurprab? need some cookies?
09/13/2012, 11:44
#276
elite*gold: 0
Join Date: Nov 2009
Posts: 25
Received Thanks: 9
Quote:
Originally Posted by
botetebalila
Need sample about a c++ code for a DLL that Exports value... This can be used to accept and use GUI from VStudio. A sample code is appreciated.
there are lots of code available over the net. code interaction with a gui is not something that's specific to creating a game cheat.
09/13/2012, 16:25
#277
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
thanks lowkey04 for your reply got my NSD working
already have GM, AOE, Range, NSD, walkspeed, Combo. still cant get nation and FD hack to work ^^
09/14/2012, 05:08
#278
elite*gold: 0
Join Date: May 2012
Posts: 67
Received Thanks: 12
can some one tell whats wrong with this code?
nothings happen when i press the hot keys
CODE
Quote:
#include "stdafx.h"
#define ADDR_GM 0x1076C40
#define ADDR_AOE 0x10C730C
#define ADDR_RANGE 0x10C7308
#define ADDR_SHOWHP 0x10C7618
int Enabled;
int ShowHP=0;
int SpeedHack=0;
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);
MessageBoxA(HWND_DESKTOP,"Injected","By:SAMPLE",MB _OK);
}
return TRUE;
}
void Start()
{
while (1)
{
if (GetKeyState(VK_F12) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 1500;
*(DWORD*)ADDR_RANGE = 30;
DWORD SPEEDHACK = *(DWORD*)0x0B8CBF0;
*(DWORD*)(SPEEDHACK+0x204) = 1142292480;
Enabled=1;
}
if (GetKeyState(VK_F11) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
DWORD SPEEDHACK = *(DWORD*)0x0B8CBF0;
*(DWORD*)(SPEEDHACK+0x204) = 1138819072;
DWORD NODELAY = *(DWORD*)0x0B8CBF0;
*(DWORD*)(NODELAY+0x72d4) = 1236561;
Enabled=0;
}
if (Enabled==1)
{
DWORD NODELAY = *(DWORD*)0x0B8CBF0;
*(DWORD*)(NODELAY+0x72d4) = 1629697; //Freeze 1629697 = NSD (Dance, press D -> SP Eegen)
DWORD COMBO1 = *(DWORD*)0x0B8CBF0;
*(DWORD*)(COMBO1+0x73a0) = 0; //Freeze 0 = Use Whole Combo bar
DWORD COMBO2 = *(DWORD*)0x0B8CBF0;
*(DWORD*)(COMBO2+0x7384) = 0; //Freeze 0 = Always 1 Combo
}
Sleep(1);
}
}
09/14/2012, 06:05
#279
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
@soultaker17
you need to freeze your NSD and Combo into a loop
hope it helps
09/14/2012, 06:22
#280
elite*gold: 0
Join Date: May 2012
Posts: 67
Received Thanks: 12
Quote:
Originally Posted by
caine291ph
@soultaker17
you need to freeze your NSD and Combo into a loop
hope it helps
how?
09/14/2012, 07:19
#281
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
they discussed it already a few post back
09/14/2012, 15:53
#282
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
how to turn off the gate hack? please help me
09/15/2012, 11:20
#283
elite*gold: 0
Join Date: Jul 2012
Posts: 4
Received Thanks: 1
hi sir?
Quote:
Originally Posted by
PSCBots
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 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 );
}
}
TeraHack
can u make a vb.net code for this one sir?thnx alot..
09/16/2012, 11:31
#284
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
Can someone help me in multi level pointer.
for the Aura/BM cooldown.
09/17/2012, 07:45
#285
elite*gold: 0
Join Date: Jul 2012
Posts: 4
Received Thanks: 1
sir do u have a code for vb.net programming.. plz include also a wall hack code also sir..thnx alot..
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 11:43 .