-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
config.lua
50 lines (50 loc) · 1.58 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
lib.locale()
Config = {
-- Framework automatically detected
-- QB, QBX, and ESX preconfigured edit the framework.lua to add functionality to other frameworks
renewedMultiJob = false, -- QBCORE ONLY! https://github.com/Renewed-Scripts/qb-phone
progressbar = 'circle', -- circle or rectangle (Anything other than circle will default to rectangle)
currency = 'USD', -- USD, EUR, GBP ect.....
atms = {
`prop_atm_01`,
`prop_atm_02`,
`prop_atm_03`,
`prop_fleeca_atm`
},
peds = {
[1] = { -- Pacific Standard
model = 'u_m_m_bankman',
coords = vector4(241.44, 227.19, 106.29, 170.43),
createAccounts = true
},
[2] = {
model = 'ig_barry',
coords = vector4(313.84, -280.58, 54.16, 338.31)
},
[3] = {
model = 'ig_barry',
coords = vector4(149.46, -1042.09, 29.37, 335.43)
},
[4] = {
model = 'ig_barry',
coords = vector4(-351.23, -51.28, 49.04, 341.73)
},
[5] = {
model = 'ig_barry',
coords = vector4(-1211.9, -331.9, 37.78, 20.07)
},
[6] = {
model = 'ig_barry',
coords = vector4(-2961.14, 483.09, 15.7, 83.84)
},
[7] = {
model = 'ig_barry',
coords = vector4(1174.8, 2708.2, 38.09, 178.52)
},
[8] = { -- paleto
model = 'u_m_m_bankman',
coords = vector4(-112.22, 6471.01, 31.63, 134.18),
createAccounts = true
}
}
}