Quasar Inventory

Improve compatibility between our Meth Crafting and qs-inventory

qs-inventory already provides built-in support for our specialized items! However, due to the addition of two new items we have to manually add this in temporarily. Please follow the instructions below carefully

Are you on the correct version of qs-inventory?

You must be on qs-inventory version 2.7.8 or above before following the instructions below!

Step 1

Open qs-inventory/config/metadata.js & find line 292. You should see this:

} else if (itemData.name == "ls_liquid_meth" || itemData.name == "ls_meth") {

If you don't see the above items, use CTRL + F and search for one of those items! If you found them, great! Continue following the instructions. If you did not find them, ensure you are on version 2.7.8 or higher of qs-inventory!

Step 2

Highlight and replace the entire line 292 (or whatever line you found the matching code from above), and update it to this:

} else if (itemData.name == "ls_liquid_meth" || itemData.name == "ls_meth" || itemData.name == "ls_meth_tray" || itemData.name == "ls_meth_box") {

Save, restart & you're done!

Last updated