-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.lua
29 lines (28 loc) · 904 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Config = {}
Config.Locale = 'fr'
Banks = {
["fleeca"] = {
position = { ['x'] = 147.04908752441, ['y'] = -1044.9448242188, ['z'] = 29.36802482605 },
reward = math.random(10000,25000),
nameofstore = "Fleeca Bank",
lastrobbed = 0
},
["fleeca2"] = {
position = { ['x'] = -2957.6674804688, ['y'] = 481.45776367188, ['z'] = 15.697026252747 },
reward = math.random(10000,25000),
nameofstore = "Fleeca Bank (Highway)",
lastrobbed = 0
},
["blainecounty"] = {
position = { ['x'] = -107.06505584717, ['y'] = 6474.8012695313, ['z'] = 31.62670135498 },
reward = math.random(10000,25000),
nameofstore = "Blaine County Savings",
lastrobbed = 0
},
["PrincipalBank"] = {
position = { ['x'] = 255.001098632813, ['y'] = 225.855895996094, ['z'] = 101.005694274902 },
reward = math.random(25000,100000),
nameofstore = "Principal bank",
lastrobbed = 0
}
}