# Installation

1. Download Resource
   * Download the purchased resource from [keymaster](https://keymaster.fivem.net/asset-grants), FiveM's official hub for downloading purchased resources
2. Download Dependencies

<table><thead><tr><th width="715">Resource</th></tr></thead><tbody><tr><td><a href="https://github.com/overextended/ox_lib/releases">ox_lib</a></td></tr><tr><td><a href="https://github.com/overextended/ox_inventory/releases">ox_inventory</a>/<a href="https://github.com/qbcore-framework/qb-inventory">qb-inventory</a> (We are open to supporting other inventories, make a <a href="https://discord.gg/devm">ticket</a>)</td></tr><tr><td><a href="https://github.com/overextended/ox_target/releases">ox_target</a> (We are open to supporting other target systems, make a <a href="https://discord.gg/devm">ticket</a>)</td></tr><tr><td><a href="https://keymaster.fivem.net/asset-grants">devm-minigames</a></td></tr><tr><td><a href="https://github.com/esx-framework/esx_core">es_extended</a>/<a href="https://github.com/qbcore-framework/qb-core">qb-core</a></td></tr></tbody></table>

3. Run SQL

<details>

<summary>Main SQL</summary>

```sql
CREATE TABLE `devm_fraud` (
	`identifier` VARCHAR(60) NOT NULL DEFAULT '' COLLATE 'utf8mb3_general_ci',
	`crypto` FLOAT NULL DEFAULT '0',
	`dumps` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_bin',
	PRIMARY KEY (`identifier`) USING BTREE,
	CONSTRAINT `dumps` CHECK (json_valid(`dumps`))
)
COLLATE='utf8mb3_general_ci'
ENGINE=InnoDB
;
```

</details>

4. Install Items depending on your inventory

{% content-ref url="installation/ox\_inventory" %}
[ox\_inventory](https://docs.devm.cc/fraud-old/installation/ox_inventory)
{% endcontent-ref %}

{% content-ref url="installation/qb-inventory" %}
[qb-inventory](https://docs.devm.cc/fraud-old/installation/qb-inventory)
{% endcontent-ref %}
