Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.03 KB | None | 0 0
  1. Stores = {
  2.     ["paleto_twentyfourseven"] = {
  3.         position = { x = 1736.32, y = 6419.47, z = 35.03 },
  4.         reward = math.random(5000, 35000),
  5.         nameOfStore = "24/7. (Paleto Bay)",
  6.         secondsRemaining = 350, -- seconds
  7.         lastRobbed = 0
  8.     },
  9.     ["sandyshores_twentyfoursever"] = {
  10.         position = { x = 1961.24, y = 3749.46, z = 32.34 },
  11.         reward = math.random(3000, 20000),
  12.         nameOfStore = "24/7. (Sandy Shores)",
  13.         secondsRemaining = 200, -- seconds
  14.         lastRobbed = 0
  15.     },
  16.     ["littleseoul_twentyfourseven"] = {
  17.         position = { x = -709.17, y = -904.21, z = 19.21 },
  18.         reward = math.random(3000, 20000),
  19.         nameOfStore = "24/7. (Little Seoul)",
  20.         secondsRemaining = 200, -- seconds
  21.         lastRobbed = 0
  22.     },
  23.     ["bar_one"] = {
  24.         position = { x = 1990.57, y = 3044.95, z = 47.21 },
  25.         reward = math.random(5000, 35000),
  26.         nameOfStore = "Yellow Jack. (Sandy Shores)",
  27.         secondsRemaining = 300, -- seconds
  28.         lastRobbed = 0
  29.     },
  30.     ["ocean_liquor"] = {
  31.         position = { x = -2959.33, y = 388.21, z = 14.00 },
  32.         reward = math.random(3000, 30000),
  33.         nameOfStore = "Robs Liquor. (Great Ocean Highway)",
  34.         secondsRemaining = 200, -- seconds
  35.         lastRobbed = 0
  36.     },
  37.     ["rancho_liquor"] = {
  38.         position = { x = 1126.80, y = -980.40, z = 45.41 },
  39.         reward = math.random(3000, 50000),
  40.         nameOfStore = "Robs Liquor. (El Rancho Blvd)",
  41.         secondsRemaining = 200, -- seconds
  42.         lastRobbed = 0
  43.     },
  44.     ["sanandreas_liquor"] = {
  45.         position = { x = -1219.85, y = -916.27, z = 11.32 },
  46.         reward = math.random(3000, 30000),
  47.         nameOfStore = "Robs Liquor. (San Andreas Avenue)",
  48.         secondsRemaining = 200, -- seconds
  49.         lastRobbed = 0
  50.     },
  51.     ["grove_ltd"] = {
  52.         position = { x = -43.40, y = -1749.20, z = 29.42 },
  53.         reward = math.random(3000, 15000),
  54.         nameOfStore = "LTD Gasoline. (Grove Street)",
  55.         secondsRemaining = 200, -- seconds
  56.         lastRobbed = 0
  57.     },
  58.     ["mirror_ltd"] = {
  59.         position = { x = 1160.67, y = -314.40, z = 69.20 },
  60.         reward = math.random(3000, 15000),
  61.         nameOfStore = "LTD Gasoline. (Mirror Park Boulevard)",
  62.         secondsRemaining = 200, -- seconds
  63.         lastRobbed = 0
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement