28 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- U can edit function from server/editable.lua
 | 
						|
-- using added items opens a secondary inventory
 | 
						|
config.itemStash = {
 | 
						|
    {
 | 
						|
        item = "kposet",
 | 
						|
        maxweight = 0,
 | 
						|
        slots = 15,
 | 
						|
        whitelist = { "c_necklace", "c_bproof", "c_decal", "c_torso", "c_mask", "c_helmet", "c_glasses", "c_bag", "c_pants", "c_shoes", "c_bracelet", "c_watch", "c_ear", "clothe_set" }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        item = "pdbag",
 | 
						|
        maxweight = 10000,
 | 
						|
        slots = 10,
 | 
						|
    },
 | 
						|
    {
 | 
						|
        item = "food_bag",
 | 
						|
        maxweight = 1000,
 | 
						|
        slots = 6,
 | 
						|
    },
 | 
						|
    {
 | 
						|
        item = "plastic_box",
 | 
						|
        maxweight = 20000,
 | 
						|
        slots = 20,
 | 
						|
    },
 | 
						|
 | 
						|
 | 
						|
 | 
						|
}
 |