thirdperson without spoofing sv_cheats (ayyware)
a lot of people should know this but im doing this for those who don't.
in case people who don't know how to spoof convars or are worried doing so w/ ayyware, here's an alternative.
in ur overrideview hook, do this:
hf
in case people who don't know how to spoof convars or are worried doing so w/ ayyware, here's an alternative.
in ur overrideview hook, do this:
Code:
if (Interfaces::Engine->IsInGame())
{
if (hackManager.pLocal())
{
//Vector vecAngles;
Interfaces::Engine->GetViewAngles(qLastTickAngles);
if (Menu::Window.VisualsTab.EffectThirdPerson.GetState() && hackManager.pLocal()->IsAlive())
{
if (!Interfaces::pInput->m_fCameraInThirdPerson)
{
Interfaces::pInput->m_fCameraInThirdPerson = true;
Interfaces::pInput->m_vecCameraOffset = Vector(qLastTickAngles.x, qLastTickAngles.y, 40);
}
}
else
{
Interfaces::pInput->m_fCameraInThirdPerson = false;
Interfaces::pInput->m_vecCameraOffset = Vector(qLastTickAngles.x, qLastTickAngles.y, 0);
}
}
}
