Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 70
  1. #31
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Quote Originally Posted by dreek1 View Post

    Happy Leecher I don't use it
    WORK ON ALL VERSION OF CROSSFIRE
    Code:
    class UnlimitedBag
    {
    public:
    	char pad_0000[12]; //0x0000
    	__int32 Bag; //0x000C
    }; //Size: 0x0010
    
    class LTClientShell
    {
    public:
    	char pad_0000[59680]; //0x0000
    	UnlimitedBag* pUnlimitedBag; //0xE920
    }; //Size: 0xE924
    How to use?
    Code:
    LTClientShell *pLTClientShell = (LTClientShell *)(dwCShell + ADDR_LTCLIENTSHELL);
    if(pLTClientShell != NULL)
    {
    		if (UnlimitedBag) {
    			if (GetAsyncKeyState('B')) {
    				pLTClientShell ->pUnlimitedBag->Bag= 0;
    			}
    		}
    }
    With you prefer without class
    Code:
    void BagHack()
    {
    	DWORD dwCShell = (DWORD)GetModuleHandle("CShell.dll");
    	if (dwCShell != NULL)
    	{
    		DWORD dwLTClientShell = *(DWORD*)(dwCShell + ADDR_LTCLIENTSHELL); {
    			if (dwLTClientShell != 0) {
    				DWORD dwUnlimitedBag = *(DWORD*)(dwLTClientShell + 0xE920);
    				if (dwUnlimitedBag != 0) {
    					if (GetAsyncKeyState('B')) {
    						*(DWORD*)(dwUnlimitedBag + 0xC) = 0;
    					}
    				}
    			}
    		}
    	}
    }

    This is base on your region maybe

    char pad_0000[59680]

  2. #32
    Send Nudes's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by dreek1 View Post

    Happy Leecher I don't use it
    WORK ON ALL VERSION OF CROSSFIRE
    Code:
    class UnlimitedBag
    {
    public:
    	char pad_0000[12]; //0x0000
    	__int32 Bag; //0x000C
    }; //Size: 0x0010
    
    class LTClientShell
    {
    public:
    	char pad_0000[59680]; //0x0000
    	UnlimitedBag* pUnlimitedBag; //0xE920
    }; //Size: 0xE924
    How to use?
    Code:
    LTClientShell *pLTClientShell = (LTClientShell *)(dwCShell + ADDR_LTCLIENTSHELL);
    if(pLTClientShell != NULL)
    {
    		if (UnlimitedBag) {
    			if (GetAsyncKeyState('B')) {
    				pLTClientShell ->pUnlimitedBag->Bag= 0;
    			}
    		}
    }
    With you prefer without class
    Code:
    void BagHack()
    {
    	DWORD dwCShell = (DWORD)GetModuleHandle("CShell.dll");
    	if (dwCShell != NULL)
    	{
    		DWORD dwLTClientShell = *(DWORD*)(dwCShell + ADDR_LTCLIENTSHELL); {
    			if (dwLTClientShell != 0) {
    				DWORD dwUnlimitedBag = *(DWORD*)(dwLTClientShell + 0xE920);
    				if (dwUnlimitedBag != 0) {
    					if (GetAsyncKeyState('B')) {
    						*(DWORD*)(dwUnlimitedBag + 0xC) = 0;
    					}
    				}
    			}
    		}
    	}
    }

    not working on CFPH

  3. #33
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Quote Originally Posted by Send Nudes View Post
    not working on CFPH
    Because this is base on his region

  4. The Following User Says Thank You to jayjay153 For This Useful Post:

    abyan (06-24-2018)

  5. #34
    Send Nudes's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by jayjay153 View Post
    Because this is base on his region
    What's the addy of baghack in CFPH pls

  6. #35
    0xB34R's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    ADDR_LTCLIENTSHELL?


  7. #36
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    char pad_0000[59680] not applicable for other region.
    @dreek1

  8. The Following User Says Thank You to jayjay153 For This Useful Post:

    abyan (06-24-2018)

  9. #37
    L100664719's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    2
    这种东西在我们中国几年前就有了 你们老外才知道? 真J8落后 玩你MP 有本事来中国挑战腾讯的TP 你们没玩过的功能还多的是

  10. #38
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by L100664719 View Post
    这种东西在我们中国几年前就有了 你们老外才知道? 真J8落后 玩你MP 有本事来中国挑战腾讯的TP 你们没玩过的功能还多的是
    Stop speaking chinese in an english forum
    Press thanks if I helped

    Xigncode Security:


  11. #39
    vangke45's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    2
    this offset for all cf ==> 0xE920 ?

  12. #40
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Quote Originally Posted by vangke45 View Post
    this offset for all cf ==> 0xE920 ?
    Nope for CFBR only

  13. #41
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by jayjay153 View Post
    Nope for CFBR only
    For me it didn't work, even copying the function from you.
    Don't know why, but... Thanks anyway.
    Press thanks if I helped

    Xigncode Security:


  14. #42
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Quote Originally Posted by vaisefud3 View Post
    For me it didn't work, even copying the function from you.
    Don't know why, but... Thanks anyway.
    Even this doesn't work ?

    Code:
    DWORD Bag = *(DWORD*)(CShell + 0x11B60F8);
    if (Bag)
    {
         if (GetAsyncKeyState('B'))
              *(DWORD*)(Bag + 0xC) = 0;
    }

  15. #43
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,175
    Reputation
    74
    Thanks
    1,263
    My Mood
    In Love
    Quote Originally Posted by vaisefud3 View Post
    For me it didn't work, even copying the function from you.
    Don't know why, but... Thanks anyway.
    The coder that i posted don't work for u?
    Public Hack:
    Jun 2012 / Dec 2017

  16. #44
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by jayjay153 View Post
    Even this doesn't work ?

    Code:
    DWORD Bag = *(DWORD*)(CShell + 0x11B60F8);
    if (Bag)
    {
         if (GetAsyncKeyState('B'))
              *(DWORD*)(Bag + 0xC) = 0;
    }
    Nope, it shows my bag automatically in the first match, but after that,
    no luck.

    - - - Updated - - -

    Quote Originally Posted by dreek1 View Post
    The coder that i posted don't work for u?
    I'll test it, but I'm more focused on No Recoil.
    My PlayerClient version is giving Send Error Report.
    No Spread still works so I'm a bit confused
    Press thanks if I helped

    Xigncode Security:


  17. #45
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,175
    Reputation
    74
    Thanks
    1,263
    My Mood
    In Love
    Quote Originally Posted by vaisefud3 View Post
    Nope, it shows my bag automatically in the first match, but after that,
    no luck.

    - - - Updated - - -



    I'll test it, but I'm more focused on No Recoil.
    My PlayerClient version is giving Send Error Report.
    No Spread still works so I'm a bit confused
    Show code, i think i can help you
    Public Hack:
    Jun 2012 / Dec 2017

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Unlimited Raidshare
    By WacKer in forum Spammers Corner
    Replies: 14
    Last Post: 04-10-2019, 03:32 PM
  2. [Source Code] [CFNA]Unlimited Bag
    By gaerGAERHGaerherh in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 31
    Last Post: 06-21-2018, 02:10 AM
  3. [Source Code] Unlimited Bag
    By ComboDance in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 46
    Last Post: 08-07-2017, 08:45 PM
  4. [Info] Making ur Suit / Helmet / Bags / Mask / Others UNLIMITED
    By devil_boi in forum Blackshot Hacks & Cheats
    Replies: 1
    Last Post: 12-20-2012, 08:08 AM
  5. Unlimited Grenade
    By quin123 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 02-04-2006, 12:53 PM