DayZ
  • 🌶️FoxApo DayZ Mods
  • ⚙️Modding | Repacking
  • MODS
    • 👻CRDTN Creatures
      • Phantom
      • config.cpp
    • 💯CRDTN Core
      • File Logger
        • Logger Player Connected
      • Rest Api
        • Getting started
      • Event Handler
      • Notifications UI
      • Admin Utils
      • NPCs
    • 📺CRDTN Gui
    • 📦CRDTN Krabice
    • 🫂CRDTN Factions
    • ⁉️CRDTN Quests
      • ⁉️Getting started
      • 💻Client Side
      • 🖥️Server Side
        • ⚙️Installation
          • 🛠️Quests.json
            • ⚔️Goal
            • 🎁Reward
          • 🌎Quest Events
            • Teleport quest with quest event (server)
        • ⚙️Quest & Goal Types
          • 📜Turn-In goal
          • 📜Kill goal
          • 📜Trade goal
          • 📜Craft goal
          • 📜Action goal
          • 📜Explore goal
        • ⚙️Rewards
        • ⚙️Quest NPCs
    • 🔥CRDTN Fire Regen
      • Config
    • 🔊CRDTN Sounds
    • 🚪CRDTN Locked Doors
      • Config
      • How To
      • config.cpp
Powered by GitBook
On this page
  1. MODS
  2. CRDTN Quests
  3. Server Side
  4. Quest & Goal Types

Trade goal

PreviousKill goalNextCraft goal

Last updated 1 year ago

This quest requires to bring Disinfectant Alcohol, Spray and Iodine Tincture. Each goal has the quantity set. Be careful about these numbers and make sure, what is the real quantity of the item.

This quest is not repeatable

This quest has a pre-quest of id player1

You will get reward - 1x cooking pot and 1x baked beans can

{
      "Id": "medicineTrading",
      "TakerId": "barman",
      "QType": 4,
      "Name": "Medicine deal",
      "Description": "Trade medicine",
      "Goals": [
        {
          "QType": 4,
          "ClassName": "DisinfectantAlcohol",
          /* "Count" : 0 */ // 
          "Quantity": 100, // Use Quantity if the item has quantity 
          "Description": "Bring " // Rest is filled automatically by display name 
        },
        {
          "QType": 4,
          "ClassName": "DisinfectantSpray",
          "Quantity": 100,
          "Description": "Bring "
        },
        {
          "QType": 4,
          "ClassName": "CrudeMachete",
          "Count": 1,
          "Description": "Bring "
        }
      ],
      "Rewards": [
        {
          "RewardType": 1,
          "ClassName": "Pot",
          "Amount": 1
        },
        {
          "RewardType": 1,
          "ClassName": "BakedBeansCan",
          "Amount": 1
        }
      ],
      "IsRepeatable": false,
      "PreQuests": [
        "player1"
      ],
      "RepeatDurationHours": 0
}
⁉️
🖥️
⚙️
📜
Trade Quest Icon