Red faceAsk For Help /Code/Address Here !

Posts 115 of 26 · Page 1 of 2
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 ...
Super Kill updated address and source.
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
Post the Bypass 28_3, please!
[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;
	}
}
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.
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
I can only laugh at people that like to show up in public, but ask for help in private
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
Quote Originally Posted by (Virus) View Post


U Need The Addies ?
yea why asking back while it's clear request lol
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
maybe post the latest cf west addies already ?
Quote Originally Posted by 96neko View Post
maybe post the latest cf west addies already ?
U Need The Addies ?
Posts 115 of 26 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?