Results 1 to 1 of 1
  1. #1
    herman
    herman is offline
    Guest
    Join Date
    2012 Sep
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    [Release] Crossfire hack source codes

    No grenade damage:

    Code:
    #define grenades ((i==6)||(i==7)||(i==8)||(i==64)||(i==100)||(i==126)||(i==135)||(i==209)||(i==210)||(i==240)||(i==263)||(i==272)||(i==338)||(i==382)||(i==383)||(i==384))
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (grenades))
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7F8) = 0.0f; //String is "AmmoDamage"
    No Reload (Without knife bug):
    Code:
    Code:
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2424) = 100.0f; //String is "ReloadAnimRatio"
    One hit kill (Causes Client error in TD/MM/HM):

    Code:

    Code:
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7F8) = 99999.0f //use 116.0 in TD/MM/HM (not OHK) , String is "AmmoDamage"
    No weapon weight:
    Code:

    Code:
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x21DC) = 0.0f; //String is "MoveSpeedPenalty"
    Shoot throgh wall:

    Code:
    Code:
    if (*(DWORD*)((CShellBase)+WallMgr) != NULL)
                            {
                                    *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x468) = true; //String is "EdgeShotEnabled"
                                    *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x46C) = true; //String is "WallShotEnabled"
                                    *(bool*)((*(DWORD*)((CShellBase)+WallMgr))+(i*0x474)+0x470) = true; //String is "PerfectWallShotEnabled"
    No weapon change delay::
    Code:

    Code:
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x2428) = 100.0f; //String is "ChangeWeaponAnimRatio"
    Knife tele kill (causes client error if used 5 times
    Code:
    #define knives ((i==5) || (i==74) || (i==269) || (i==270) || (i==271) || (i== 372))
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (knives))
    {
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7EC) = 20000.0f; //Visual , String is "Range"
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA20) = 20000.0f; //Not visual , String is "KnifeNormalRange"
     
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA24) = 20000.0f; //same as above "KnifeNormalRange" has two addys
     
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA2C) = 20000.0f //Not visual , String is "KnifeBigshotRange". this one should affect knife right click but i didn't test this one.
    }
    Max weapon range::

    Code:

    Code:
    #define knives ((i==5) || (i==74) || (i==269) || (i==270) || (i==271) || (i== 372))
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && (!knives))
                                                    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0x7EC) = 20000.0f; //String is "Range"
    Fire types:
    Code:

    Code:
    enum FireType
    {
            SingleFire =1;
            RepeatFire = 2;
            ShrapnelFire = 4;
            DelayFire = 8;
            AlternateFire = 16;
    }
     
     if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
                                                    *(DWORD*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + 0xA38) = Something ;//look at strings in the enum

    thank's to :
    - ALL Member progamercity.net

Similar Threads

  1. [Release] AutoIt Offset Finder + Source
    By MrSmith in forum Perfect World
    Replies: 5
    Last Post: 2013-09-26, 06:01 PM
  2. Replies: 0
    Last Post: 2012-04-30, 11:44 AM
  3. [Help] Hack CrossFire
    By Stuwart in forum CrossFire
    Replies: 0
    Last Post: 2012-02-24, 12:13 PM
  4. [release] aikain gold hack
    By susimilikiti in forum Aika Bots, Hacks, Cheats
    Replies: 63
    Last Post: 2012-01-22, 03:32 PM
  5. Release Paladin CD HACK
    By hudas123 in forum Aika Bots, Hacks, Cheats
    Replies: 23
    Last Post: 2011-01-21, 06:04 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •