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

10/31/2012 06:45 botetebalila#316
if (GetKeyState(VK_F10) < 0)
{
DWORD *CABALBM2 = (DWORD*)(*(DWORD*)0xA9B820 + 0x3a0);
*CABALBM2 = (DWORD*)(*(DWORD*)CABALBM2 + 0x270);
*CABALBM2 = (DWORD*)(*(DWORD*)CABALBM2+ 0x34c);
*CABALBM2 = (DWORD*)(*(DWORD*)CABALBM2+ 0x124);
*CABALBM2 = (DWORD*)(*(DWORD*)CABALBM2+ 0x20);
*CABALBM2 = 0;
}
please show a working code for resetting the BM2 CD.
10/31/2012 17:57 envylang#317
for(;;Sleep(10)) //loop
if(GetKeyState(VK_F10) & 1)
{
//code here
if(GetKeyState(VK_F9) & 1){break;} //im not sure if this will work man althou ive tried
//it before
}
}
another way is to create a handle for it ...then terminate it (if u want to set it off)
10/31/2012 20:54 FUJl#318
Quote:
Originally Posted by botetebalila View Post
Need C++ Code for this assigned to a hotkey. This is Episode 9 PH Addy for BM2 Cool Down.

[Only registered and activated users can see links. Click Here To Register...]

i don't have any bypassed cabalmain or fixedmain to find it out and thanks for your BM2 address, i find out NO COOLDOWN (BM1,BM3, AURA, SKATE DASH AND FADE STEP etc....) :)
11/01/2012 13:07 jimsgift#319
hey guys can you teach me how to creat a dll for cabal.. ? please
11/01/2012 16:32 keypress14#320
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);
}
}
11/01/2012 23:40 arimbaycj1824#321
how this one work plss help me !!
11/02/2012 02:04 nOsir2727#322
Can someone teach mo how to make this file a DLL?? tnx...

sorry guys.. NOOB here... =(
11/02/2012 06:35 whaiizackii#323
sir i get problems when making etc..

# include "stdafx.h"

# define ADDR_GM 0x1075C48
# define ADDR_AOE 0x10C62FC
# define ADDR_RANGE 0x10C62F8

Is there that needs to be fixed in this section ...?
Especially in this section # include "stdafx.h"

Please enlighten his
11/02/2012 09:12 liverelax#324
please help me! i didn't get that!heheh give me steps please!!
11/02/2012 21:32 rod1500#325
Cabal BR?? What is the code?
11/03/2012 02:10 roeben0143#326
What should I type in c++ when inserting Pointer. (ex: pointer of wallhack) PM me.
11/03/2012 16:55 oOdidoOo#327
when i press F11 my cabal process dc.... pls help
11/04/2012 02:58 underswarranty#328
hmm what do i use to make a dll? hmm im making a gues c++?
11/04/2012 03:06 gaijinz#329
OUTDATED PLZ CLOSED
11/04/2012 03:57 syndrah#330
its not outdated, someone just have to find a workaround for dllmain api.