# Create game

{% hint style="danger" %}
First you must [create team](https://docs.metaproprotocol.com/metapro-market/developers-portal/create-team).
{% endhint %}

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2Fxu8QfcffoPuTtEpHH15F%2Fimage.png?alt=media&#x26;token=98ff1f7c-1d9f-4701-93ad-d1ebe6eb008a" alt=""><figcaption></figcaption></figure>

✔️ Here, you can view your team and make any necessary changes by clicking on the notepad icon to access the editing options.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FZwD2FWQrjEkkCDCdGR1f%2Fimage.png?alt=media&#x26;token=5f73e095-b549-4503-a4b6-3457733a183a" alt=""><figcaption></figcaption></figure>

✔️ This function enables easy switching between teams if you have more than one team.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FkqppNlNMUucwmKsV8fyQ%2FSelect%20team.png?alt=media&#x26;token=9fd7444c-56f0-49ff-b5d8-2229d68ef31e" alt=""><figcaption></figcaption></figure>

Once the team has been created, you can now create game to list it on the market.

Create game function is a feature that allows users to register their game on [metapro market](https://www.metapromarket.com/). This feature enables game developers to easily create and manage their games by providing necessary details such as game title, description, and platform compatibility. The game creation process involves providing information through our user interface.&#x20;

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FBhm8kt1sbmWR1WmYMnlS%2Fimage.png?alt=media&#x26;token=96b94af6-ed08-4ab9-abb4-6fa39cbdaa20" alt=""><figcaption></figcaption></figure>

✔️ Registration start with preview gallery. A preview gallery is a collection of images, videos, or other media that give potential users a glimpse of what they can expect from the game.

{% hint style="danger" %}
File type supported: gif, png, jpg, mp4

Recommended dimensions: 1500x660px

Max size: 20 MB
{% endhint %}

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FVtKXEZyqPB69hX2Rkm4t%2Fimage.png?alt=media&#x26;token=0b72f742-94b4-4d46-aa30-ce71843f36c9" alt="" width="374"><figcaption></figcaption></figure>

✔️ Please provide the name of your game and compose an engaging description. The description will be included on the game detail page underneath its image. [Markdown syntax is supported.](https://www.markdownguide.org/cheat-sheet/)

{% hint style="warning" %}
You should utilize the text formatting option
{% endhint %}

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2F6WW55DLQOsWbjbwyoTPL%2Fimage.png?alt=media&#x26;token=3a16b785-4270-4589-8b81-381cd8adf755" alt=""><figcaption></figcaption></figure>

Text formatting explanation:

{% tabs %}
{% tab title="Heading" %}
To create a heading, add number signs (`#`) in front of a word or phrase. The number of number signs you use should correspond to the heading level. For example, to create a heading level three (`<h3>`), use three number signs (e.g., `### My Header`).

<table><thead><tr><th>Markdown</th><th width="207.66666666666666">HTML</th><th>Rendered Output</th></tr></thead><tbody><tr><td><code># Heading level 1</code></td><td><code>&#x3C;h1>Heading level 1&#x3C;/h1></code></td><td><h2 id="heading-level-1">Heading level 1</h2></td></tr><tr><td><code>## Heading level 2</code></td><td><code>&#x3C;h2>Heading level 2&#x3C;/h2></code></td><td><h3 id="heading-level-2">Heading level 2</h3></td></tr><tr><td><code>### Heading level 3</code></td><td><code>&#x3C;h3>Heading level 3&#x3C;/h3></code></td><td><h4 id="heading-level-3">Heading level 3</h4></td></tr></tbody></table>
{% endtab %}

{% tab title="Bold Text" %}
To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two asterisks without spaces around the letters.

| Markdown                     | HTML                                      | Rendered Output            |
| ---------------------------- | ----------------------------------------- | -------------------------- |
| `I just love **bold text**.` | `I just love <strong>bold text</strong>.` | I just love **bold text**. |
| `I just love __bold text__.` | `I just love <strong>bold text</strong>.` | I just love **bold text**. |
| `Love**is**bold`             | `Love<strong>is</strong>bold`             | Love**is**bold             |
| {% endtab %}                 |                                           |                            |

{% tab title="Italicized text" %}
To italicize text, add one asterisk or underscore before and after a word or phrase. To italicize the middle of a word for emphasis, add one asterisk without spaces around the letters.

| Markdown                               | HTML                                          | Rendered Output                      |
| -------------------------------------- | --------------------------------------------- | ------------------------------------ |
| `Italicized text is the *cat's meow*.` | `Italicized text is the <em>cat's meow</em>.` | Italicized text is the *cat’s meow*. |
| `Italicized text is the _cat's meow_.` | `Italicized text is the <em>cat's meow</em>.` | Italicized text is the *cat’s meow*. |
| `A*cat*meow`                           | `A<em>cat</em>meow`                           | A*cat*meow                           |
| {% endtab %}                           |                                               |                                      |

{% tab title="Horizontal Rul" %}
To create a horizontal rule, use three or more asterisks (`***`), dashes (`---`), or underscores (`___`) on a line by themselves.

```
***

---

_________________
```

{% endtab %}

{% tab title="Ordered Item" %}
To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.

| Markdown                                                                                                                      | HTML                                                                                                                                                                                                               | Rendered Output                                                                         |
| ----------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------- |
| <p><code>1. First item</code><br><code>2. Second item</code><br><code>3. Third item</code><br><code>4. Fourth item</code></p> | <p><code>\<ol></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ol></code></p> | <ol><li>First item</li><li>Second item</li><li>Third item</li><li>Fourth item</li></ol> |
| <p><code>1. First item</code><br><code>1. Second item</code><br><code>1. Third item</code><br><code>1. Fourth item</code></p> | <p><code>\<ol></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ol></code></p> | <ol><li>First item</li><li>Second item</li><li>Third item</li><li>Fourth item</li></ol> |
| <p><code>1. First item</code><br><code>8. Second item</code><br><code>3. Third item</code><br><code>5. Fourth item</code></p> | <p><code>\<ol></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ol></code></p> | <ol><li>First item</li><li>Second item</li><li>Third item</li><li>Fourth item</li></ol> |
| {% endtab %}                                                                                                                  |                                                                                                                                                                                                                    |                                                                                         |

{% tab title="Unordered Item" %}
To create an unordered list, add dashes (`-`), asterisks (`*`), or plus signs (`+`) in front of line items. Indent one or more items to create a nested list.

| Markdown                                                                                                                      | HTML                                                                                                                                                                                                               | Rendered Output                                                                         |
| ----------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------- |
| <p><code>- First item</code><br><code>- Second item</code><br><code>- Third item</code><br><code>- Fourth item</code></p>     | <p><code>\<ul></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ul></code></p> | <ul><li>First item</li><li>Second item</li><li>Third item</li><li>Fourth item</li></ul> |
| <p><code>\* First item</code><br><code>\* Second item</code><br><code>\* Third item</code><br><code>\* Fourth item</code></p> | <p><code>\<ul></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ul></code></p> | <ul><li>First item</li><li>Second item</li><li>Third item</li><li>Fourth item</li></ul> |
| <p><code>+ First item</code><br><code>+ Second item</code><br><code>+ Third item</code><br><code>+ Fourth item</code></p>     | <p><code>\<ul></code><br>  <code>\<li>First item\</li></code><br>  <code>\<li>Second item\</li></code><br>  <code>\<li>Third item\</li></code><br>  <code>\<li>Fourth item\</li></code><br><code>\</ul></code></p> | <ul><li>First item</li><li>Second item</li><li>Third item</li><li><pre><code>\*\*\*     |

***

***

</code></pre><p>Fourth item</p></li></ul> |
{% endtab %}
{% endtabs %}

✔️ Once description has been created please **Select team**.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FSDepbzWZ9s1T3tU2QAG6%2Fteam.png?alt=media&#x26;token=033cdb91-dba6-43d8-91ff-807d664e374c" alt=""><figcaption></figcaption></figure>

Choose a team from a list of options that will appear in a drop-down menu on a screen.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FkqppNlNMUucwmKsV8fyQ%2FSelect%20team.png?alt=media&#x26;token=9fd7444c-56f0-49ff-b5d8-2229d68ef31e" alt=""><figcaption></figcaption></figure>

✔️ Select done once team has been selected.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2Frm36lMciJQrpQQX0XdZV%2Fimage.png?alt=media&#x26;token=18126556-fef0-4ce6-b8cc-b8fd861708e5" alt="" width="375"><figcaption></figcaption></figure>

✔️ Now select category.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FbopMWgkbsV0qSzv1N9yi%2Fimage.png?alt=media&#x26;token=1f208102-0277-419d-862b-125a5e1a7f50" alt=""><figcaption></figcaption></figure>

Please select up to 5 available options.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FLdUjjMCay9b4EiY1ziZ9%2Fqwqwqwqwqwwq1.png?alt=media&#x26;token=39d7a4f4-2f18-43c4-8e77-df2bd871fbce" alt=""><figcaption></figcaption></figure>

✔️ Please select release date.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2F6LdgsvlrS0LAhhA8o8nc%2Fhfhfg.png?alt=media&#x26;token=f8709986-64c5-4f62-be31-fc2295c23773" alt=""><figcaption></figcaption></figure>

✔️ Please select the platform where your game is located. You can select more than one if required. If the platform you are looking for is not on the list, you can add it. Additionally, please attach a link to the store so users can find your game quickly.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FMYXmat5qdcvSU6SwfEF2%2Fimage.png?alt=media&#x26;token=023a6723-6a57-4783-993e-7e0e5b6f0af0" alt=""><figcaption></figcaption></figure>

{% hint style="warning" %}
If the platform you are searching for is not listed, you have the option to add another platform!
{% endhint %}

✔️ Select game status. You can choose from In development or Released

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FHyGi2QsCLSuSIcMnwnKF%2Fcvvcccv.png?alt=media&#x26;token=6656cc2c-6e68-4a36-bc2a-95964ff8abca" alt=""><figcaption></figcaption></figure>

✔️ Please select the engine that your game is on.

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FSk8hHoeHy8vjKnBdC6h4%2Ffgfgf.png?alt=media&#x26;token=a2735af7-c95e-4a83-a812-d59eda260c67" alt=""><figcaption></figcaption></figure>

✔️ Please select supported chains

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FLbXdtgw4bDHedOc082uV%2Fimage.png?alt=media&#x26;token=d5d7c60c-807d-451a-b3ff-168c2662db4e" alt=""><figcaption></figcaption></figure>

✔️Please provide the website of your game and all social media links

<figure><img src="https://2351247042-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9QQIPimQeOGE3C1HbWxf%2Fuploads%2FOleC2ZmWv5x3pwWvfNXT%2Fimage.png?alt=media&#x26;token=55ee0ff6-378a-494a-a695-331438dd69d3" alt=""><figcaption></figcaption></figure>

If all the required information has been entered, the "**create game**" function becomes available.

You have now created game and your game has been listed on the [market](https://www.metapromarket.com/).
