# Installation

### Dependencies

## Asset download

1. **Download your resource from FiveM's Keymaster.**
2. **Unzip zip folder and place it into your resource folder.**&#x20;
3. **Add ensure l2s-Crafting to your server start config. Make sure to place anywhere below the framework and dependencies resources.**

## installation

**1- Put l2s-crafting inside resource**

**2- Start the script**

**3- Run SQL**

```sql
CREATE TABLE IF NOT EXISTS `crafting` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `citizenid` varchar(50) NOT NULL DEFAULT '0',
  `itemname` varchar(550) NOT NULL DEFAULT '0',
  `amount` int(111) DEFAULT 1,
  `start` varchar(550) NOT NULL DEFAULT '0',
  `startlua` varchar(550) NOT NULL DEFAULT '0',
  `endd` int(100) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
```

## Finally Customize Your setting in config.lua


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://l2s.gitbook.io/l2s-dev-documentations/qbcore/crafting/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
