Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
| Date uploaded | 3 months ago |
| Version | 4.8.1 |
| Download link | RonmaruMori-SimpleQuest-4.8.1.zip |
| Downloads | 50 |
| Dependency string | RonmaruMori-SimpleQuest-4.8.1 |
This mod requires the following mods to function
denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.2202ValheimModding-Jotunn
Jötunn (/ˈjɔːtʊn/, 'giant'), the Valheim Library was created with the goal of making the lives of mod developers easier. It enables you to create mods for Valheim using an abstracted API so you can focus on the actual content creation.
Preferred version: 2.28.0README
Simple Quest Pro
Система квестов для Valheim с журналом, автоматическим переводом предметов и интеграцией опыта. Quest system for Valheim with a journal, automatic item translation, and XP integration.
🇷🇺 Описание (RU)
Этот мод добавляет в игру полноценную систему поручений. Вы можете просматривать доступные квесты в стильном журнале и получать награды за их выполнение.
Основные фишки:
- Журнал квестов: Нажмите клавишу L, чтобы открыть меню.
- Авто-локализация: Мод сам переводит названия предметов из заданий на язык вашей игры (Дерево, Камень и т.д.).
- Интеграция с EpicMMO: Автоматическое начисление опыта за выполнение квестов (если установлен мод EpicMMOSystem).
- Гибкая настройка: Все квесты хранятся во внешнем файле
quests.json. Вы можете легко добавлять свои задания.
Установка:
- Распакуйте архив в папку
BepInEx/plugins. - Отредактируйте квесты в файле
BepInEx/config/SimpleQuest/quests.json.
🇺🇸 Description (EN)
This mod adds a complete quest system to Valheim. You can browse available tasks in a stylish journal and receive rewards for completing them.
Features:
- Quest Journal: Press L to open the menu.
- Auto-localization: The mod automatically translates item names from your tasks into your game's language (Wood, Stone, etc.).
- EpicMMO Integration: Automatically grants XP for completing quests (if EpicMMOSystem is installed).
- Customizable: All quests are stored in an external
quests.jsonfile. You can easily add your own tasks.
Installation:
- Extract the archive into the
BepInEx/pluginsfolder. - Edit your quests in
BepInEx/config/SimpleQuest/quests.json.
🛠 Настройка / Configuration (JSON Example)
Ваш файл quests.json должен выглядеть так / Your quests.json should look like this:
{
"Quests": [
{
"ID": "test_stone_check",
"Title": "БЫСТРЫЙ ТЕСТ",
"Goal": "Соберите 3 камня, чтобы проверить работу мода.",
"Rarity": "Magic",
"RewardItem": "Wood",
"RewardAmount": 10,
"ExpReward": 50,
"Reqs": [
{
"Prefab": "Stone",
"Amount": 3
}
]
}
]
}