2015-08-31 02:42:02 +00:00
/*
Sample mission (duplicate for testing purposes)
*/
2015-09-06 17:11:00 +00:00
private ["_num", "_side", "_pos", "_difficulty", "_AICount", "_group", "_crate", "_crate_loot_values", "_msgStart", "_msgWIN", "_msgLOSE", "_missionName", "_missionAIUnits", "_missionObjs", "_markers", "_time", "_added","_wreck1","_wreck2","_wreck3","_vehicle"];
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-10-04 03:32:42 +00:00
_pos =
[
25,DMS_WaterNearBlacklist,DMS_MaxSurfaceNormal,DMS_SpawnZoneNearBlacklist,DMS_TraderZoneNearBlacklist,DMS_MissionNearBlacklist,DMS_PlayerNearBlacklist,DMS_ThrottleBlacklists
]call DMS_fnc_findSafePos;
2015-08-31 02:42:02 +00:00
// Set general mission difficulty
2015-08-31 18:31:06 +00:00
_difficulty = "hardcore";
2015-08-31 02:42:02 +00:00
// Create AI
// TODO: Spawn AI only when players are nearby
2015-08-31 20:44:36 +00:00
_AICount = 5 + (round (random 2));
2015-08-31 02:42:02 +00:00
_group =
[
_pos, // Position of AI
_AICount, // Number of AI
2015-08-31 20:44:36 +00:00
"hardcore", // "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
// Create Crate
2015-09-06 17:11:00 +00:00
_crate = ["Box_NATO_Wps_F",[(_pos select 0)+2,(_pos select 1)-1,0]] call DMS_fnc_SpawnCrate;
_wreck1 = createVehicle ["Land_CinderBlocks_F",[(_pos select 0) - 10, (_pos select 1),-0.1],[], 0, "CAN_COLLIDE"];
_wreck2 = createVehicle ["Land_Bricks_V1_F",[(_pos select 0) - 5, (_pos select 1),-3.3],[], 0, "CAN_COLLIDE"];
_wreck3 = createVehicle ["Land_Bricks_V1_F",[(_pos select 0) - 13, (_pos select 1),-1],[], 0, "CAN_COLLIDE"];
_vehicle = ["Exile_Car_Zamak",_pos] call DMS_fnc_SpawnNonPersistentVehicle;
2015-08-31 02:42:02 +00:00
// Set crate loot values
_crate_loot_values =
[
2015-09-06 17:11:00 +00:00
3, // Weapons
[15,["Exile_Item_WoodWallKit","Exile_Item_WoodWallHalfKit","Exile_Item_WoodDoorwayKit","Exile_Item_WoodDoorKit","Exile_Item_Codelock","Exile_Item_PortableGeneratorKit","Exile_Item_WoodFloorKit","Exile_Item_WoodFloorPortKit"]], // 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
[_wreck1,_wreck2,_wreck3], // No spawned buildings
[_vehicle],
2015-09-05 01:28:05 +00:00
[[_crate,_crate_loot_values]]
2015-08-31 04:51:06 +00:00
];
// Define Mission Start message
2015-10-05 03:27:22 +00:00
_msgStart = ['#FFFF00',"A group of mercenaries have set up a construction site. Clear them out!"];
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Define Mission Win message
2015-10-04 03:32:42 +00:00
_msgWIN = ['#0080ff',"Convicts have successfully demolished the construction site!"];
2015-08-31 02:42:02 +00:00
2015-08-31 04:51:06 +00:00
// Define Mission Lose message
2015-10-04 03:32:42 +00:00
_msgLOSE = ['#FF0000',"The mercenaries have dismantled their construction site and escaped!"];
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 = "Construction Site";
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,
2015-10-04 03:32:42 +00:00
[_missionName,_msgWIN,_msgLOSE],
2015-08-31 02:42:02 +00:00
_markers,
Finally another update... warming up
* NEW CONFIG VALUE: DMS_SpawnMinefieldForEveryMission
* You can now force-spawn an AT mine minefield on every mission with the
above config. These mines will only blow up on Tanks, APCs, and MRAPs
(Ifrits, Hunters, Striders).
* ALL MISSIONS HAVE BEEN EDITED TO MATCH THE NEW STANDARD FOR
DMS_fnc_AddMissionToMonitor. **If you have made any custom missions or
modified any of the current mission scripts, make sure you merge your
changes**!
* Adjusted the placement of the armed car in "bandits" mission. It
should no longer spawn right on the crate.
* Marker and message names for the "foodtransport" mission have been
adjusted.
* Added the AI vehicle to the "mercbase" mission.
* Removed some RPT spam...
* Standardize ATL for DMS_fnc_importFromM3E_Convert
* When revealing a player to AI, the reveal amount will be reduced if
the player has a suppressor.
* DMS_fnc_SetGroupBehavior will now remove all previous waypoints from
the AI group.
* Improved logging message for DMS_fnc_SpawnMinefield. Also, the mine
warning signs should be on a random offset (instead of always spawning
at 0, 90, 180, and 270 degrees)
2015-10-01 02:29:33 +00:00
_side,
_difficulty,
[]
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-10-04 03:32:42 +00:00
[_missionName,_msgStart] call DMS_fnc_BroadcastMissionStatus;
2015-08-31 02:42:02 +00:00
Readme changes, new debug fnc, fixes, tweaks
Created disclaimer for DMS. Now mentioning that HC for DMS isn't that
good.
Some structure stuff in readme (let's see if it works lol)
* **NEW CONFIG VALUE: DMS_Use_Map_Config**
* You can now overwrite "main config values" with map-specific config
values located in the new "map_configs" folder. This should allow you to
use one DMS PBO if you have multiple servers with different maps.
Included examples for Altis, Bornholm, Esseker, and Tavi (Taviana).
* Because of the above implementation, DMS by default will not include
the salt flats blacklist for findSafePos. In addition, it is
preconfigured to the hilly terrains in Esseker and Taviana, as well as
reducing all of the blacklist distances due to the smaller map size in
Esseker.
* Created new function "DMS_fnc_DebugLog". All DMS files (that produced
debug logs) have been changed, including mission files. However,
updating them is not important (and completely pointless if you don't
even use DMS_DEBUG).
* Fixed a few locations where it said "sized" instead of "seized".
Thanks to [icomrade](https://github.com/icomrade) for pointing them out.
* DMS now utilizes the "ARMA_LOG" DLL (if it exists) by infiSTAR to
produce debug logs (if enabled). All debug logs now also include server
uptime (in seconds) and server FPS.
* The FSM no longer produces debug logs.
* AI Locality manager will now run every minute.
* Debug logs for "DMS_fnc_MissionsMonitor" will only output the mission
name and the position, instead of all of the parameters.
* "DMS_fnc_IsNearWater" will now check the provided position itself for
water.
* "DMS_fnc_IsValidPosition" will now do a surfaceNormal check within a 5
meter radius of the provided position as well.
* "_customGearSet" should now actually work for
"DMS_fnc_SpawnAISoldier", and the function title comment has been
updated for the slightly tweaked syntax.
2015-10-10 01:35:07 +00:00
(format ["MISSION: (%1) :: Mission #%2 started at %3 with %4 AI units and %5 difficulty at time %6",_missionName,_num,_pos,_AICount,_difficulty,_time]) call DMS_fnc_DebugLog;