-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
25 lines (21 loc) · 701 Bytes
/
config.lua
File metadata and controls
25 lines (21 loc) · 701 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
---------------------------------------------------------------------------------------------
-- More detailed description of each config option can be found here: https://docs.dejv.it/ac_gifts
---------------------------------------------------------------------------------------------
ac = {
-- Predefined gift sizes - {slots, weight}
sizes = {
small = {1, 1000},
medium = {3, 5000},
large = {5, 15000},
},
-- Default gift size if no size is specified (one of the above)
defaultSize = 'medium',
-- Item names used for gifts
items = {
gift = 'gift',
emptyGift = 'empty_gift',
openedGift = 'opened_gift',
},
-- Checks for latest version (recommended)
versionCheck = true,
}