# How To Use Quests Without UI

If you don't need to display any information about quest in HUD you can do it in two ways

1\) You need to use two quest components - first will be used to display quest in hud, like quest journal, track window, etc.

E.g. in example project in WBP\_QuestHUD quest journal and another quest windows initialized by quest storage with tag Quest.Storage.Main. It's mean, that quest storages with another tags won't display any data in HUD

<div align="left"><img src="https://1249461799-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjIT8AFqtlVif5xQAvrF%2Fuploads%2FaP0lWtSSdgO7jUrsd21Q%2Fimage.png?alt=media&#x26;token=a9a938e0-64d1-465e-9054-9138dff69ee1" alt=""></div>

After you add new QuestComponent dont forget to set another Quest Storage Tag in settings

<div align="left"><img src="https://1249461799-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjIT8AFqtlVif5xQAvrF%2Fuploads%2F0mAsmF4vGlx2nBCgBlyj%2Fimage.png?alt=media&#x26;token=babee801-f032-484a-9b32-f51941bac288" alt=""></div>

2\) You can use QuestFlags in quest data asset

<div align="left"><img src="https://1249461799-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjIT8AFqtlVif5xQAvrF%2Fuploads%2FfEo9s9pN6YzFNVgx4BKW%2Fimage.png?alt=media&#x26;token=3dfb2b06-f519-4ac7-923f-82f623d89523" alt=""></div>

Just add new gameplay tag in project settings - e.g. "Quest.DisableDisplayInUI". And next step - you need to modify widgets in example project. Just add check in **WBP\_QuestJournal -> AddQuestWidget**

<div align="left"><img src="https://1249461799-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjIT8AFqtlVif5xQAvrF%2Fuploads%2FtSTf2aFgztqJXturgiFs%2Fimage.png?alt=media&#x26;token=044a86a6-39ca-42f0-9589-45fd9e106d81" alt=""></div>

And in **WBP\_QuestTrackWindow->AddQuestToTrackList**

<div align="left"><img src="https://1249461799-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FkjIT8AFqtlVif5xQAvrF%2Fuploads%2FYkv6Tsv1JeJmVu8Ke14o%2Fimage.png?alt=media&#x26;token=d17b66fa-021e-4483-a5c6-19d0b97d3a11" alt=""></div>
