CapsAdmin

Untitled

Jul 30th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local distance = 100000
  2. hook.Remove("CalcView", "footsteps")
  3. local offset = Vector(1,1,1)*distance
  4. hook.Add("CalcView",1,function(ply, pos)
  5.    
  6.    
  7.     return
  8.     {
  9.         znear = distance/2,
  10.         zfar = distance*2,
  11.         fov = 0.2,
  12.         origin =
  13.         pos + offset,
  14.         angles = (pos - (pos + offset)):Angle()
  15.     }
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment