> For the complete documentation index, see [llms.txt](https://micky-studio-developpement.gitbook.io/micky-studio-developpements-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://micky-studio-developpement.gitbook.io/micky-studio-developpements-docs/apocalyptic/recycler-system/installation.md).

# Installation

1 - Drop the sql files&#x20;

```sql
CREATE TABLE IF NOT EXISTS `MickyStudioDevZ_RecyclerSystem` (
  `id` INT NOT NULL AUTO_INCREMENT,
  `owner` VARCHAR(64) DEFAULT NULL,
  `x` DOUBLE NOT NULL,
  `y` DOUBLE NOT NULL,
  `z` DOUBLE NOT NULL,
  `heading` FLOAT NOT NULL DEFAULT 0,
  `energy` INT NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

```

2 - Move the folder for your ressources

3 - Add this in your server.cfg

```lua
ensure MickyStudioDevZ_RecyclerSystem
```

4 - Restart your server

5 - Enjoy :smile:
