You are viewing a potentially older version of this package. View all versions.
RonmaruMori-SimpleQuest-4.8.9 icon

SimpleQuest

Полноценная RPG-система квестов: цепочки заданий, золотые уведомления, неограниченные награды и опыт EpicMMO. Настрой свое приключение в Valheim!

Date uploaded 3 months ago
Version 4.8.9
Download link RonmaruMori-SimpleQuest-4.8.9.zip
Downloads 107
Dependency string RonmaruMori-SimpleQuest-4.8.9

This mod requires the following mods to function

denikson-BepInExPack_Valheim-5.4.2202 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.

Preferred version: 5.4.2202
ValheimModding-Jotunn-2.28.0 icon
ValheimModding-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.0

README

📜 Simple Quest Pro (v4.8.9)

Simple Quest Pro is a powerful yet lightweight RPG system for Valheim that transforms your survival experience into an epic adventure. Featuring a full in-game journal, dynamic notifications, and deep world integration.

Server-Ready: Configure your quest chains once; they will automatically sync to all players upon login.


🚀 What's New in v4.8.9?

  • 👾 Expanded Bestiary: Updated localizer for full support of MonsterLabZ and Monstrum creatures. Prefabs are now correctly tracked in hunting tasks.
  • 🌍 Global Compatibility: Improved kill-registration system for custom mobs with unique skeletons.
  • 🛠 Localization Optimization: Translation files load faster and support extended IDs for mod-specific monster quests.

🤝 Key Features

  • ⛓️ Smart Chains (PreReqID): Create immersive storylines where new quests unlock only after completing previous ones.
  • ✨ Golden Notifications: Real-time progress (e.g., Wood: 15 / 50) displayed in bold gold text.
  • 💎 Rarity System: Color-coded difficulty and rewards: Common, Rare, Epic, Legendary, Mythic.
  • 🖼️ Reward Slideshow: Animated icons in the journal cycle through all reward items.
  • 🎨 Immersive UI: A beautiful interface designed in an ancient parchment style.
  • ☁️ Server-Side Sync: Automatic quests.json synchronization from server to client.

🛠 Supported Mods

Officially integrated for a seamless experience:

  • Monstrum & MonstrumDeepNorth / Ashlands (by Therzie)
  • MonsterLabZ
  • EpicMMO (Direct XP rewards integration)
  • Jotunn (Required library)

⌨️ Controls

Action Key Description
Open Journal L Customizable in BepInEx config
Navigation < / > Switch between quest pages
Close ESC / TAB Quick exit

⚙️ Installation

  1. Install Jotunn.
  2. Place SimpleQuestPro.dll into your BepInEx/plugins/ folder.
  3. Launch the game once to generate the necessary folders.
  4. Place your quests.json into BepInEx/config/SimpleQuest/.
  5. (Optional) Add translation files to the translations folder inside the plugin directory.

📑 Configuration Example (MonsterLabZ / Monstrum)

{
  "Quests": [
    {
      "ID": "m_1_start",
      "Title": "MEADOWS: Master of the Woods",
      "Goal": "Boars are just the beginning. Clear out the local population.",
      "Rarity": "Common",
      "KillReqs": [{ "Prefab": "Boar", "Amount": 30 }],
      "Reqs": [{ "Prefab": "LeatherScraps", "Amount": 40 }],
      "RewardItems": [
        { "Prefab": "CookedMeat", "Amount": 20 },
        { "Prefab": "Honey", "Amount": 15 }
      ],
      "ExpReward": 1000
    },
    {
      "ID": "m_2_deer",
      "PreReqID": "m_1_start",
      "Title": "MEADOWS: The Great Hunt",
      "Goal": "Deer can smell you from a mile away. Collect their heads as an offering.",
      "Rarity": "Rare",
      "KillReqs": [{ "Prefab": "Deer", "Amount": 40 }],
      "Reqs": [{ "Prefab": "TrophyDeer", "Amount": 10 }],
      "RewardItems": [
        { "Prefab": "ArrowFlint", "Amount": 100 },
        { "Prefab": "Raspberry", "Amount": 40 }
      ],
      "ExpReward": 2500
    }
  ]
}