-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbm_vehicle_deleter
48 lines (48 loc) · 2.82 KB
/
tbm_vehicle_deleter
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
Config = {
useQbCore = true, -- if you are using ESX, change this value to false. If you are using QBCore, set value to true
esx_getSharedObject = 'esx:getSharedObject', -- for security reasons you can customise the esx:getSharedObject event name. Attention if you change it, be sure you have also change it in es_extended
esxEventNames = { -- used esx events can here renamed, if you use a anti cheat tool
setJob = 'esx:setJob',
playerLoaded = 'esx:playerLoaded',
},
qbCoreExportName = 'qb-core', -- for security reasons you can customise the qb-core export name. Attention if you change it, be sure you have also change it in qbCore
viewRangeForMarkers = 50,
positions = {
{
coordinate = vector3(-190.26338195801, -1272.0236816406, 31.277589797974), -- position of the Location
scale = 0.8, -- scale for marker
radius = 2.0, -- action radius
marker = 39, -- marker type see https://docs.fivem.net/docs/game-references/markers/
job = "", -- you can leave it blank if no job is required
rgba = { 255, 0, 0, 155 }, -- color of marker
subMarker = {
marker = 4, -- marker type see https://docs.fivem.net/docs/game-references/markers/
posZ = 4.66, -- z position of the subMarker
},
deleteMessage = "Drück ~g~E ~w~zum zum Einparken.", -- the action message if player is in correct vehicle
canNotDeleteMessage = "Du bist in keinem Fahrzeug oder kannst dieses hier nicht einparken.", -- the action message if player is not in correct vehicle
authorizedVehicles = { -- vehicles that ca be deleted at this point
'flatbed',
'f450c',
},
},
{
coordinate = vector3(-216.13519287109, -1324.1403808594, 30.497203826904), -- position of the Location
scale = 0.8, -- scale for marker
radius = 2.0, -- action radius
marker = 39, -- marker type see https://docs.fivem.net/docs/game-references/markers/
job = "", -- you can leave it blank if no job is required
rgba = { 255, 0, 0, 155 }, -- color of marker
subMarker = {
marker = 4, -- marker type see https://docs.fivem.net/docs/game-references/markers/
posZ = 4.66, -- z position of the subMarker
},
deleteMessage = "Drück ~g~E ~w~zum zum Einparken.", -- the action message if player is in correct vehicle
canNotDeleteMessage = "Du bist in keinem Fahrzeug oder kannst dieses hier nicht einparken.", -- the action message if player is not in correct vehicle
authorizedVehicles = { -- vehicles that ca be deleted at this point
'flatbed',
'f450c',
},
},
},
}