-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
42 lines (37 loc) · 894 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
36
37
38
39
40
41
42
config = {}
config.debug = true -- Debug mode
config.command = 'magicglass' -- Command to open
config.clothes = {
['naked'] = {
m = {
tshirt = 15,
jacket = 15,
arms = 15,
pants = 61,
shoes = 34,
armor = 0,
},
f = {
tshirt = 2,
jacket = 18,
arms = 15,
pants = 15,
shoes = 35,
}
}
}
config.notify = function(data)
lib.notify({
title = data.title,
description = data.desc,
position = 'top-right',
icon = 'glasses',
iconColor = data.color or '#ffffff',
})
end
config.lang = {
title = 'Magic Glass',
stopped = 'Glasses stopped scanning people around you',
have = 'You must have a pair of glasses',
scanning = 'Glasses started scanning people around you',
}