# 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.
* Take care to start the script manually after your core.
* **You will also need&#x20;**<mark style="background-color:orange;">**ox\_lib**</mark>**&#x20;and** [<mark style="background-color:orange;">**xsound**</mark>](https://github.com/Xogy/xsound) **scripts!**

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

```
#ensure oxthings
ensure [yourcore]
#ensure other-wais-scripts
ensure xsound
ensure wais-club
```

***

{% 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 Club data.

```sql
CREATE TABLE IF NOT EXISTS `wais_clubs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `club` mediumtext DEFAULT NULL,
  `settings` longtext DEFAULT NULL,
  `favsongs` longtext DEFAULT '{}',
  `money` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
```
