DMS_Exile/@ExileServer/addons/a3_dms/missions/mercenaries.sqf

151 lines
3.7 KiB
Plaintext
Raw Normal View History

2015-08-31 02:42:02 +00:00
/*
Sample mission
Created by Defent and eraser1
Called from DMS_selectMission
*/
private ["_num", "_side", "_pos", "_difficulty", "_AICount", "_group", "_crate", "_crate_loot_values", "_msgStart", "_msgWIN", "_msgLOSE", "_missionName", "_missionAIUnits", "_missionObjs", "_markers", "_time", "_added"];
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
_pos = [10,100] call DMS_fnc_findSafePos;
2015-08-31 02:42:02 +00:00
// Set general mission difficulty
_difficulty = "moderate";
// 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.
] call DMS_fnc_SpawnAIGroup;
2015-08-31 02:42:02 +00:00
// Create Crate
_crate = ["Box_NATO_Wps_F",_pos] call DMS_fnc_SpawnCrate;
2015-08-31 02:42:02 +00:00
// Set crate loot values
_crate_loot_values =
[
5, // Weapons
10, // Items
3 // Backpacks
];
// Define mission-spawned AI Units
_missionAIUnits =
[
_group // We only spawned the single group for this mission
];
// Define mission-spawned objects and loot values
_missionObjs =
[
[],
[],
[[_crate,_crate_loot_values]]
];
// Define Mission Start message
2015-09-06 17:11:00 +00:00
_msgStart = format["<t color='#FFFF00' size='1.25'>Mercenary Group! </t><br/> A group of mercenaries has been spotted. Kill them and take their equipment!"];
2015-08-31 02:42:02 +00:00
// Define Mission Win message
2015-09-06 17:11:00 +00:00
_msgWIN = format["<t color='#0080ff' size='1.25'>Mercenary Group! </t><br/> Convicts have successfully eliminated the mercenaries"];
2015-08-31 02:42:02 +00:00
// Define Mission Lose message
2015-09-06 17:11:00 +00:00
_msgLOSE = format["<t color='#FF0000' size='1.25'>Mercenary Group! </t><br/> The mercenaries have escaped and they took all their loot with them!"];
2015-08-31 02:42:02 +00:00
// Define mission name (for map marker and logging)
2015-08-31 02:42:02 +00:00
_missionName = "Mercenary Group";
// Create Markers
_markers =
[
_pos,
_missionName,
_difficulty
] call DMS_fnc_CreateMarker;
2015-08-31 02:42:02 +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;
// 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 02:42:02 +00:00
],
[
_time,
(DMS_MissionTimeOut select 0) + random((DMS_MissionTimeOut select 1) - (DMS_MissionTimeOut select 0))
],
_missionAIUnits,
_missionObjs,
[_msgWIN,_msgLOSE],
2015-08-31 02:42:02 +00:00
_markers,
_side
] call DMS_fnc_AddMissionToMonitor;
2015-08-31 02:42:02 +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
{
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;
_cleanup pushBack ((_missionObjs select 0)+(_missionObjs select 1));
{
_cleanup pushBack (_x select 0);
} foreach (_missionObjs select 2);
_cleanup call DMS_fnc_CleanUp;
// Delete the markers directly
2015-09-04 16:35:19 +00:00
{deleteMarker _x;} forEach _markers;
// Reset the mission count
DMS_MissionCount = DMS_MissionCount - 1;
2015-08-31 02:42:02 +00:00
};
// Notify players
_msgStart call DMS_fnc_BroadcastMissionStatus;
2015-08-31 02:42:02 +00:00
if (DMS_DEBUG) then
{
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
};