qo0-csgo
                                
                                 qo0-csgo copied to clipboard
                                
                                    qo0-csgo copied to clipboard
                            
                            
                            
                        get fov function for angles
I've coded a legit cheat on alpha's base before, currently adding legitbot to qo0 and having trouble finding the variable for the so called "viewangles"
Here's the code from my previous project:

Here is from the qo0:

https://github.com/rollraw/qo0-base/blob/master/base/sdk/datatypes/usercmd.h
CUserCmd class, angViewPoint member.
You didn't find it, because you are just pasting and not understanding it.
https://github.com/rollraw/qo0-base/blob/master/base/sdk/datatypes/usercmd.h
CUserCmd class, angViewPoint member.
You didn't find it, because you are just pasting and not understanding it.
Lol, ok. QAngle class does not have a function for distance to. And I looked there before I posted, and my question haven't changed
there is no such thing as distance, it can be named as hypotenuse of delta for angles difference. although we can add some binding like:
QAngle angDelta = angView - angRelativeTarget;
angDelta.Normalize();
angDelta.Clamp();
float flFOV = std::hypotf(angDelta.x, angDelta.y);