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;
}
struct trace_t {
float Fraction;
Vector normal;
int surfaceFlags;
int contents;
const char *material;
int hitType;
unsigned __int16 hitId;
unsigned __int16 modelIndex;
unsigned __int16 partName;
unsigned __int16 partGroup;
bool allsolid;
bool startsolid;
bool walkable;
};
bool IsVisible(Entity_T* currentEntity, float* vPoint) //vPoint is the position of the enemy you wish to aim at, Entity is the entity struct of the atim target
{
trace_t trace; //Create a new trace
CG_Trace( &trace, RefDef->ViewOrigin, currentEntity, CG->LocalClientNumber, 0x803003 ); //Engine does the trace here
if( trace->Fraction >= 0.97f ) return true; //If fraction is >=0.97, enemy is visible
else return false; //Else they're not
}
Copyright © 2025, NextGenUpdate.
All Rights Reserved.