๐ qs-inventory
Item MetaData Display
Go to qs-inventory/config/metadata.js and paste this code in the FormatItemInfo()
function under any one of the other else if
statements.
} else if (itemData.name == "fishinglure" || itemData.name == "fishinglure2") {
$(".item-info-title").html("<p>" + `${itemData.info.label || label}` + "</p>");
$(".item-info-description").html(
"<p><strong>Durability: </strong><span>" +
itemData.info.uses +
"%</span></p>"
);
Last updated