ayyware antiaim knife fix

Posts 16 of 6 · Page 1 of 1
ayyware antiaim knife fix
Hey,
I made a Ayyware paste and dont write learn C++ or smth I want only a fix. So if I have AntiAim on and when I put my Knife out the AntiAim is still enabled.. Why? I already looked into the WeaponInfo but it seems to be fine. Can someone help me?

Ragebot.cpp

Code:
	CBaseCombatWeapon* pWeapon = (CBaseCombatWeapon*)Interfaces::EntList->GetClientEntityFromHandle(hackManager.pLocal()->GetActiveWeaponHandle());
	if (pWeapon)
	{
		CSWeaponInfo* pWeaponInfo = pWeapon->GetCSWpnData();
		// Knives or grenades
		if (!GameUtils::IsBallisticWeapon(pWeapon))
			return;
	}
UTIL Functions.cpp

Code:
bool GameUtils::IsBallisticWeapon(void* weapon)
{
	if (weapon == nullptr) return false;
	IClientEntity* weaponEnt = (IClientEntity*)weapon;
	ClientClass* pWeaponClass = weaponEnt->GetClientClass();

	if (pWeaponClass->m_ClassID == (int)CSGOClassID::CKnife || pWeaponClass->m_ClassID == (int)CSGOClassID::CHEGrenade || pWeaponClass->m_ClassID == (int)CSGOClassID::CDecoyGrenade || pWeaponClass->m_ClassID == (int)CSGOClassID::CIncendiaryGrenade || pWeaponClass->m_ClassID == (int)CSGOClassID::CSmokeGrenade || pWeaponClass->m_ClassID == (int)CSGOClassID::CC4)
		return false;
	else
		return true;
}
Would be nice if someone could help me,
Regards
Learn to C++ and u will know what to do? yuy!
Learn about programming first then start reading about how the engine works. Your problem is fixable in max 5 minutes but you lack basic knowledge about csgo.
yo can you give me fb/Skype/Steam please? im interested in something ty.
Solved & Closed.
Posts 16 of 6 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?