46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
|
/*
|
||
|
Hummer Wreck by lazyink (Full credit for code to TheSzerdi & TAW_Tonic)
|
||
|
Updated to new format by Vampire
|
||
|
*/
|
||
|
private ["_missName","_coords","_crash","_crate"];
|
||
|
|
||
|
//Name of the Mission
|
||
|
_missName = "Humvee Crash";
|
||
|
|
||
|
//DZMSFindPos loops BIS_fnc_findSafePos until it gets a valid result
|
||
|
_coords = call DZMSFindPos;
|
||
|
|
||
|
[nil,nil,rTitleText,"A Humvee has crashed!\nGo Investigate the Cause of the Wreck!", "PLAIN",10] call RE;
|
||
|
|
||
|
//DZMSAddMinMarker is a simple script that adds a marker to the location
|
||
|
[_coords,_missName] ExecVM DZMSAddMinMarker;
|
||
|
|
||
|
//Add the scenery
|
||
|
_crash = createVehicle ["HMMWVwreck",_coords,[], 0, "CAN_COLLIDE"];
|
||
|
|
||
|
//DZMSProtectObj prevents it from disappearing
|
||
|
[_crash] call DZMSProtectObj;
|
||
|
|
||
|
//Add and fill the crate
|
||
|
_crate = createVehicle ["RULaunchersBox",[(_coords select 0) - 14, _coords select 1,0],[], 0, "CAN_COLLIDE"];
|
||
|
[_crate,"weapons"] ExecVM DZMSBoxSetup;
|
||
|
[_crate] call DZMSProtectObj;
|
||
|
|
||
|
//DZMSAISpawn spawns AI to the mission.
|
||
|
//Usage: [_coords, count, skillLevel, unitArray]
|
||
|
[_coords,3,1,"DZMSUnitsMinor"] call DZMSAISpawn;
|
||
|
sleep 1;
|
||
|
[_coords,3,1,"DZMSUnitsMinor"] call DZMSAISpawn;
|
||
|
sleep 1;
|
||
|
|
||
|
//Wait until the player is within 30 meters and also meets the kill req
|
||
|
[_coords,"DZMSUnitsMinor"] call DZMSWaitMissionComp;
|
||
|
|
||
|
//Let everyone know the mission is over
|
||
|
[nil,nil,rTitleText,"The Humvee has been Secured by Survivors!", "PLAIN",6] call RE;
|
||
|
diag_log text format["[DZMS]: Minor SM5 Humvee Crash Mission has Ended."];
|
||
|
deleteMarker "DZMSMinMarker";
|
||
|
deleteMarker "DZMSMinDot";
|
||
|
|
||
|
//Let the timer know the mission is over
|
||
|
DZMSMinDone = true;
|