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

07/17/2012 23:40 PSCBots#16
Quote:
Originally Posted by Zivotinja1232 View Post
guys cant u just make an upload of cabalmain.exe and dll injector why so many questions and guids its easyer so
Its for making noobs who dont care about learning go away.
If you guys got it all done and inject and doesn't work, it simply mean the addresses aren't for your cabal region, ITS FOR EU!
07/18/2012 01:00 bartbilf#17
@PSCBots
Wth, this looks very similar to the stuff I made myself, but I never tried to just inject GM/AOE/Range, this method would not work for lets say, no skill delay?
07/18/2012 01:23 mi5pogi#18
Quote:
Originally Posted by bartbilf View Post
@PSCBots
Wth, this looks very similar to the stuff I made myself, but I never tried to just inject GM/AOE/Range, this method would not work for lets say, no skill delay?
you have to add the base address and offset address for none static adress then make a loop to freeze the value of no skill delay or combo hack.:)
07/18/2012 01:37 PSCBots#19
Quote:
Originally Posted by bartbilf View Post
@PSCBots
Wth, this looks very similar to the stuff I made myself, but I never tried to just inject GM/AOE/Range, this method would not work for lets say, no skill delay?
I told you that you might have done something wrong.

Quote:
Originally Posted by mi5pogi View Post
you have to add the base address and offset address for none static adress then make a loop to freeze the value of no skill delay or combo hack.:)
You're right.

Guys, this is a big headstart tutorial right there, you just have to learn pointers in order to do NSD and voila... easy.. atleast for people who care to learn ;)
07/18/2012 01:51 bartbilf#20
Quote:
Originally Posted by mi5pogi View Post
you have to add the base address and offset address for none static adress then make a loop to freeze the value of no skill delay or combo hack.:)
I did lol, my DLL's did work when injected into a bypassed client. Without a problem, but when used in an official client.. it crashes within few minutes. But I'll try to inject just GM/Aoe the way I code them, to check if that causes a crash;p
07/18/2012 02:08 zremchs21#21
thank you sir i've been searching a couple of week for this code
07/18/2012 02:39 PSCBots#22
Quote:
Originally Posted by bartbilf View Post
I did lol, my DLL's did work when injected into a bypassed client. Without a problem, but when used in an official client.. it crashes within few minutes. But I'll try to inject just GM/Aoe the way I code them, to check if that causes a crash;p
Your problem is 100% bad addresses.
Probably your bypassed client is older than the official client.
07/18/2012 03:25 bartbilf#23
@PSCBots
I made 2 different DLL's, one for the old bypassed client and one for the new cabalmain. My hack works on the cabalmain as well, but it gets detected after a few minutes.

Could it be because I've included a GUI?

EDIT: LOL, it was the freaking GUI that got it detected, without it, it works fine. I could have had undetected cheats 2 months ago!
07/18/2012 05:55 feiver2000#24
@pcsbot can u tell me where my error?
ps nevermind i already solved my error thx for the source ^^
07/18/2012 06:06 genesisVI#25
got everything workin ... nxt up bot source code :D
07/18/2012 06:21 lekcis#26
So basically you just need to create a new thread overlapping the original script?
So as long as you have the right addresses, you'll be able to inject any cheat you want right? If this is right, it has always been in front of me. Damn it. Some people will really mess you up. Thanks for this. Btw, with this, can we create new codes for the NSD spamming so it won't get you disconnected? I believe this would be harder than the rest of the hacks but is it possible?
07/18/2012 06:33 thesinerd#27
so quick question, are the values on the first post the actual values atm?
07/18/2012 06:36 PierceTheGreat#28
Quote:
Originally Posted by PSCBots View Post
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 hModuleDWORD ulReasonLPVOID lpReserved)
{
    if (
ulReason == DLL_PROCESS_ATTACH)
    {
        
CreateThread(00, (LPTHREAD_START_ROUTINE)Start000);
    }

    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


What should I use? Visual Basic or Visual Studio? Need help please.:handsdown::handsdown::handsdown::handsdown ::handsdown::handsdown::handsdown::handsdown::hand sdown::handsdown::handsdown::handsdown::handsdown: :handsdown::handsdown::handsdown::handsdown::hands down:
07/18/2012 07:20 Doomnezau#29
Visual Studio. i had the same question and he answered me on a pm. Great release.
07/18/2012 07:59 feiver2000#30
ok now how to add pointer address? any want to share???