> For the complete documentation index, see [llms.txt](https://bmjmodding.gitbook.io/fr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bmjmodding.gitbook.io/fr/fivem-scripts/forensic-analysic-system/item.md).

# Item

Essential component for script execution.

| Image                                                                                                                                                                                                                                                                                                           | Item Name         | Description                                                                      |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- | -------------------------------------------------------------------------------- |
| <div><figure><img src="https://3667781239-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FzI3I8fqthLn56FrEWcu8%2Fuploads%2F0lsrusMRBW3O5bwkewIU%2Fsurgical_gloves.png?alt=media&amp;token=301688c2-8ac3-49ef-bc19-5b7d1b202488" alt="" width="125"><figcaption></figcaption></figure></div> | `surgical_gloves` | Mandatory equipment to collect evidence without contaminating it.                |
| <div><figure><img src="https://3667781239-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FzI3I8fqthLn56FrEWcu8%2Fuploads%2FyXxJ1LlXNVWJFqLRApHY%2Fevidence.png?alt=media&amp;token=81efca48-bf8d-4c5e-9297-6e5a4c1df3d6" alt=""><figcaption></figcaption></figure></div>                    | `evidence`        | Sample container for storing and analyzing evidence collected at crime scenes.   |
| <div><figure><img src="https://3667781239-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FzI3I8fqthLn56FrEWcu8%2Fuploads%2F1vnGY99SjFdW1Z7lIidh%2Fevidence_empty.png?alt=media&amp;token=2a5497fa-d93f-4afa-8723-be585df15a82" alt=""><figcaption></figcaption></figure></div>              | `evidence_empty`  | Sterile container needed to collect and store physical evidence at crime scenes. |

***

### Config (ox\_inventory)

{% code title="ox\_inventory/data/items.lua" %}

```lua
{
  ...,
  ['surgical_gloves'] = {
    label = 'Gants chirurgicaux',
    weight = 25,
    stack = true,
    close = true,
    consume = 0,
    client = {
      export = 'mxrveuh_evidence.surgical_gloves'
    }
  },
  ['evidence_empty'] = {
    label = 'Preuves vides',
    weight = 1,
    stack = true,
    allowArmed = false,
    consume = 0
  },
  ['evidence'] = {
    label = 'Preuves',
    weight = 300,
    stack = true,
    allowArmed = false,
    consume = 0,
    buttons = {
      {
        label = 'Analyser la fiche',
        action = function(slot)
          TriggerServerEvent('mxrveuh_evidence:analysePlug', slot)
        end
       }
    }
  },
}
```

{% endcode %}

Remember to include the images in the `ox_inventory/web/images` directory. The attached file contains images of the items.

{% file src="/files/bH6fBnGXtw8L16x6nelW" %}
Image Item
{% endfile %}
