Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { // !!!!!NOTE YOU MUST REMOVE COMMENTS FROM THE FILE OR IT WILL NOT LOAD INTO DAYZ
- "LastCapturePoint": -1, // <-- Does nothing yet
- "ConfigVersion": "1", // <-- Configure version do not change
- "Interval": 1800.0, // <-- How long after the last event was cleaned up does a new one spawn
- "StartDelay": 900.0, // <-- How long after the server started does the first event is tiggered(Time to warning notification)
- "CaptureTime": 900.0, // <-- How Long a player needs to be inside the Capture Radius before it is considered captured
- "EmptyEventTimeOut": 1800.0, // <-- How long if an event sits empty till it times out and cleans up the area
- "CleanUpTime": 600.0, // <-- How long after the event is over that it will clean up all the objects and zombies
- "PreStartDelay": 300.0, // <-- How long from the first notification of the event till the event starts
- "Hills": [ // <-- this is an array of all the hills
- {
- "Name": "North West Airfield", //<-- Hill name what is show in the notifications
- "X": 4681.490234375, //<-- X cordinate of the hill
- "Y": 339.0, //<-- Y cordinate(height from sea level) of the hill
- "Z": 10333.2001953125, //<-- Z cordinate of the hill
- "CaptureRadius": 15.0, //<-- How close you need to be to the flag to have it capture
- "EventRadius": 100.0, //<-- how close the player has to be to be considered in the event and have the GUI show up
- "ZombieCount": 10, //<-- Number of zombies to spawn around the event
- "Objects": [ // <-- An array of objects to spawn and despawn with the event
- {
- "Item": "Land_Wreck_Uaz", //<-- object name
- "Position": [ //<-- object Position
- 4675.490234375,
- 339.79998779296877,
- 10330.009765625
- ],
- "Orientation": [//<-- object Orientation
- 0.0,
- 0.0,
- 0.0
- ]
- },
- {
- "Item": "Land_Wreck_Uaz",
- "Position": [
- 4685.490234375,
- 339.79998779296877,
- 10341.009765625
- ],
- "Orientation": [
- 0.0,
- 0.0,
- 0.0
- ]
- }
- ]
- },
- {
- "Name": "VMC",
- "X": 4517.41015625,
- "Y": 316.1653747558594,
- "Z": 8278.7001953125,
- "CaptureRadius": 15.0,
- "EventRadius": 100.0,
- "ZombieCount": 10,
- "Objects": []
- },
- {
- "Name": "Prison Island",
- "X": 4517.41015625,
- "Y": 316.1653747558594,
- "Z": 8278.7001953125,
- "CaptureRadius": 15.0,
- "EventRadius": 100.0,
- "ZombieCount": 10,
- "Objects": []
- },
- {
- "Name": "North East Airfield",
- "X": 12289.599609375,
- "Y": 140.0,
- "Z": 12553.3603515625,
- "CaptureRadius": 15.0,
- "EventRadius": 100.0,
- "ZombieCount": 10,
- "Objects": []
- },
- {
- "Name": "Zelenogorsk Military",
- "X": 2480.849853515625,
- "Y": 193.25210571289063,
- "Z": 5111.97509765625,
- "CaptureRadius": 15.0,
- "EventRadius": 100.0,
- "ZombieCount": 10,
- "Objects": []
- },
- {
- "Name": "Staroye Tents",
- "X": 10432.8896484375,
- "Y": 283.0583801269531,
- "Z": 5961.2900390625,
- "CaptureRadius": 15.0,
- "EventRadius": 100.0,
- "ZombieCount": 10,
- "Objects": []
- }
- ],
- "RewardPools": [ //<-- An array of Reward pools that can spawn
- {
- "Name": "First Pool", //<-- Name for the logs to show
- "RewardContainer": "SeaChest", //<-- the container to spawn
- "Rewards": [ //<-- the array of items to spawn in
- {
- "Item": "M4A1", //<-- Item name to spawn in
- "ItemAttachments": [ //<-- an array of attachments to attach to the item(if the item accepts attachments)
- "M4_RISHndgrd", //<-- !!!DO NOT SPAWN MAGS INTO GUNS AS IT CAN BUG THEM OUT
- "M4_OEBttstck",
- "M68Optic"
- ]
- },
- {
- "Item": "PlateCarrierVest",
- "ItemAttachments": [
- "PlateCarrierHolster"
- ]
- },
- {
- "Item": "Mag_STANAGCoupled_30Rnd",
- "ItemAttachments": []
- },
- {
- "Item": "Mag_STANAGCoupled_30Rnd",
- "ItemAttachments": []
- },
- {
- "Item": "NVGoggles",
- "ItemAttachments": [
- "Battery9V"
- ]
- }
- ]
- }
- ],
- "ZombiesClassNames": [ //<-- An array of zombie class names to spawn
- "ZmbM_PatrolNormal_PautRev",
- "ZmbM_PatrolNormal_Autumn",
- "ZmbM_PatrolNormal_Flat",
- "ZmbM_PatrolNormal_Summer",
- "ZmbM_SoldierNormal",
- "ZmbM_usSoldier_normal_Woodland",
- "ZmbM_usSoldier_normal_Desert"
- ],
- "FullMapCheckTimer": 5.0, //<-- how ofter it checks the full map for players who are withing the event radius
- "EventTickTime": 1.0, //<-- how often it checks how close the players (inside the event radius) if they are in the capture radius
- "Logging": 1 //<-- this enables extra logging withing the script.log to help with any trouble shooting
- }
Add Comment
Please, Sign In to add comment