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

09/19/2012 01:57 botetebalila#286
The DLL that I created from this got DCed evry 5 minutes when doing AOE in dummy. PM me solutions if anybody got one here, thanks for the help.
09/19/2012 05:46 Glenox#287
Quote:
Originally Posted by albertgwapo View Post
sir do u have a code for vb.net programming.. plz include also a wall hack code also sir..thnx alot..
make it vb.net!!! by hooking!!!
09/20/2012 08:27 audreyxp2012#288
i already have a combo hack code, but the problem is every time i press the hotkey to turn ON the combo hack the game got lag. but when i turn OFF the game run smothly. can you help me please. thanks
09/20/2012 10:54 caine291ph#289
already solve the multi level pointer. for the Aura/BM cooldown. my next question is how can i return to current map value from map 57 hack?
09/21/2012 15:14 mharksubida#290
how to use this cheat
09/21/2012 16:06 Acid#291
Quote:
Originally Posted by mharksubida View Post
how to use this cheat
Read the thread :facepalm:
09/22/2012 19:09 caine291ph#292
finally i got my map 57 hack turned off.

Many thanks to sir bartbilf for his help on this and for patience on me ^^.
09/23/2012 03:14 bartbilf#293
Quote:
Originally Posted by caine291ph View Post
finally i got my map 57 hack turned off.

Many thanks to sir bartbilf for his help on this and for patience on me ^^.
well done caine, well done ;P
09/24/2012 03:30 syndrah#294
incase people want to use spy and toggle back to their original nation heres a sniplet of code you can use.

PHP Code:
#define    ADDR_BASE    0x00A9B820
#define A_NATION    0x0370

int tempnat = *(DWORD*)(ADDR_BASE+A_NATION);
int spy 0;

VOID WINAPI Sleep(
  
_In_  DWORD dwMilliseconds
);

void Start();

void Start(){
    if(
GetKeyState(VK_F9) < 0){
        if(
spy == 0){
            
spy 1;
        }else if(
spy == 1){
            
spy 0;
        }
        
Sleep(1000);
    }
    if(
spy == 1){
        
DWORD NATION = *(DWORD*)ADDR_BASE;*(DWORD*)(NATION+A_NATION) = 3;
    }else if(
spy == 0){
        
DWORD NATION = *(DWORD*)ADDR_BASE;*(DWORD*)(NATION+A_NATION) = tempnat;
    }

this code will put a 1 second delay when you hit f9 to toggle your nation to prevent spamming of the nation change. the sleep function was redefined for my script to be converted to milleseconds as evidenced by the void winapi.

the temptnat will be used to store your "real" nation into a temporary variable. When you press f9 for the first time your nation will be stored into it. and if you press f9 while your gm nation it will revert the value of nation back to what your real one is.

Ofcourse you may want to do an additional check if you log on a different character that has a different nation(example char 1 is proc char 2 is cap).

But i wont give everything out so easy. im sure you can figure these out. The addresses are cabal NA
09/24/2012 04:26 n te conheço#295
someone there has the code address of the cabal online Brazil?
09/26/2012 06:36 dhaxange#296
is the address of the char class changing? coz i tried it to compiled but when i activate it in game, nothings happen. . .one more thing, is the offset of the char class "4E98"? cabal ph here. . . .pls correct me if im wrong. . .tia ^_^
09/30/2012 15:17 kleinidefix#297
my game is closing when i have inject them and want to enable...any solutions?
09/30/2012 15:27 кev#298
Quote:
Originally Posted by kleinidefix View Post
my game is closing when i have inject them and want to enable...any solutions?
This has already been addressed a few times in this thread, read it through. Hint: access violation.

PSC, you should link a few resources in your OP as well as explaining that code + compiler != programmer. Preferably with size 7, bold and blinking.
09/30/2012 20:43 kleinidefix#299
ive read the thread, but i doesnt find a fix for this problem^^
09/30/2012 20:57 кev#300
Quote:
Originally Posted by kleinidefix View Post
ive read the thread, but i doesnt find a fix for this problem^^
No you didn't. Or did you just skip over [Only registered and activated users can see links. Click Here To Register...] (3rd quote)? Basic programming questions are beyond the subject of this forum anyway, or at least this section. But Google is filled with resources on that.

I don't mean to be harsh but you need to get the basics first. Just copypasting a piece of code doesn't cut it, you need to understand it to be able modify it.