Inventory Setup

Add to items.lua

['prescription_pad'] = {        
    label = 'Prescription Pad',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = 'For use by medical professionals only',    
},
['prescription'] = {        
    label = 'Prescription Receipt',        
    weight = 20,         
    stack = false,        
    close = true,        
    description = nil,    
},      
['adrenaline'] = {        
    label = 'Adrenaline',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = 'The Label Has Been Ripped Off',    
},          
['oxy'] = {        
    label = 'Oxy',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = 'The Label Has Been Ripped Off',    
},    
['xanax'] = {        
    label = 'Xanax',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['steroids'] = {        
    label = 'Steroids',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['valium'] = {        
    label = 'Valium',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['cough_syrup'] = {        
    label = 'Cough Syrup',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['lean_cup'] = {        
    label = 'Styrofoam Cup',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['sprunk_bottle'] = {        
    label = 'Bottle of Sprunk',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['lean'] = {        
    label = 'Cup of Lean',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},
['narkan'] = {        
    label = 'Narkan',        
    weight = 200,         
    stack = false,        
    close = true,        
    description = nil,    
},

QB-Based Inventories

If you have a qb based inventory and the metadata isn't automatically showing when hovering over the item in your inventory, then try following these steps:

  • Find your javascript file (usually called app.js in an html folder)

  • CTRL + F and search for markedbills until you find.

  • Above this line add the following code.

Last updated