> For the complete documentation index, see [llms.txt](https://zat-scripts.gitbook.io/zat-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zat-scripts.gitbook.io/zat-scripts/esx/crafting/others.md).

# Others

Detailed explanation of the config file to adapt the resource to your player needs.

## Config.lua

HOW TO ADD A BLUEPRINT (client-side):

```lua
exports["zat-crafting"]:GiveBlueprint("drill")
```

HOW TO ADD REPUTATION (client-side):

```
exports["zat-crafting"]:IncreaseReputationBy(10)
```

HOW TO SHOW ITEM DESCRIPTION IN THE INVENTORY:

{% hint style="info" %}

```
qb-inventory : 
add this part 
```

{% endhint %}

```
case "blueprint":
return `<p>Type : ${itemData.info.type}</p>`;
```

Under this :

```
case "harness":
return `<p>${itemData.info.uses} uses left</p>`;
```

{% hint style="info" %}

```
ps-inventory : 
add this part 
```

{% endhint %}

```
else if (itemData.name == "blueprint") {
$(".item-info-title").html("<p>" + itemData.label + "</p>"); 
$(".item-info-description").html("<p> Type: " + itemData.info.type + "</p>");
	
```

Under this :

```
} else if (itemData.name == "harness") {
var finalHarness = harnessUsePart + "<br><br>"  +  "</p>";
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(finalHarness);
        
```
