Inventory

If you want to display the artist and song name in your inventory description make sure to add this line inside your app.js of qb-inventory or lj-inventory:

    else if (itemData.name == "cd") {
            $(".item-info-title").html("<p>" + itemData.label + "</p>");
            $(".item-info-description").html(
                "<p> Artist : " + itemData.info.artist + "</p>" + 
                "<p> Song : " + itemData.info.song + "</p>"
            );
            
    } 

Last updated