Advertisement
Pentrazemine

Untitled

Jan 27th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @name Server Soldier
  2. @persist Players:array Total
  3. if (first()){
  4. runOnTick(1)
  5. }
  6. Total = findByClass("player")
  7. Players = findToArray()
  8.  
  9. for(I=1,Total){
  10. Vel = Players[I, entity]:vel():length()
  11. if (Vel > 1) {Blind = 255}
  12. if (Vel == 0) {Blind = 0}
  13.  
  14.  
  15. holoCreate(I)
  16. holoPos(I,Players[I, entity]:shootPos())
  17. holoParent(I,Players[I, entity])
  18. holoColor(I,vec(3,8,255),Blind)
  19. holoScaleUnits(I,vec(-90000,-90000,-90000))
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement