# Create Quests

## Quests table structure

![Map Pack capture in game](/files/T50YR8qOCxd0WyuCMS8K)

| Name     | Information                                                                | Args                                                                                                        |
| -------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| assignID | Add a unique number to the quest                                           | (optional, auto-generated)                                                                                  |
| type     | Number of the quest type that will be displayed in the game **\[1]**       | <p><strong>types:</strong><br><code>1</code> = Orbs, <code>2</code> = UserCoins, <code>3</code> = Stars</p> |
| amount   | Amount of orbs/stars/coins to complete the quest **\[2]**                  | A number                                                                                                    |
| reward   | Amount of diamonds that will be rewarded for completing the quest **\[3]** | A number                                                                                                    |
| name     | Name of the quest that will be displayed in the game **\[4]**              | Text                                                                                                        |

## Creating the quest

Learn to access phpMyAdmin: 🔐 [Accessing to phpMyAdmin](/community-guide/phpmyadmin/site-structure.md)

Learn phpMyAdmin structure: 🔐 [Site Structure](/community-guide/phpmyadmin/site-structure.md)

<mark style="color:yellow;">⚠ You are required to add a minimum of 3 quests, otherwise the game will not display any quest.</mark>

1. Access to your PHPMyAdmin database and Look for "quests".
2. Open the insert tab.
3. Fill out all fields correctly.
4. Click on "Go".
5. Your quest has been created! ✨

## Trivia

* Previously the quests were configured through the `config/questInfo.php` file along with the chests (currently the file was renamed to dailyChests.php)
* The first quests added by default to the Cvolton core had a name that was not at all appropriate and nothing pleasant for some peoples.


---

# 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://gdpsfh.gitbook.io/community-guide/phpmyadmin/create-quests.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.
