Advertisement
Smi-ChetDev

meem

Aug 23rd, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Vector curpos = LocalPlayer->GetOrigin();
  2. static Vector originrecords[2];
  3.  
  4. if (SendPacket) {
  5. static bool flip = false;
  6. originrecords[flip ? 0 : 1] = curpos;
  7. flip = !flip ;
  8. }
  9.  
  10. if ((originrecords[0] - originrecords[1]).LengthSqr() > 4096.f)
  11. BreakingLC = true;
  12. else
  13. BreakingLC = false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement