-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathconfig.lua
More file actions
26 lines (22 loc) · 707 Bytes
/
Copy pathconfig.lua
File metadata and controls
26 lines (22 loc) · 707 Bytes
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
Config = {}
Config.Framework = 'qb' -- esx or qb
Config.Inventory = 'ox' -- 'ox' = ox_inventory, 'qb' = qb-inventory, 'qs' = qs-inventory
Config.UseApGovernmentTax = false
-- If you have ap-government installed, set this to true. If not, set it to false.
Config.TaxPercentage = 0.1
-- 0.1 = 10% tax (ONLY if UseApGovernmentTax is set to false)
function Notify(header, message, type, time)
lib.notify({
id = 'terminal',
title = header,
description = message,
position = 'top',
style = {
backgroundColor = '#141517',
color = '#909296'
},
icon = 'usd',
iconColor = '#118C4F',
length = time
})
end