void CMiscHacks :: lby ()
{
if (hackManager.pLocal () -> IsAlive ())
{
int iFlags = hackManager.pLocal () -> GetFlags ();
Color color;
bool lby;
if (iFlags & FL_ONGROUND)
lby = false;
else
lby = true;
if (lby)
{
color = Color (5, 125, 5);
}
else
{
color = Color (125, 5, 5);
}
Render :: Text (20, 800, color, Render :: Fonts :: Indicator, "LBY");
}
}