sv_jumpstep 1 // step up stairs while jumping, makes it easier to reach ledges
set ekg 0 "Throw huge amounts of gibs"
-sv_shownames_cull_distance 2500 "distance after which to not send origin/health/armor of another player"
+seta sv_shownames_cull_distance 2500 "distance after which to not send origin/health/armor of another player"
cl_movement 1
cl_movement_track_canjump 0
float shownames_customize()
{
if(self.owner != other) // no need to spam own coordinates
- //if(vlen(other.origin + self.origin) < autocvar_sv_shownames_cull_distance) // distance cull
+ if(vlen(other.origin - self.origin) < autocvar_sv_shownames_cull_distance) // distance cull
if(self.owner.team == other.team || (self.owner.team != other.team && checkpvs(self.origin, other)))
return TRUE;