-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.lua
56 lines (55 loc) · 1.87 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Config = {}
Config.Keybind = 'F1' -- Change this to whatever key you want to use to open the menu
Config.DefaultMenu = {
[1] = {
id = 'general',
title = 'General',
icon = 'user',
items = {
{
id = 'id_card',
title = 'ID Card',
icon = 'id-card',
items = {
{
id = 'show_id',
title = 'Show ID',
icon = 'id-card',
items = {
{
id = 'show_id',
title = 'Show ID',
icon = 'id-card',
type = 'client',
event = 'qb-idcard:client:showID',
shouldClose = true
},
{
id = 'show_id2',
title = 'Show ID2',
icon = 'id-card',
items = {
{
id = 'test',
title = 'test',
icon = 'id-card',
type = 'client',
event = 'qb-idcard:client:showID2',
shouldClose = true
}
}
}
}
}
}
}
}
},
[2] = {
id = 'test2',
title = 'test2',
icon = 'car',
event = 'qb-radialmenu:client:openMenusfegeg',
shouldClose = false
}
}