Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    uarethebest's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    0
    My Mood
    Daring

    Less Recoil Source Code

    GUYS...i have tryed and tryed and tryed for about 4 days to find NoRecoil text string but i cant find it i only know 3 which is BulletPosOffset and loweranimerate and Crosshairratioperrealsize smthing like that/.... but it only make Less Recoil I will show my code...with a little antileechprotect any way for those who will say U need 45-50 offsets Tell me the text string or how to find it..for those who say learn asm or C++ **** U...

    Code:
    #include "stdafx.h"
    
    #define WeaponMgr 0xA68F90
    #define recoil1 0x1928
    #define recoil2 0x192C
    #define recoil3 0x1930
    #define recoil4 0x2520 
    #define recoil5 0x258C
    #define recoil6 0x2590
    #define recoil7 0x2594
    #define recoil8 0x26A4
    
    
    DWORD WINAPI Hacks(LPVOID)
    {
    bool recoil = true; 
    
    
    while(1)
    {
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pWeaponMgr = *(DWORD*)(CShell+WeaponMgr);
    
    
    if (recoil)
    
    if (pWeaponMgr)
    
    for(int i=0; i<560; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    {
    for (int j=0; j<9 ; j++)
    {
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x192C+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaonMgr)) +(4*i))) + 0x1928+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x1930+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2520+j*4) = 0.0f;
    *(float*)((*(DORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x258C+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2590+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2594+j*4) = 0.0f;
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x26A4+j*4) = 0.0f;
    }
    
    
    }
    }
    Sleep(100);
    
    
    }
    }
    
    bool Ready2Hook()
    {
    if(GetModuleHandleA("CShell.dll") != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
    return 1;
    return 0;
    }
    
    DWORD WINAPI Wait(LPVOID)
    {
    while(!Ready2Hook()) Sleep(200);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    
    MessageBoxA(0, "Credits- devil","ghost", 0);
    
    
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0, 0);
    }
    return 1;
    }
    PS : FOR THOSE WHO WILL SAY ANYTHING ABOUT THE CODE....I PUT THE ANTILEECHPROTECT..AND I KNOW IT'S SWIFTDUDE'S
    Last edited by uarethebest; 12-13-2011 at 01:30 PM.

  2. #2
    Brimir's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    357
    Reputation
    21
    Thanks
    281
    IT'S SWIFTDUDE'S

    Sorry, but I can't read text as big as that.
    Last edited by Brimir; 12-13-2011 at 08:11 AM.
    Thanks @~FALLEN~ for helping me
    Thanks @Shakai for helping me

    Other nice ppl:
    @258456
    @giniyat101

    My usefull posts:
    Byte scanner
    How to make a logger
    Hook example
    How to make a memhack base
    How to use classes with memhacking
    Addie finder

  3. #3
    Ghost Rider.'s Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    PickaMaterina
    Posts
    200
    Reputation
    22
    Thanks
    315
    My Mood
    Aggressive
    Your loop (int j=0; j<10; j++)
    change to (int y = 0; y <9; y++)
    Download my injector N3Perx Injector

  4. #4
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    next goal: full no recoil

  5. #5
    CFhackerfree's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Germany
    Posts
    801
    Reputation
    22
    Thanks
    4,417
    My Mood
    Happy
    too easy >.<

  6. #6
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    i know it xd

  7. #7
    uarethebest's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    0
    My Mood
    Daring
    Quote Originally Posted by Ghost Rider. View Post
    Your loop (int j=0; j<10; j++)
    change to (int y = 0; y <9; y++)
    I already tryed...doesnt differ..

    Quote Originally Posted by Brimir View Post
    IT'S SWIFTDUDE'S

    Sorry, but I can't read text as big as that.
    Lol good joke...

  8. #8
    LoveyMush's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    Why use Less Recoil , if Ghost Rider post Perfect NoRecoil ?

  9. #9
    uarethebest's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    0
    My Mood
    Daring
    Quote Originally Posted by LoveyMush View Post
    Why use Less Recoil , if Ghost Rider post Perfect NoRecoil ?
    I want to do it my self

  10. #10
    LoveyMush's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    yeah ? , Good Luck for you !!

    Take the offsets and search for Constant , and you can see the strings , if you can search strings you can update the offsets if Z8 patch

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

    oicaradeboi (12-14-2011)

  12. #11
    oicaradeboi's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    2
    @LoveyMush

    :O , thaank you , i find the strings now ! haha thank you love

  13. #12
    A$IAN's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Germany
    Posts
    5,654
    Reputation
    274
    Thanks
    2,010
    My Mood
    Amused
    Quote Originally Posted by Ghost Rider. View Post
    Your loop (int j=0; j<10; j++)
    change to (int y = 0; y <9; y++)
    50%
    It doesnt matter if you interger j or y. It is just a variable. Lower the loop only
    ~Donater since 19th October 2011~
    ~Ex-Crossfire Minion || Resigned on 4th February 2012 ~
    Da fuck

  14. The Following User Says Thank You to A$IAN For This Useful Post:

    Ryuesi (12-14-2011)

  15. #13
    oicaradeboi's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    2
    Maybe its C+P :/

  16. #14
    uarethebest's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    0
    My Mood
    Daring
    Quote Originally Posted by oicaradeboi View Post
    Maybe its C+P :/
    LOL what is C+P??

  17. #15
    Code[VB]'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    CODER
    Posts
    608
    Reputation
    11
    Thanks
    702
    My Mood
    Bitchy
    i looked 2 seconds over this code.. i read only this code part > and its extremely false!

    Code:
    2C+j*4) = 0.0f;
    fail code! fail thopic! sory.. but lol

    edit// becouse the offs is not 4*loop :P .. just and only fail coders here!
    edit 2 // only the wep pointer is 4*loop
    Last edited by Code[VB]; 12-14-2011 at 11:41 AM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help] Can i Have No Recoil Source Code..? I'm almost done my first release for MPGH
    By topgenral in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 10-29-2011, 10:09 AM
  2. [Help] No Recoil Source Code Not Working
    By zooSz in forum WarRock Hack Source Code
    Replies: 25
    Last Post: 03-31-2011, 08:14 PM
  3. How to Edit a files source Code to change so that it is less detectable
    By zakodia in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 02-19-2010, 07:24 PM
  4. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM