# How to set it up

{% hint style="info" %}
Below are some important types and installation contents.
{% endhint %}

* Do not change the name of the script
* Put the script in the resources folder, do not use any folderisation.
* Prefer to start manually in server.cfg as follows.
* <mark style="background-color:orange;">wais-compatibility</mark> script is required. Named <mark style="background-color:orange;">wais-compatibility-hudv5</mark> in [Keymaster](https://keymaster.fivem.net)
* Take care to start the script manually after your core.

{% hint style="danger" %}
**This is not the layout and appearance that should be in Server.cfg**
{% endhint %}

```
ensure [yourcore]
ensure wais-compatibility
#ensure other-wais-scripts
ensure wais-bodycamv2
```

***

{% hint style="info" %}
You need to read the SQL Files. If you cannot access the files, the queries are below.
{% endhint %}

SQL Table codes where we will keep Bodycam Records data.

```sql
CREATE TABLE IF NOT EXISTS `wais_records` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `job` mediumtext DEFAULT NULL,
  `meta` longtext DEFAULT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
```

***
