Ultimate Quests
quest_ai_patrol.json
$profile:UltimateQuests/Quests/quest_ai_patrol.json
Quest spawnt eine feindliche Patrouille mit möglichen Spawnpunkten und Waypoints.
Beispiel-Config
Passe Werte, Classnames und Positionen an deinen Server an.
{ // Ultimate Quests objective type 7 example. // Documentation file only: remove all // comments before using this as JSON. "ConfigVersion": 1, // Quest file format version used by Ultimate Quests. "ID": 107, // Unique numeric quest ID. "QuestID": "107", // String version of the same quest ID. "Category": "Objective Guide", // Category shown in the quest UI. "Title": "AI Patrol Example", // Quest title shown in the quest list. "Description": "Quest spawnt eine feindliche Patrouille mit möglichen Spawnpunkten und Waypoints.", // General quest description. "StartText": "Start this objective example.", // Text shown when accepting the quest. "CompletionText": "The objective is complete.", // Text shown when the quest is ready to turn in. "Repeatable": 0, // 0 = complete once, 1 = repeatable. "AutoStart": 0, // 0 = player must accept the quest manually. "CanAbandon": 1, // 1 = player may abandon this quest. "TimeLimitSeconds": 0, // 0 = no quest-level time limit. "CooldownSeconds": 0, // Repeat cooldown in seconds. "RandomRewards": 0, // 0 = give all rewards, 1 = choose random rewards. "RandomRewardCount": 1, // Number of random rewards when RandomRewards is 1. "AllowDuplicateRandomRewards": 0, // 0 = random rewards cannot duplicate. "TurnInID": 1, // Main quest giver ID where this quest can be completed. "TurnInIDs": [1], // All quest giver IDs that can complete this quest. "PreviousQuestID": 0, // 0 = no prerequisite quest. "NextQuestID": 0, // 0 = no automatic next quest. "SequentialObjectives": 0, // 0 = objectives can progress in any order. "QuestGiverIDs": [1], // Quest giver IDs that offer this quest. "Objectives": [ { "Type": 7, // Objective type 7. "Title": "Clear the patrol", // Objective title shown in task UI. "Description": "Kill four spawned hostile entities.", // Objective instruction shown to the player. "RequiredCount": 4, // Spawned entities to kill. "Position": "7600 15 5150", // Main patrol area center. "SpawnPositions": ["7600 15 5150", "7660 15 5190", "7520 15 5090"], // Possible spawn points. "Radius": 220.0, // Marker and validation radius. "AISpawnCount": 4, // Number of quest entities. "AIClassNames": ["ZmbM_PatrolNormal_PautRev", "ZmbM_PatrolNormal_Summer"], // Spawn classes. "AIWeaponPool": [], // Optional weapon pool. "AIWaypoints": ["7600 15 5150", "7660 15 5190", "7520 15 5090"], // Patrol route. "AILoadout": [], // Optional AI loadout. "AIAccuracy": 0.0, // 0.0 = default. "AIGrenadeChance": 0.0, // 0.0 = none/default. "RequiredWeapons": [], // Empty = any weapon counts. "RequireHeadshot": 0, // 1 = only headshots count. "ShowMarker": 1 // 1 = show patrol marker. } ], "Rewards": [ { "ClassName": "AmmoBox_545x39_20Rnd", // Vanilla DayZ reward item. "Quantity": 1, // Number of reward items to give. "Health01": -1.0, // -1.0 = default item health. "Attachments": [] // Optional attachments for this reward. } ]}