ed
This commit is contained in:
parent
0905e09ac9
commit
98a52d34f5
4 changed files with 125 additions and 30 deletions
|
@ -7,7 +7,13 @@ Config.Backpacks = {
|
|||
[158] = { -- Example: Small backpack drawable ID
|
||||
maxweight = 10000, -- 10kg
|
||||
slots = 10,
|
||||
label = 'Small Backpack'
|
||||
label = 'Small Backpack',
|
||||
-- Optional: specific textures
|
||||
textures = {
|
||||
[0] = true, -- Texture ID 0
|
||||
[1] = true, -- Texture ID 1
|
||||
-- Add more textures if needed
|
||||
}
|
||||
},
|
||||
[41] = { -- Example: Medium backpack drawable ID
|
||||
maxweight = 20000, -- 20kg
|
||||
|
@ -34,6 +40,9 @@ Config.Backpacks = {
|
|||
-- Key to open backpack inventory (default: B)
|
||||
Config.BackpackKey = 'B'
|
||||
|
||||
-- Debug mode - prints additional information to console
|
||||
Config.Debug = true
|
||||
|
||||
-- Notification settings
|
||||
Config.Notifications = {
|
||||
noBackpack = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue