struct trace_t
{
float fraction; //0x0
float normal[3]; //0x4
int surfaceFlags; //0x10
int contents; //0x14
const char* material; //0x18
//TraceHitType hitType; //0x1C
unsigned __int16 hitId; //0x20
unsigned __int16 modelIndex; //0x22
unsigned __int16 partName; //0x24
unsigned __int16 partGroup; //0x28
bool allsolid; //0x2A
bool startsolid; //0x2B
bool walkable; //0x2C
}; // size = 0x2D
void(*CG_Trace)(trace_t results, Vec3& start, Vec3& Unkown, Vec3& end, int passEntityNum, int contentMask, bool locational, bool staticModels) = (void(*)(trace_t , Vec3&, Vec3&, Vec3&, int, int, bool, bool))0x82136C70;
bool CG_isEntityVisible(centity_s* Target)
{
trace_t trace;
Vec3 = nullVec
nullVec.x = 0;
nullVec.y = 0;
nullVec.z = 0;
CG_Trace(&trace, *(Vec3)(0xAD6A8C28 + 0x1
,Target->vOrigin, nullVec, 0, 0x810011, false, false);
if (trace.fraction >= 0.97)
{
return true;
}
return false;
}
Copyright © 2025, NextGenUpdate.
All Rights Reserved.