Advertisement
Silverlan

Untitled

Apr 30th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. ENT.posTowers = {Vector(12,0,58),Vector(14,0,58)}
  2. ENT.dataBarrels = {
  3.     {
  4.         Pos = Vector(42,0,72),
  5.         BLength = 100
  6.     },
  7.     {
  8.         Pos = Vector(39.5,0,70),
  9.         BLength = 200
  10.     },
  11.     {
  12.         Pos = Vector(34,0,63),
  13.         BLength = 100
  14.     },
  15.     {
  16.         Pos = Vector(34,0,63),
  17.         BLength = 150
  18.     },
  19.     {
  20.         Pos = Vector(34,0,63),
  21.         BLength = 200
  22.     }
  23. }
  24.  
  25.  
  26. local tbBarrel = table.Random(self.dataBarrels)
  27. local posBarrel = tbBarrel.Pos
  28. local lengthBarrel = tbBarrel.BLength
  29. local posTower = table.Random(self.posTowers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement