-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.lua
21 lines (21 loc) · 1.18 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Config = {}
----------------------------------------------------------------
Config.VersionChecker = true
Config.Debug = true
----------------------------------------------------------------
Config.Framework = 'ESX' -- Set to 'ESX' or 'QBCore'
----------------------------------------------------------------
Config.MySQL = {
table = 'phones', -- In which table is the phonenumber located // Default ESX: 'users' // Default QB: 'players'
phonenumber = 'phone_number', -- Column for phonenumber // Default ESX: 'phone_number' // Default QB: 'charinfo'
identifier = 'identifier' -- identifier for table // Default ESX: 'identifier' // Default QB: 'citizenid'
}
----------------------------------------------------------------
Config.Blip = {id = 280, color = 5, scale = 0.8}
Config.Time = 5 -- in minutes // After this time the blip gets removed
Config.neededItem = {enable = true, item = 'phone'}
----------------------------------------------------------------
Config.Command = 'trackphone' -- Open a Input Menu
Config.Input = function()
exports['an_dialogBox']:showDialog('msk_trackphone', 'Track the phonenumber', '0', 'Insert the Phonenumber of the Player you want to track', submit)
end