-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.lua
35 lines (22 loc) · 907 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
30
31
32
33
34
35
Config = {}
Config.Language = 'en'
Config.UseCommand = true
Config.CommandName = 'tracknumber'
Config.ItemUse = true
Config.ItemName = 'phonetracker'
Config.UpdateBlip = 300 -- In ms
Config.UseAirplane = true
Config.BlipType = 'exact' -- Values are exact or radius.
Config.BlipRadius = 50.0 -- If Config.BlipType is set to radius edit this to your own's choice.
Config.NotificationType = "qb" -- Values = qb, okok, ox.
Config.NotifyTitle = '' -- Use this if you have set Config.NotificationType to ox or okok.
Config.OnlyWhitelistedJobs = true
Config.WhitelistedJobs = { -- Edit this if you are using Config.OnlyWhitelistedJobs.
'police',
}
Config.BlacklistedJobs = { -- Here you can add blacklisted jobs that will not be trackable.
'taxi',
}
Config.BlacklistedGangs = { -- Here you can add blacklisted gangs that will not be trackable.
'ballas',
}