Example to use a custom trigger ```lua local data = { label = 'License Example', ---@param Label on inventory type = 'Weapon license', ---@param Licence type name = 'id_card', ---@param Item name price = 10, --- @param Price of licencie } TriggerEvent('qs-licenses:client:Target', data) ``` You need go to qs-inventory\config\metadata.js Modify id_card ```js if (itemData.name == "id_card") { $(".item-info-title").html("
" + itemData.info.label + "
"); $(".item-info-description").html( "First Name: " + itemData.info.firstname + "
Last Name: " + itemData.info.lastname + "
Birth Date: " + itemData.info.birthdate + "
Gender: " + gender + "
Type: " + itemData.info.type + "
" ); }; ```