-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.lua
More file actions
52 lines (47 loc) · 1.02 KB
/
config.lua
File metadata and controls
52 lines (47 loc) · 1.02 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
Config = {}
Config.Core = 'qb' -- qb / esx
Config.EnableCommand = true
Config.Command = 'skill'
Config.SkillTitle = 'Skills'
Config.Skills = {
['Mining'] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = 'Mining',
['icon'] = 'fas fa-helmet-safety',
},
['Lumberjack'] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = 'Lumberjack',
['icon'] = 'fas fa-tree',
},
['Weed'] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = 'Weed',
['icon'] = 'fas fa-cannabis',
},
['Grape'] = {
["Current"] = 0,
["RemoveAmount"] = 0,
["Stat"] = 'Grape',
['icon'] = 'fas fa-wine-bottle',
},
}
Config.AddExp = {
id = 'addexpnotif',
title = 'XP SYSTEM',
description = '+',
description2 = 'XP to ',
position = 'top-right',
style = {
backgroundColor = 'green',
color = 'white',
['.description'] = {
color = 'white'
}
},
icon = 'check',
iconColor = 'white'
}