Custom NFT Project Quests

These are special quests that are only playable by members of specific NFT projects. These quests can serve as an amazing way to boost community engagement, provide special perks, and create unique experiences for your NFT holders.

Ready to make a quest for your community?

Start by looking over the Writing RPGChain Quests section. Once your quest template and quest is ready, simply update the quest json file to include the parameters below:

  • "private: true" to indicate it should not be listed in the Questboard

  • "token_contracts" to list out only the contract addresses that are allowed to play this quest (the address of your NFT project)

The below example shows a quest that would only be playable by members of the WAGDIE community:

```json
{
    "icon": "jigsaw-piece",
    "name": "A Demo WAGDIE Quest",
    "template": "demo-partner",
    "description": "Assist a new NFT project integrating with RPGChain",
    "image": "locations/cloverdale-outskirts.png",
    "variables": {
        "enemy":"goblin"
    },
    "published_at": "2023-02-20 00:00:00",
    "playable_until": "2050-01-01 00:00:00",
    "private": true,
    "token_contracts": ["0x659a4bdaaacc62d2bd9cb18225d9c89b5b697a5a"]
}
```

Last updated