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.2 |
| Download link | RonmaruMori-SimpleQuest-4.8.2.zip |
| Downloads | 33 |
| Dependency string | RonmaruMori-SimpleQuest-4.8.2 |
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
A complete quest system for Valheim with a stylish journal, server-to-client synchronization, and EpicMMO integration.
🇷🇺 Описание (Russian)
Simple Quest Pro добавляет в Valheim систему поручений, которая позволяет игрокам выполнять задания, обменивать ресурсы на награды и получать опыт. Мод полностью синхронизирует квесты с сервера на клиент, что делает его идеальным для выделенных серверов.
Основные возможности:
- Журнал квестов: Открывается нажатием клавиши L (настраивается в конфигурации).
- Синхронизация: Все квесты настраиваются на сервере и автоматически рассылаются игрокам при подключении.
- Авто-локализация: Мод переводит названия стандартных предметов на язык вашего клиента (Железо, Камень и т.д.).
- Интеграция с EpicMMO: Автоматическое начисление опыта (XP) при выполнении заданий (требуется установленный мод
EpicMMOSystem). - Гибкий конфиг: Создание собственных квестов через простой JSON-файл.
Установка:
- Установите Jotunn (обязательная зависимость).
- Распакуйте архив в папку
BepInEx/plugins/SimpleQuest. - Убедитесь, что папка
translationsс файломRussian.jsonнаходится в той же папке, что иSimpleQuestPro.dll. - Отредактируйте список квестов в
BepInEx/config/SimpleQuest/quests.json.
🇺🇸 Description (English)
Simple Quest Pro introduces a task system to Valheim, allowing players to complete missions, trade resources for rewards, and gain experience. The mod features full server-to-client synchronization, making it perfect for dedicated servers.
Key Features:
- Quest Journal: Accessible via the L key (configurable).
- Server-Side Control: Quests are managed on the server and synced to all connected players.
- Auto-localization: Automatically translates standard game item names based on the player's language settings.
- EpicMMO Integration: Grants XP upon quest completion (requires
EpicMMOSystem). - Easy Configuration: Add or edit quests using a straightforward JSON format.
Installation:
- Install Jotunn (required dependency).
- Extract the archive into the
BepInEx/plugins/SimpleQuestfolder. - Ensure the
translationsfolder is in the same directory asSimpleQuestPro.dll. - Configure your quests in
BepInEx/config/SimpleQuest/quests.json.
🛠 JSON Configuration Example
Пример структуры файла quests.json:
{
"Quests": [
{
"ID": "epic_iron_quest",
"Title": "Оружие древних",
"Goal": "Сдайте слитки железа, чтобы получить награду.",
"Rarity": "Epic",
"RewardItem": "SwordIron",
"RewardAmount": 1,
"ExpReward": 2000,
"Reqs": [
{
"Prefab": "Iron",
"Amount": 20
}
]
}
]
}