Page 2 of 2 FirstFirst 12
Results 16 to 25 of 25
  1. #16
    DAGER-05's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Acea View Post
    The cheat runs for 3 hours perfectly fine?
    yes, i have played one week and today crash

  2. #17
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    Quote Originally Posted by DAGER-05 View Post
    yes, i have played one week and today crash
    Maybe a random crash?

  3. #18
    DAGER-05's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Acea View Post
    Maybe a random crash?
    no bro without hack no crash, i have 4 acc, the same, can you maybe modify the detour?

  4. #19
    DAGER-05's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    or this detour
    VOID *DetourCreate(BYTE *src, const BYTE *dst, const int len)
    {
    int pPointer [] = { 0xE9, 0x90 };
    BYTE *jmp = (BYTE *)malloc(len + 5);
    DWORD dwback;
    VirtualProtect(src, len, PAGE_READWRITE, &dwback);
    memcpy(jmp, src, len);
    jmp += len;
    jmp[0] = pPointer[0];
    *(DWORD *)(jmp + 1) = (DWORD)(src + len - jmp) - 5;
    src[0] = pPointer[0];
    *(DWORD *)(src + 1) = (DWORD)(dst - src) - 5;
    for(INT i = 5; i < len; i++) src[i] = pPointer[1];
    VirtualProtect(src, len, dwback, &dwback);

    return(jmp - len);
    }

  5. #20
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    Quote Originally Posted by DAGER-05 View Post
    no bro without hack no crash, i have 4 acc, the same, can you maybe modify the detour?
    Ok I'm going to ask a few questions just answer them.

    How many times have you tried today
    Has every attempt done the same thing
    Have you commented out the ptc hacks?

  6. #21
    DAGER-05's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Acea View Post
    Ok I'm going to ask a few questions just answer them.

    How many times have you tried today
    Has every attempt done the same thing
    Have you commented out the ptc hacks?
    yes i use PTC, to mony times i dont know how much, 3 week ago i had another detour and 3 day ago i have it changed to this

    void *cDirectx:esvioJMP(BYTE *src, CONST BYTE *dst, CONST INT len)
    {
    BYTE *jmp=(BYTE*)malloc(len+5);
    DWORD dwback;
    VirtualProtect(src,len,PAGE_READWRITE,&dwback);
    memcpy(jmp,src,len);jmp+=len;jmp[0]=JMP+0x1E;
    *(DWORD*)(jmp+1)=(DWORD)(src+len-jmp)-5;
    src[0]=JMP+0x1E;
    *(DWORD*)(src+1)=(DWORD)(dst-src)-5;
    for(INT i=5;i<len;i++)src[i]=0x90;
    VirtualProtect(src,len,dwback,&dwback );
    FlushInstructionCache(GetCurrentProcess(),src,0x10 );
    return(jmp-len);
    }
    and 3 days i played fine, but today crash why, i dont know((

  7. #22
    DAGER-05's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    0
    the old my detour was this
    VOID *DetourCreate(BYTE *src, const BYTE *dst, const int len)
    {
    int pPointer [] = { 0xE9, 0x90 };
    BYTE *jmp = (BYTE *)malloc(len + 5);
    DWORD dwback;
    VirtualProtect(src, len, PAGE_READWRITE, &dwback);
    memcpy(jmp, src, len);
    jmp += len;
    jmp[0] = pPointer[0];
    *(DWORD *)(jmp + 1) = (DWORD)(src + len - jmp) - 5;
    src[0] = pPointer[0];
    *(DWORD *)(src + 1) = (DWORD)(dst - src) - 5;
    for(INT i = 5; i < len; i++) src[i] = pPointer[1];
    VirtualProtect(src, len, dwback, &dwback);

    return(jmp - len);
    }
    but its crashed and i have changed to this
    void *cDirectx:esvioJMP(BYTE *src, CONST BYTE *dst, CONST INT len)
    {
    BYTE *jmp=(BYTE*)malloc(len+5);
    DWORD dwback;
    VirtualProtect(src,len,PAGE_READWRITE,&dwback);
    memcpy(jmp,src,len);jmp+=len;jmp[0]=JMP+0x1E;
    *(DWORD*)(jmp+1)=(DWORD)(src+len-jmp)-5;
    src[0]=JMP+0x1E;
    *(DWORD*)(src+1)=(DWORD)(dst-src)-5;
    for(INT i=5;i<len;i++)src[i]=0x90;
    VirtualProtect(src,len,dwback,&dwback );
    FlushInstructionCache(GetCurrentProcess(),src,0x10 );
    return(jmp-len);
    }
    then no crash was fine

  8. #23
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Y U NO USE CLASS POINTERS AS GAME CHECKS

    The simplest shit,

    Code:
    bool bInGameFlag;
    cPlayerInfo *pPlayerInfo;
    
    if(ValidPointer(pPlayerInfo)) bInGameFlag = true;
    
    if(bInGameFlag == true) //Blabla Call Ingame Stuff
    Most classes are only initialized InGame, use them as InGame checks. Always works, better than GameStatus.
    Last edited by arun823; 10-31-2013 at 12:00 AM.
    Reversing is the only way to move forward.

  9. The Following 2 Users Say Thank You to arun823 For This Useful Post:

    kssiobr (12-02-2013),Timboy67678 (10-31-2013)

  10. #24
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    @DisOwned please, stop post old stuff saying that you just finded as new.

  11. The Following User Says Thank You to XarutoUsoCrack For This Useful Post:

    J (11-14-2013)

  12. #25
    kssiobr's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Nos braços do Pai Celestial...
    Posts
    726
    Reputation
    10
    Thanks
    333
    My Mood
    Cheeky
    I saw this method on the basis of MMBOB
    Muito bom!!!

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Game Status
    By Crash in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 35
    Last Post: 09-26-2010, 03:13 PM
  2. Game Status
    By Crash in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 08-29-2010, 02:33 PM
  3. [Addy] Game Status Hack?
    By ipwnuuaal5 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 13
    Last Post: 08-27-2010, 06:02 PM
  4. join this game! its good but it needs more ppl!
    By Skurdz in forum Spammers Corner
    Replies: 11
    Last Post: 12-16-2008, 08:11 AM
  5. Mega Game pack for all your needs
    By llvengancell in forum WarRock - International Hacks
    Replies: 2
    Last Post: 09-22-2007, 09:36 PM