I recently read a tutorial regarding tracelines and i understood how to use the trace line function provided by the engine module:
Code:
trace_line(iIgnoreEnt, const Float:fStart[3], const Float:fEnd[3], Float:vReturn[3]);
If a point interfere's in the trace line than the points origin is stored in the vReturn[3] variable
But when i use the traceline function from fakemeta:
Code:
engfunc(EngFunc_TraceLine, V1, V2, fNoMonsters, ENT_TO_SKIP);
i find that there is no such option like this : vReturn[3]
Basically if i use the traceline function using fakemeta then if a point interferes during the traceline than its origin are not returned bcoz fake meta deosnt supports it so how can i make it possible that when a traceline has been done using fake meta and a point interferes than the points origin should be returned by the trace line function
__________________