-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.lua
More file actions
66 lines (55 loc) · 3.61 KB
/
config.lua
File metadata and controls
66 lines (55 loc) · 3.61 KB
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
Config = {
Framework = 'QBCore', -- FrameWork! Use 'none' For StandAlone Use, Available Options: 'QBCore', 'Esx', 'none'
CustomPlate = true, -- Should We Enable Custom Vehicle Plate System? if true, below must have valid value
Plate = 'CW-SHOW', -- Vehicles Plate Text (UP TO 8 LETTER/NUMBERS)
LockVehicles = 'NoInteract', -- Set Vehicle Lock Status, Available Options = Unlocked, Locked, NoInteract
FuelSystem = 'none', -- Put Your Fuel Script Name Here! Use 'none' To Disable The System
FuelLevel = '0', -- Put Your Fuel Level For Vehicles Here! Available Options = '0' to '100'
Freeze = true, -- Should We Freeze Vehicles? true or false
Refresh = 5, -- Put The Time For Refresh. PLEASE NOTE THAT LOWER THAN 10 SEC MAY CONSUME YOUR SERVER CPU
RefreshUnit = 'Min', -- Put The Unit For Refresh, Available Options = 'Sec', 'Min' or 'Hour'. PLEASE NOTE THAT LOWER THAN 10 SEC MAY CONSUME YOUR SERVER CPU
EnableTargetOptions = true, -- Enable 'ox_target' interaction options for vehicles
EnableHood = true, -- Enable 'Open Hood' interaction option
EnableTrunk = true, -- Enable 'Open Trunk' interaction option
EnableDoors = true, -- Enable 'Open Doors' interaction option
EnableVehInfo = true, -- Enable 'Vehicle Info' interaction option
EnableVehStat = true, -- Enable 'Vehicle Stats' interaction option
SpeedUnit = 'kmh', -- Vehicle speed unit for Vehicle Information, Available Options = 'mph' or 'kmh'
ShowroomVehicles = {
['pdm'] = { -- Just A Simple Name!
[1] = {
Vehicle = 'autarch', -- Vehicle Model Name!
colors = { 1 }, -- Vehicle Color, Can Be Removed, First one is main and second one is secondry color! Use: https://wiki.rage.mp/index.php?title=Vehicle_Colors
livery = 0, -- Vehicle Livery ID, Can Be Removed
extra = { 1 , 2 }, -- Vehicle Extras ID, Can Be Removed
coords = vector4(-45.65, -1093.66, 25.44, 69.5), -- Location To Spawn The Vehicle
},
},
-- ['vip'] = {
-- [1] = {
-- Vehicle = 'autarch',
-- colors = { 1 , 1 },
-- livery = 0,
-- extra = { 1 , 2 },
-- coords = vector4(-45.65, -1093.66, 25.44, 69.5),
-- },
-- },
},
}
Translations = {
target = {
["hood"] = "Toggle Hood",
["trunk"] = "Toggle Trunk",
["doors"] = "Toggle Doors",
["vehinfo"] = "Vehicle Information",
["vehstat"] = "Vehicle Stats",
},
vehinf = {
["name"] = "Name",
["brand"] = "Brand",
["class"] = "Class",
},
vehstat = {
["topspeed"] = "Top Speed",
},
}