1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-30 01:33:52 +02:00
parent 98a52d34f5
commit 44c5ed941b
3 changed files with 126 additions and 72 deletions

View file

@ -2,38 +2,67 @@ Config = {}
-- Bag component IDs and their inventory properties
-- These are the drawable IDs for the "bags" component (component ID 5)
-- Separated by gender (0 = male, 1 = female)
Config.Backpacks = {
-- [drawableId] = inventory properties
[158] = { -- Example: Small backpack drawable ID
maxweight = 10000, -- 10kg
slots = 10,
label = 'Small Backpack',
-- Optional: specific textures
textures = {
[0] = true, -- Texture ID 0
[1] = true, -- Texture ID 1
-- Add more textures if needed
[0] = { -- Male backpacks
[31] = { -- Example: Small backpack drawable ID for males
maxweight = 10000, -- 10kg
slots = 10,
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 for males
maxweight = 20000, -- 20kg
slots = 15,
label = 'Medium Backpack'
},
[44] = { -- Example: Large backpack drawable ID for males
maxweight = 30000, -- 30kg
slots = 20,
label = 'Large Backpack'
},
[52] = { -- Example: Tactical backpack drawable ID for males
maxweight = 40000, -- 40kg
slots = 25,
label = 'Tactical Backpack'
},
[81] = { -- Example: Hiking backpack drawable ID for males
maxweight = 50000, -- 50kg
slots = 30,
label = 'Hiking Backpack'
}
},
[41] = { -- Example: Medium backpack drawable ID
maxweight = 20000, -- 20kg
slots = 15,
label = 'Medium Backpack'
},
[44] = { -- Example: Large backpack drawable ID
maxweight = 30000, -- 30kg
slots = 20,
label = 'Large Backpack'
},
[52] = { -- Example: Tactical backpack drawable ID
maxweight = 40000, -- 40kg
slots = 25,
label = 'Tactical Backpack'
},
[81] = { -- Example: Hiking backpack drawable ID
maxweight = 50000, -- 50kg
slots = 30,
label = 'Hiking Backpack'
[1] = { -- Female backpacks
[29] = { -- Example: Small backpack drawable ID for females
maxweight = 10000, -- 10kg
slots = 10,
label = 'Small Backpack'
},
[39] = { -- Example: Medium backpack drawable ID for females
maxweight = 20000, -- 20kg
slots = 15,
label = 'Medium Backpack'
},
[42] = { -- Example: Large backpack drawable ID for females
maxweight = 30000, -- 30kg
slots = 20,
label = 'Large Backpack'
},
[49] = { -- Example: Tactical backpack drawable ID for females
maxweight = 40000, -- 40kg
slots = 25,
label = 'Tactical Backpack'
},
[77] = { -- Example: Hiking backpack drawable ID for females
maxweight = 50000, -- 50kg
slots = 30,
label = 'Hiking Backpack'
}
}
}