Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine

    Red face Ask For Help /Code/Address Here !

    Hey Mpgh ,
    iam back now
    anyone need code/addr/help
    ask me here
    i will answer all the questions
    Good Luck For All ...

  2. The Following 2 Users Say Thank You to (Virus) For This Useful Post:

    membertest1985 (06-04-2019),QuachGia (06-15-2020)

  3. #2
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,391
    My Mood
    Stressed
    Super Kill updated address and source.

  4. #3
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Quote Originally Posted by Jhem View Post
    Super Kill updated address and source.
    thats still working Just Decreese/increase value the value
    Code:
    struct ModelNodew 
    {
    	char Spacer[212];
    	float CharacterDimensions[3];
    };
    Code:
    void SuperKill() {
    	do {
    		Sleep(150);
    	} while (!GetModuleHandle("ClientFx.fxd") || !GetModuleHandle("CShell.dll"));
    	DWORD CShell = reinterpret_cast<DWORD>(GetModuleHandle("CShell.dll"));
    	DWORD ModelNodeFunc = *reinterpret_cast<DWORD*>(CShell + ModelNodeAddress);
    	
    	while (true) {
    		//increase radius/hitbox + auto headshot code
    		int* GameStatus = reinterpret_cast<int*>(CShell + GameStatusAddress);
    		if (*GameStatus == 11) {
    			for (int Key = 0; (Key < 3); Key++) {
    				ModelNodew* Character = reinterpret_cast<ModelNodew*>(ModelNodeFunc + (Key * 4));
    				for (int Dimension = 0; (Dimension < 3); Dimension++) {
    					Character -> CharacterDimensions[Dimension] = 80.0f;
    				};
    			};
    		}
    		else {
    			for (int Key = 0; (Key < 3); Key++) {
    				ModelNodew* Character = reinterpret_cast<ModelNodew*>(ModelNodeFunc + (Key * 4));
    				for (int Dimension = 0; (Dimension < 3); Dimension++) {
    					Character -> CharacterDimensions[Dimension] = 18.0f;
    				};
    			};
    		};
    			Sleep(333);
    	};
    };
    
    	hBeginThread( 0, 0,(LPTHREAD_START_ROUTINE)SuperKill, hMod, 0, 0 );
    Code:
    #define ModelNodeAddress //8B 15 ?? ?? ?? ?? 83 C4 20 33 ED 33 FF 8B 4C 24 30 3B CB Get For Ur Region
    #define GameStatusAddress // E8 ?? ?? ?? ?? 8B 0D ?? ?? ?? ?? 3B 0D ?? ?? ?? ?? Get For Ur Region
    I Hope i help u
    Last edited by (Virus); 05-31-2019 at 02:51 AM.

  5. The Following User Says Thank You to (Virus) For This Useful Post:

    Jhem (05-31-2019)

  6. #4
    brbuscas's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    Post the Bypass 28_3, please!

  7. #5
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    [I]
    Quote Originally Posted by brbuscas View Post
    Post the Bypass 28_3, please!
    sorry for late
    Code:
    fndef _BYPASS_H_
    #define _BYPASS_H_
    
    #pragma once
    
    typedef struct _WEAPON
    {
    	//ADdress of 28_3 : E8 ?? ?? ?? ?? 8B F0 83 C4 04 85 F6 0F 84 ?? ?? ?? ?? D9 86 ?? ?? ?? ??
    	unsigned char Data[19844]; 
    } WEAPON, *PWEAPON;
    
    PWEAPON pOldWeapons[4095]; //
    
    void CreateBackup(DWORD dwCShell, DWORD dwWeaponMgr)
    {
    	DWORD pWeaponMgr = *(DWORD*)(dwCShell + dwWeaponMgr);
    	if (pWeaponMgr != NULL)
    	{
    		for (int i = 0; i < 0xC00; i++)
    		{
    			DWORD dwWeapon = *(DWORD*)(pWeaponMgr + (4 * i));
    			if (dwWeapon != NULL)
    			{
    				//================Client 28_4===============//
    				pOldWeapons[i] = new WEAPON;
    				memcpy(reinterpret_cast<void*>(pOldWeapons), reinterpret_cast<void*>(dwWeapon), sizeof(WEAPON));
    			}
    		}
    	}
    }
    
    PWEAPON GetWeaponByIndex(int index)
    {
    	return pOldWeapons[index];
    }
    
    bool isbypass = false;
    void bypass()
    {
    	if (!IsGameReadyForHook()) return;
    
    	DWORD Client = (DWORD)GetModuleHandleA(eClient);
    	DWORD crossfire = (DWORD)GetModuleHandleA(eCF);
    	if (crossfire == NULL) return;
    
    	if (!isbypass)
    	{
    		DWORD CShell = (DWORD)GetModuleHandleA(eCShell);
    		if (CShell != NULL)
    		{
    //28_4
    			CreateBackup(CShell, weaponmgr);
    			//================Client 28_3===============//
    			DWORD dwOldProtect;
    			DWORD dwBypassWeaponHack = (DWORD)(CShell + addr28);
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), PAGE_EXECUTE_READWRITE, &dwOldProtect);
    			*(DWORD*)(dwBypassWeaponHack + 0x1) = (DWORD)(&GetWeaponByIndex) - dwBypassWeaponHack - 5;
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), dwOldProtect, NULL);
    		}
    		isbypass = true;
    	}
    }
    

  8. #6
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Credits emiedumalasa
    Press thanks if I helped

    Xigncode Security:


  9. #7
    emiedumalasa's Avatar
    Join Date
    May 2012
    Gender
    female
    Location
    Hackershero
    Posts
    683
    Reputation
    10
    Thanks
    794
    My Mood
    Angelic
    Quote Originally Posted by vaisefud3 View Post
    Credits emiedumalasa
    Code:
    DWORD dwOldProtect;
    			DWORD dwBypassWeaponHack = (DWORD)(CShell + addr28);
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), PAGE_EXECUTE_READWRITE, &dwOldProtect);
    			*(DWORD*)(dwBypassWeaponHack + 0x1) = (DWORD)(&GetWeaponByIndex) - dwBypassWeaponHack - 5;
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), dwOldProtect, NULL);
    You need to add a single line code in the code above to make it undetected or to avoid the disconnected from server to appear or automatic ban of account when using the address of 28_3. Not really a bypass but a way to fool the anti cheat of crossfire ph and maybe the said trick will work in all crossfire region.
    Last edited by emiedumalasa; 06-02-2019 at 04:48 AM.

  10. #8
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Quote Originally Posted by vaisefud3 View Post
    Credits emiedumalasa
    1st : iam not using that one
    2nd :thats not of ur bussneis
    3rd : if u dont need make pepole happy by getting a code/ anything
    just shut up....


    - - - Updated - - -

    Quote Originally Posted by emiedumalasa View Post
    Code:
    DWORD dwOldProtect;
    			DWORD dwBypassWeaponHack = (DWORD)(CShell + addr28);
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), PAGE_EXECUTE_READWRITE, &dwOldProtect);
    			*(DWORD*)(dwBypassWeaponHack + 0x1) = (DWORD)(&GetWeaponByIndex) - dwBypassWeaponHack - 5;
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), dwOldProtect, NULL);
    You need to add a single line code in the code above to make it undetected or to avoid the disconnected from server to appear or automatic ban of account when using the address of 28_3. Not really a bypass but a way to fool the anti cheat of crossfire ph and maybe the said trick will work in all crossfire region.
    i think i know something about that line
    send ur d1scord

  11. #9
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    I can only laugh at people that like to show up in public, but ask for help in private

  12. #10
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Xd 4 Months when We Talk
    ur just one who always helped bby AOE
    anyway Now
    Ican Help Myself


    - - - Updated - - -

    Quote Originally Posted by vaisefud3 View Post
    I can only laugh at people that like to show up in public, but ask for help in private
    Also U Dont Help Anyone At All
    And u Also Ask Me for help Xd
    [Pubg Private Cheats]

    [Cf Private Cheats]


    [Combat Arms Cheats]
    Await.

  13. #11
    96neko's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    00:25:B5:AA:01:1F
    Posts
    768
    Reputation
    10
    Thanks
    142
    My Mood
    Angelic
    maybe post the latest cf west addies already ?



  14. #12
    (Virus)'s Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    41
    My Mood
    Fine
    Quote Originally Posted by 96neko View Post
    maybe post the latest cf west addies already ?
    U Need The Addies ?
    [Pubg Private Cheats]

    [Cf Private Cheats]


    [Combat Arms Cheats]
    Await.

  15. #13
    jayjay153's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    294
    Reputation
    10
    Thanks
    113
    Last edited by jayjay153; 06-03-2019 at 02:05 PM.

  16. #14
    MemoryThePast's Avatar
    Join Date
    Sep 2018
    Gender
    male
    Posts
    148
    Reputation
    10
    Thanks
    35
    My Mood
    Stressed
    Quote Originally Posted by emiedumalasa View Post
    Code:
    DWORD dwOldProtect;
    			DWORD dwBypassWeaponHack = (DWORD)(CShell + addr28);
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), PAGE_EXECUTE_READWRITE, &dwOldProtect);
    			*(DWORD*)(dwBypassWeaponHack + 0x1) = (DWORD)(&GetWeaponByIndex) - dwBypassWeaponHack - 5;
    			VirtualProtect(reinterpret_cast<void*>(dwBypassWeaponHack), sizeof(DWORD), dwOldProtect, NULL);
    You need to add a single line code in the code above to make it undetected or to avoid the disconnected from server to appear or automatic ban of account when using the address of 28_3. Not really a bypass but a way to fool the anti cheat of crossfire ph and maybe the said trick will work in all crossfire region.
    detected in cfph have 2 checks in weaponmgr

  17. #15
    96neko's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    00:25:B5:AA:01:1F
    Posts
    768
    Reputation
    10
    Thanks
    142
    My Mood
    Angelic
    Quote Originally Posted by (Virus) View Post


    U Need The Addies ?
    yea why asking back while it's clear request lol



Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Ask for help here, I'll do my best
    By Goocolax in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 36
    Last Post: 03-10-2019, 03:09 PM
  2. [Info] DO NOT ASK FOR HELP HERE!
    By Skyline. in forum Call of Duty Black Ops Texture Modding
    Replies: 0
    Last Post: 05-28-2011, 08:50 PM
  3. [Source Code] Ask for Source Codes here / Release your Source Codes here [Collection]
    By taylan in forum WarRock Hack Source Code
    Replies: 24
    Last Post: 02-01-2011, 11:27 AM
  4. Asking for help here.
    By dheir in forum Call of Duty Modern Warfare 2 Coding / Programming / Source Code
    Replies: 9
    Last Post: 06-27-2010, 06:09 PM
  5. well im here asking for help
    By arkone in forum Combat Arms Help
    Replies: 5
    Last Post: 09-04-2009, 12:05 PM