Page 4 of 5 FirstFirst ... 2345 LastLast
Results 46 to 60 of 67
  1. #46
    nevetszap's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    how do i use this?

  2. #47
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by vingadormaster View Post
    i use this but after patch not work more.

    [php]

    BYTE Recoil1On[3] = { 0x90, 0x90, 0x90 };
    BYTE Recoil2On[3] = { 0x90, 0x90, 0x90 };
    BYTE Recoil3On[6] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
    BYTE Recoil4On[3] = { 0x90, 0x90, 0x90 };

    // BYTE not work for me, i get error.

    bool MemWrite( void * pDest, char * szPatch, size_t sSize )
    {
    DWORD dwOrgProtect = NULL;
    if ( !VirtualProtect ( pDest, sSize, PAGE_EXECUTE_READWRITE, &dwOrgProtect ))
    return FALSE;

    memcpy( pDest, szPatch, sSize );
    VirtualProtect( pDest, sSize, dwOrgProtect, NULL );
    return TRUE;
    }

    DWORD dwCShell = NULL;

    void norecoil()

    {
    while ( dwCShell == NULL )
    {
    dwCShell = ( DWORD ) GetModuleHandle( "CShell.dll" );
    Sleep( 250 );
    }

    //recoil old DC

    //MemWrite(( void* )( dwCShell + 0x2E7F62 ), "\x90\x90\x90", 3 );
    //MemWrite(( void* )( dwCShell + 0x2E7F71 ), "\x90\x90\x90", 3 );
    //MemWrite(( void* )( dwCShell + 0x2E7F76 ), "\x90\x90\x90\x90\x90\x90", 6 );
    //MemWrite(( void* )( dwCShell + 0x2E7F82 ), "\x90\x90\x90", 3 );


    //new recoil DC
    MemWrite(( void* )( dwCShell + 0x002F2CE9 ), Recoil1On, 3);
    MemWrite(( void* )( dwCShell + 0x002F2CF8 ), Recoil2On, 3);
    MemWrite(( void* )( dwCShell + 0x002F2CFD ), Recoil3On, 6);
    MemWrite(( void* )( dwCShell + 0x002F2D09 ), Recoil4On, 3);

    }[/php]
    Hmm. I use this

    [php]

    void MemCopy(void* Dest, const void* Src, int Len)
    {
    DWORD OldProtect;
    DWORD OldProtect2;
    VirtualProtect(Dest, Len, PAGE_EXECUTE_READWRITE, &OldProtect);
    memcpy(Dest, Src, Len);
    VirtualProtect(Dest, Len, OldProtect, &OldProtect2);
    FlushInstructionCache(GetCurrentProcess(), Dest, Len);
    }


    if(GetAsyncKeyState(VK_NUMPAD5)<0)//No Recoil
    {
    if (recoil)
    {

    byte NoRecoilOff1[3] = { 0xD8, 0x66, 0x54 };
    byte NoRecoilOff2[3] = { 0xD9, 0x46, 0x54 };
    byte NoRecoilOff3[6] = { 0xD9, 0x5E, 0x54, 0xD9, 0x46, 0x48 };
    byte NoRecoilOff4[3] = { 0xD9, 0x5E, 0x48 };

    memcpy((PVOID)(0x37100000+0x002F2CE9), &NoRecoilOff1, sizeof(NoRecoilOff1));
    memcpy((PVOID)(0x37100000+0x002F2CF8), &NoRecoilOff2, sizeof(NoRecoilOff2));
    memcpy((PVOID)(0x37100000+0x002F2CFD), &NoRecoilOff3, sizeof(NoRecoilOff3));
    memcpy((PVOID)(0x37100000+0x002F2D09), &NoRecoilOff4, sizeof(NoRecoilOff4));
    recoil = false;
    }
    else
    {
    byte NoRecoilOn1[3] = { 0x90, 0x90, 0x90 };
    byte NoRecoilOn2[3] = { 0x90, 0x90, 0x90 };
    byte NoRecoilOn3[6] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
    byte NoRecoilOn4[3] = { 0x90, 0x90, 0x90 };

    memcpy((PVOID)(0x37100000+0x002F2CE9), &NoRecoilOn1, sizeof(NoRecoilOn1));
    memcpy((PVOID)(0x37100000+0x002F2CF8), &NoRecoilOn2, sizeof(NoRecoilOn2));
    memcpy((PVOID)(0x37100000+0x002F2CFD), &NoRecoilOn3, sizeof(NoRecoilOn3));
    memcpy((PVOID)(0x37100000+0x002F2D09), &NoRecoilOn4, sizeof(NoRecoilOn4));
    recoil = true;
    }
    }

    [/php]

    It works for liek 10 seconds then DC
    Last edited by ac1d_buRn; 04-07-2010 at 08:29 PM.

  3. #48
    pimpinallovertheworld666's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    972
    Reputation
    10
    Thanks
    93
    My Mood
    Fine
    Quote Originally Posted by ac1d_buRn View Post




    It works for liek 10 seconds then DC
    New addresses?
    also kinda sad you got rid of No gun...

  4. #49
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by pimpinallovertheworld666 View Post
    New addresses?
    also kinda sad you got rid of No gun...
    Lol. Who uses no Gun? Seriously xD

    And its not the addies. The no recoil works. But it DC's liek 20 seconds after playing

  5. #50
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Time to learn to bypass hackshield.

  6. #51
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Davidm44 View Post
    Time to learn to bypass hackshield.
    Yeh i think so :\

  7. #52
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    thanks long, do they still work after todays patch?
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  8. #53
    pimpinallovertheworld666's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    972
    Reputation
    10
    Thanks
    93
    My Mood
    Fine
    Quote Originally Posted by ac1d_buRn View Post


    Lol. Who uses no Gun? Seriously xD

    And its not the addies. The no recoil works. But it DC's liek 20 seconds after playing
    Make it as an infinite loop XD

  9. #54
    Gordon`'s Avatar
    Join Date
    Dec 2007
    Gender
    male
    Posts
    283
    Reputation
    24
    Thanks
    325
    Quote Originally Posted by ac1d_buRn View Post


    Yes ive had a look at hans base
    But when i went ingame, I DC'd.

    What did u update to stop that?

    Also, How do you nop an addie without hackshield kicking you?
    Quote Originally Posted by Longevity View Post
    Because HS dislikes what you are doing.
    not hackshield!! the scantool from CA itself detects memory modifications in engine.exe and cshell.dll and disconnects you. the hackshields scan function is only scanning in engine.exe and hackshield is scanning it

    i dont know hans base - but is it using detours? if yes try another hooking method or simply bypass hackshield

    but beware - if you hook ca's scanfunction, you need also to bypass hackshields scanfunction, because ca's scanfunction is located in engine.exe
    Last edited by Gordon`; 04-08-2010 at 12:04 AM.


  10. #55
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Gordons back.
    I'm back.

  11. #56
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by Gordon` View Post
    not hackshield!! the scantool from CA itself detects memory modifications in engine.exe and cshell.dll and disconnects you. the hackshields scan function is only scanning in engine.exe and hackshield is scanning it

    i dont know hans base - but is it using detours? if yes try another hooking method or simply bypass hackshield

    but beware - if you hook ca's scanfunction, you need also to bypass hackshields scanfunction, because ca's scanfunction is located in engine.exe
    0x0051B230 ?


    Worked fine before the latest update but when I try it with the newest update with that address, it doesn't work.

  12. #57
    InCognito's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    16,581
    Reputation
    2777
    Thanks
    4,294,967,295
    Quote Originally Posted by Godlike View Post
    Gordons back.
    He better not make public telekill.

  13. #58
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Gordon` View Post
    not hackshield!! the scantool from CA itself detects memory modifications in engine.exe and cshell.dll and disconnects you. the hackshields scan function is only scanning in engine.exe and hackshield is scanning it

    i dont know hans base - but is it using detours? if yes try another hooking method or simply bypass hackshield

    but beware - if you hook ca's scanfunction, you need also to bypass hackshields scanfunction, because ca's scanfunction is located in engine.exe
    Ohhhh. Thanks for the info gordon.

  14. #59
    dean-wingess's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    409
    Reputation
    29
    Thanks
    213
    My Mood
    Stressed
    edit : Sorry doesnt work anymore lol im retarded to post this -.-
    Last edited by dean-wingess; 04-08-2010 at 03:59 AM.

  15. #60
    pimpinallovertheworld666's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    972
    Reputation
    10
    Thanks
    93
    My Mood
    Fine
    Quote Originally Posted by ac1d_buRn View Post


    Ohhhh. Thanks for the info gordon.
    I hope you get it acid.... =D

Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. [Info] Black Ops SP new patch memory addresses!
    By xX$uR_vEiLlAnCeXx in forum Call of Duty Black Ops Coding, Programming & Source Code
    Replies: 2
    Last Post: 09-06-2011, 03:32 PM
  2. [Release] Updated No Recoil Address
    By Braco22 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 47
    Last Post: 08-02-2010, 11:55 PM
  3. Help - How to find No Recoil addresses?
    By Ragehax in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 25
    Last Post: 05-05-2010, 07:07 PM
  4. NEW "NO RECOIL" ADDRESSES
    By rustomen in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 04-21-2010, 11:49 AM
  5. No Recoil address.
    By -DarkX- in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-31-2008, 12:22 AM