Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. Config = {}
  2. Config.Locale = 'en'
  3. Config.PoliceNumberRequired = 4
  4. Config.TimerBeforeNewRob = 3600 -- seconds 2700
  5. Config.TimerBeforeNewStoreRob = 1600
  6.  
  7. -- Change secondsRemaining if you want another timer
  8. Stores = {
  9. ["paleto_twentyfourseven"] = {
  10. position = { ['x'] = 1736.32092285156, ['y'] = 6419.4970703125, ['z'] = 35.037223815918 },
  11. reward = math.random(150000,400000),
  12. nameofstore = "24/7. (Paleto Bay)",
  13. isBank = false,
  14. secondsRemaining = 360, -- seconds -900
  15. },
  16. ["sandyshores_twentyfoursever"] = {
  17. position = { ['x'] = 1961.24682617188, ['y'] = 3749.46069335938, ['z'] = 32.3437461853027 },
  18. reward = math.random(150000,400000),
  19. nameofstore = "24/7. (Sandy Shores)",
  20. isBank = false,
  21. secondsRemaining = 360, -- seconds -900
  22. -- lastrobbed = 0
  23. },
  24. ["bar_one"] = {
  25. position = { ['x'] = 1990.579, ['y'] = 3044.957, ['z'] = 47.215171813965 },
  26. reward = math.random(150000,400000),
  27. nameofstore = "Yellow Jack. (Sandy Shores)",
  28. isBank = false,
  29. secondsRemaining = 360, -- seconds -900
  30. -- lastrobbed = 0
  31. },
  32. ["ocean_liquor"] = {
  33. position = { ['x'] = -2959.33715820313, ['y'] = 388.214172363281, ['z'] = 14.0432071685791 },
  34. reward = math.random(150000,400000),
  35. nameofstore = "Robs Liquor. (Great Ocean Higway)",
  36. isBank = false,
  37. secondsRemaining = 360, -- seconds -750
  38. -- lastrobbed = 0
  39. },
  40. ["sanandreas_liquor"] = {
  41. position = { ['x'] = -1219.85607910156, ['y'] = -916.276550292969, ['z'] = 11.3262157440186 },
  42. reward = math.random(150000,400000),
  43. nameofstore = "Robs Liquor. (San andreas Avenue)",
  44. isBank = false,
  45. secondsRemaining = 360, -- seconds -680
  46. -- lastrobbed = 0
  47. },
  48. ["grove_ltd"] = {
  49. position = { ['x'] = -43.4035377502441, ['y'] = -1749.20922851563, ['z'] = 29.421012878418 },
  50. reward = math.random(150000,400000),
  51. nameofstore = "LTD Gasoline. (Grove Street)",
  52. isBank = false,
  53. secondsRemaining = 360, -- seconds -600
  54. -- lastrobbed = 0
  55. },
  56. ["mirror_ltd"] = {
  57. position = { ['x'] = 1160.67578125, ['y'] = -314.400451660156, ['z'] = 69.2050552368164 },
  58. reward = math.random(150000,400000),
  59. nameofstore = "LTD Gasoline. (Mirror Park Boulevard)",
  60. isBank = false,
  61. secondsRemaining = 360, -- seconds -600
  62. -- lastrobbed = 0
  63. },
  64. ["littleseoul_twentyfourseven"] = {
  65. position = { ['x'] = -709.17022705078, ['y'] = -904.21722412109, ['z'] = 19.215591430664 },
  66. reward = math.random(150000,400000),
  67. nameofstore = "24/7. (Little Seoul)",
  68. isBank = false,
  69. secondsRemaining = 360, -- seconds -600
  70. -- lastrobbed = 0
  71. },
  72. ["fleeca"] = {
  73. position = { ['x'] = 147.04908752441, ['y'] = -1044.9448242188, ['z'] = 29.36802482605 },
  74. reward = math.random(750000,1500000),
  75. nameofstore = "Fleeca Bank",
  76. isBank = true,
  77. secondsRemaining = 720, --1200
  78. --lastrobbed = 0
  79. },
  80. ["fleeca2"] = {
  81. position = { ['x'] = -2957.6674804688, ['y'] = 481.45776367188, ['z'] = 15.697026252747 },
  82. reward = math.random(750000,1500000),
  83. nameofstore = "Fleeca Bank (Highway)",
  84. isBank = true,
  85. secondsRemaining = 720, --1200
  86. --lastrobbed = 0
  87. },
  88. ["blainecounty"] = {
  89. position = { ['x'] = -107.06505584717, ['y'] = 6474.8012695313, ['z'] = 31.62670135498 },
  90. reward = math.random(750000,1500000),
  91. nameofstore = "Blaine County Savings",
  92. isBank = true,
  93. secondsRemaining = 720, --1200
  94. --lastrobbed = 0
  95. },
  96. ["PrincipalBank"] = {
  97. position = { ['x'] = 255.001098632813, ['y'] = 225.855895996094, ['z'] = 101.005694274902 },
  98. reward = math.random(1000000,2000000),
  99. nameofstore = "Principal bank",
  100. isBank = true,
  101. secondsRemaining = 720, --1200
  102. --lastrobbed = 0
  103. }
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement