
QuestShop provides an in-game shop and (quest) reward progression system. It is designed for modpack makers to support controlled item access, team play, and quest progression.
QuestShop is a lightweight Minecraft (NeoForge) mod that provides an in-game shop and reward progression system.
It is designed for modpack makers to support controlled item access, team play, and quest progression.
Inspired by FTB Money.
👩💻 Author: Holysweet
🧑💻 Developed by: AquariusSidhe (GitHub: alexanderheuts)
📜 License: MIT
QuestShop works on its own, but offers optional integration with:
No hard dependencies: packs can include QuestShop standalone or alongside these mods.
All in-game commands are attached under: /hqs
To open the shop use: /hqs shop
All shop content is defined via datapacks.
data/yourpack/questshop/shop_categories/building.json
{ "display": "Building", "unlocked_by_default": true, "order": 30 }
data/yourpack/questshop/shop_entries/building_basic.json
[
{
"item": "minecraft:cobblestone",
"amount": 64,
"cost": 2,
"category": "building"
},
{
"item": "minecraft:oak_planks",
"amount": 64,
"cost": 2,
"category": "building"
}
]
Folder structure (datapack):
(your_datapack)/
pack.mcmeta
data/
yourpack/
questshop/
shop_categories/
building.json
shop_entries/
building_basic.json
See repository for example datapack.