forked from InZidiuZ/LegacyFuel
-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.lua
93 lines (86 loc) · 3.28 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Config = {}
Config.ESX = {
['ESXSHAREDOBJECT'] = "esx:getSharedObject",
}
Config.stock = {
['default_price'] = 7.00,
['default_stock'] = 9999
}
Config.Managefuel = false -- enable disable managefuel, disable if you only want gas station function
Config.FuelDecor = "_FUEL_LEVEL"
Config.DisableKeys = { 0,22,23,24,29,30,31,37,44,56,82,140,166,167,168,170,288,289,311,323 }
Config.PumpModels = {
[-2007231801] = true,
[1339433404] = true,
[1694452750] = true,
[1933174915] = true,
[-462817101] = true,
[-469694731] = true,
[-164877493] = true
}
Config.GasStation = {
["gas_station_1"] = {264.95275878906,-1259.4567871094,29.142911911011,30},
["gas_station_2"] = {819.61047363281,-1028.2071533203,26.404321670532,30},
["gas_station_3"] = {1208.6068115234,-1402.2863769531,35.224140167236,30},
["gas_station_4"] = {1180.9593505859,-329.84280395508,69.316436767578,30},
["gas_station_5"] = {620.80499267578,268.73849487305,103.08948516846,30},
["gas_station_6"] = {2581.1779785156,362.01254272461,108.46883392334,30},
["gas_station_7"] = {175.55857849121,-1562.2135009766,29.264209747314,30},
["gas_station_8"] = {-319.42581176758,-1471.8182373047,30.548692703247,30},
["gas_station_9"] = {1785.9000244141,3330.9035644531,41.377250671387,30},
["gas_station_10"] = {49.802303314209,2779.318359375,58.043937683105,30},
["gas_station_11"] = {263.92358398438,2607.4140625,44.983062744141,30},
["gas_station_12"] = {1039.1220703125,2671.30859375,39.550872802734,30},
["gas_station_13"] = {1208.0380859375,2660.4892578125,37.899772644043,30},
["gas_station_14"] = {2539.3337402344,2594.61328125,37.944820404053,30},
["gas_station_15"] = {2679.9396972656,3264.0981445313,55.240585327148,30},
["gas_station_16"] = {2005.0074462891,3774.2006835938,32.40393447876,30},
["gas_station_17"] = {1687.263671875,4929.6328125,42.078086853027,30},
["gas_station_18"] = {1702.0052490234,6416.9975585938,32.763767242432,30},
["gas_station_19"] = {179.82470703125,6602.8408203125,31.868196487427,30},
["gas_station_20"] = {-94.206100463867,6419.4975585938,31.489490509033,30},
["gas_station_21"] = {-2555.1257324219,2334.2705078125,33.078022003174,30},
["gas_station_22"] = {-1799.4152832031,802.8154296875,138.65368652344,30},
["gas_station_23"] = {-1436.9724121094,-276.55426025391,46.207653045654,30},
["gas_station_24"] = {-2096.5913085938,-321.48611450195,13.168619155884,30},
["gas_station_25"] = {-723.298828125,-935.55322265625,19.213928222656,30},
["gas_station_26"] = {-525.35266113281,-1211.3215332031,18.184829711914,30},
["gas_station_27"] = {-70.514175415039,-1761.2590332031,29.655626296997,30},
}
Config.Classes = {
[0] = 0.6, -- Compacts
[1] = 0.6, -- Sedans
[2] = 0.6, -- SUVs
[3] = 0.6, -- Coupes
[4] = 0.6, -- Muscle
[5] = 0.6, -- Sports Classics
[6] = 0.6, -- Sports
[7] = 0.6, -- Super
[8] = 0.6, -- Motorcycles
[9] = 0.6, -- Off-road
[10] = 0.6, -- Industrial
[11] = 0.6, -- Utility
[12] = 0.6, -- Vans
[13] = 0.0, -- Cycles
[14] = 0.0, -- Boats
[15] = 0.0, -- Helicopters
[16] = 0.0, -- Planes
[17] = 0.3, -- Service
[18] = 0.3, -- Emergency
[19] = 0.6, -- Military
[20] = 0.6, -- Commercial
[21] = 0.6, -- Trains
}
Config.FuelUsage = {
[1.0] = 2.0,
[0.9] = 1.8,
[0.8] = 1.6,
[0.7] = 1.4,
[0.6] = 1.2,
[0.5] = 1.0,
[0.4] = 0.8,
[0.3] = 0.6,
[0.2] = 0.4,
[0.1] = 0.2,
[0.0] = 0.0,
}