forked from wasabirobby/wasabi_backpack
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.lua
68 lines (62 loc) · 1.64 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
57
58
59
60
61
62
63
64
65
66
67
68
Config = {}
Config.checkForUpdates = true -- Check for updates?
Config.Debug = true
Config.Framework = 'ESX' --Only supports 'ESX' at the moment
Config.OneBagInInventory = true
Config.Backpacks = {
['bag1'] = { --item name needs to have 'bag' in it to work properly
Label = 'Backpack',
Slots = 35,
Weight = 20000,
Uniform = {
Male = {
['bags_1'] = 41,
['bags_2'] = 0,
},
Female = {
['bags_1'] = 41,
['bags_2'] = 0,
}
},
CleanUniform = {
Male = {
['bags_1'] = 0,
['bags_2'] = 0,
},
Female = {
['bags_1'] = 0,
['bags_2'] = 0,
}
}
},
['bag2'] = {
Label = 'Backpack',
Slots = 15,
Weight = 5000,
Uniform = {
Male = {
['bags_1'] = 41,
['bags_2'] = 0,
},
Female = {
['bags_1'] = 41,
['bags_2'] = 0,
}
},
CleanUniform = {
Male = {
['bags_1'] = 0,
['bags_2'] = 0,
},
Female = {
['bags_1'] = 0,
['bags_2'] = 0,
}
}
},
}
Strings = { -- Notification strings
action_incomplete = 'Action Incomplete',
one_backpack_only = 'You can only have 1x backpack!',
backpack_in_backpack = 'You can\'t place a backpack within another!',
}