# Installation

#### Install the resource

1. Download the resource via [keymaster](https://keymaster.fivem.net/asset-grants)
2. Place the markhor\_easter folder in the resources folder of your FiveM server
3. Add `ensure markhor_easter` to your server.cfg
4. Restart the server

#### Run the following SQL code to your data base

```sql
DROP TABLE IF EXISTS `markhor_easter`;
CREATE TABLE `markhor_easter`  (
  `id` int(0) NOT NULL AUTO_INCREMENT,
  `identifier` longtext DEFAULT NULL,
  `fullname` varchar(255) DEFAULT NULL,
  `found` int(0) NULL DEFAULT 1,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB;
```


---

# 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://docs.markhorscripts.com/home/scripts/markhor-easter-hunt/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.
