2015-08-31 02:42:02 +00:00
/*
Sample mission
Created by Defent and eraser1
Called from DMS_selectMission
*/
2015-09-06 17:11:00 +00:00
private ["_num", "_side", "_pos", "_difficulty", "_AICount", "_group", "_crate1", "_crate_loot_values1", "_crate2", "_crate_loot_values2", "_msgStart", "_msgWIN", "_msgLOSE", "_missionName", "_missionAIUnits", "_missionObjs", "_markers", "_time", "_added","_wreck"];
2015-08-31 02:42:02 +00:00
// For logging purposes
_num = DMS_MissionCount;
// Set mission side (only "bandit" is supported for now)
_side = "bandit";
// find position
2015-09-05 03:40:00 +00:00
_pos = [10,100] call DMS_fnc_findSafePos;
2015-08-31 02:42:02 +00:00
// Set general mission difficulty
2015-09-06 17:11:00 +00:00
_difficulty = "difficult";
2015-08-31 02:42:02 +00:00
// Create AI
// TODO: Spawn AI only when players are nearby
_AICount = 6 + (round (random 2));
_group =
[
_pos, // Position of AI
_AICount, // Number of AI
"random", // "random","hardcore","difficult","moderate", or "easy"
2015-08-31 03:22:15 +00:00
"random", // "random","assault","MG","sniper" or "unarmed" OR [_type,_launcher]
2015-08-31 02:42:02 +00:00
_side // "bandit","hero", etc.
2015-09-05 03:40:00 +00:00
] call DMS_fnc_SpawnAIGroup;
2015-08-31 02:42:02 +00:00
2015-09-06 17:11:00 +00:00
// Create Crates
_crate1 = ["Box_NATO_Wps_F",_pos] call DMS_fnc_SpawnCrate;
_wreck = createVehicle ["Land_UWreck_Heli_Attack_02_F",[(_pos select 0) - 10, (_pos select 1),-0.2],[], 0, "CAN_COLLIDE"];
2015-08-31 02:42:02 +00:00
// Set crate loot values
2015-09-06 17:11:00 +00:00
_crate_loot_values1 =
2015-08-31 02:42:02 +00:00
[
2015-09-06 17:11:00 +00:00
8, // Weapons
4, // Items
2 // Backpacks
2015-08-31 02:42:02 +00:00
];
2015-08-31 04:51:06 +00:00
// Define mission-spawned AI Units
_missionAIUnits =
[
_group // We only spawned the single group for this mission
];
// Define mission-spawned objects and loot values
_missionObjs =
[
2015-09-06 17:11:00 +00:00
[_wreck],
2015-09-05 01:28:05 +00:00
[],
2015-09-06 17:11:00 +00:00
[[_crate1,_crate_loot_values1]]
2015-08-31 04:51:06 +00:00
];
// Define Mission Start message
2015-09-06 17:11:00 +00:00
_msgStart = format["<t color='#FFFF00' size='1.25'>Blackhawk down! </t><br/> We got a Blackhawk down, Super 6-1 is down, secure the perimeter and claim what can be claimed!"];
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Define Mission Win message
2015-09-06 17:11:00 +00:00
_msgWIN = format["<t color='#0080ff' size='1.25'>Blackhawk down! </t><br/> Convicts have secured the blackhawk and claimed the remaining loot!"];
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Define Mission Lose message
2015-09-06 17:11:00 +00:00
_msgLOSE = format["<t color='#FF0000' size='1.25'>Blackhawk down! </t><br/> The blackhawk has been sized by the enemy and the loot has been destroyed!"];
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Define mission name (for map marker and logging)
2015-09-06 17:11:00 +00:00
_missionName = "Blackhawk Down";
2015-08-31 02:42:02 +00:00
// Create Markers
_markers =
[
_pos,
_missionName,
_difficulty
2015-09-05 03:40:00 +00:00
] call DMS_fnc_CreateMarker;
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Record time here (for logging purposes, otherwise you could just put "diag_tickTime" into the "DMS_AddMissionToMonitor" parameters directly)
2015-08-31 02:42:02 +00:00
_time = diag_tickTime;
2015-08-31 04:51:06 +00:00
// Parse and add mission info to missions monitor
2015-08-31 02:42:02 +00:00
_added =
[
_pos,
[
[
"kill",
_group
],
[
"playerNear",
[_pos,DMS_playerNearRadius]
2015-08-31 04:51:06 +00:00
]
2015-08-31 02:42:02 +00:00
],
[
_time,
(DMS_MissionTimeOut select 0) + random((DMS_MissionTimeOut select 1) - (DMS_MissionTimeOut select 0))
],
2015-08-31 04:51:06 +00:00
_missionAIUnits,
_missionObjs,
[_msgWIN,_msgLOSE],
2015-08-31 02:42:02 +00:00
_markers,
_side
2015-09-05 03:40:00 +00:00
] call DMS_fnc_AddMissionToMonitor;
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Check to see if it was added correctly, otherwise delete the stuff
2015-08-31 02:42:02 +00:00
if !(_added) exitWith
{
2015-08-31 04:51:06 +00:00
diag_log format ["DMS ERROR :: Attempt to set up mission %1 with invalid parameters for DMS_AddMissionToMonitor! Deleting mission objects and resetting DMS_MissionCount.",_missionName];
// Delete AI units and the crate. I could do it in one line but I just made a little function that should work for every mission (provided you defined everything correctly)
_cleanup = [];
{
_cleanup pushBack _x;
2015-09-04 16:35:19 +00:00
} forEach _missionAIUnits;
2015-08-31 04:51:06 +00:00
_cleanup pushBack ((_missionObjs select 0)+(_missionObjs select 1));
2015-09-05 01:28:05 +00:00
{
_cleanup pushBack (_x select 0);
} foreach (_missionObjs select 2);
2015-08-31 04:51:06 +00:00
2015-09-05 03:40:00 +00:00
_cleanup call DMS_fnc_CleanUp;
2015-08-31 04:51:06 +00:00
// Delete the markers directly
2015-09-04 16:35:19 +00:00
{deleteMarker _x;} forEach _markers;
2015-08-31 04:51:06 +00:00
// Reset the mission count
DMS_MissionCount = DMS_MissionCount - 1;
2015-08-31 02:42:02 +00:00
};
// Notify players
2015-09-05 03:40:00 +00:00
_msgStart call DMS_fnc_BroadcastMissionStatus;
2015-08-31 02:42:02 +00:00
if (DMS_DEBUG) then
{
2015-08-31 04:51:06 +00:00
diag_log format ["DMS_DEBUG MISSION: (%1) :: Mission #%2 started at %3 with %4 AI units and %5 difficulty at time %6",_missionName,_num,_pos,_AICount,_difficulty,_time];
2015-08-31 02:42:02 +00:00
};