mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
Things.
Removed more execVM. Added Exiles own Hint system script. Because grim called me a moron.
This commit is contained in:
parent
158bc9ea68
commit
a9916e52b9
@ -9,18 +9,12 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 1";
|
||||
diag_log format["DMS :: Main Mission 1 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -38,15 +32,8 @@ waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
[_pos] call MissionCompleted;
|
||||
[_pos,] call MissionCleanup;
|
||||
*/
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,19 +13,11 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 10";
|
||||
diag_log format["DMS :: Main Mission 10 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 10.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -42,15 +34,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,18 +13,10 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 2";
|
||||
diag_log format["DMS :: Main Mission 2 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 2.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -41,15 +33,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,18 +13,10 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 3";
|
||||
diag_log format["DMS :: Main Mission 3 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 3.<br/>
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -40,15 +32,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 3.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
// Run Cleanup
|
||||
|
@ -13,19 +13,12 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 4";
|
||||
diag_log format["DMS :: Main Mission 4 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' shadow='2' color='#27612F'>Main Mission 4.</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -41,15 +34,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -12,19 +12,11 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 5";
|
||||
diag_log format["DMS :: Main Mission 5 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 5.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -43,15 +35,7 @@ sleep 2;
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,18 +13,10 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 6";
|
||||
diag_log format["DMS :: Main Mission 6 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 10.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -42,15 +34,7 @@ sleep 2;
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -14,18 +14,10 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 7";
|
||||
diag_log format["DMS :: Main Mission 7 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 7.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -42,15 +34,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,19 +13,11 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 8";
|
||||
diag_log format["DMS :: Main Mission 8 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 8.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -43,15 +35,7 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
@ -13,18 +13,10 @@ _pos = call DMS_findSafePos;
|
||||
_missname = "Main Mission 9";
|
||||
diag_log format["DMS :: Main Mission 9 started at [%1]",_pos];
|
||||
|
||||
_misText = "<t size='1.75' align='center' color='#27612F'>Main Mission 9.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission now starting! Check your map!</t>";
|
||||
|
||||
GlobalHint = [0,_misText];
|
||||
publicVariable "GlobalHint";
|
||||
["standardHintRequest",["Mission starting! Check your map"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
// Spawn Marker
|
||||
[_pos,_missname] execVM "scripts\DMS_CreateMarker.sqf";
|
||||
[_pos,_missname] call DMS_CreateMarker;
|
||||
|
||||
// Spawn Box
|
||||
_crate = createVehicle ["Box_NATO_AmmoOrd_F",[(_pos select 0) - 10, _pos select 1,0],[], 0, "CAN_COLLIDE"];
|
||||
@ -41,15 +33,8 @@ sleep 2;
|
||||
|
||||
waitUntil{{isPlayer _x && _x distance _pos < 30 } count playableUnits > 0};
|
||||
|
||||
_missEnd = "<t size='1.75' align='center' color='#27612F'>Main Mission 1.
|
||||
</t>
|
||||
<br/>
|
||||
<t align='center' color='#FF0000'>------------------------------</t>
|
||||
<br/>
|
||||
<t size='1.25' color='#FFFFFF'> Mission has ended, good job!</t>";
|
||||
["standardHintRequest",["Mission has ended, good job!"]] call ExileServer_system_network_send_broadcast;
|
||||
|
||||
GlobalHint = [0,_missEnd];
|
||||
publicVariable "GlobalHint";
|
||||
// Run Cleanup
|
||||
["Ended","Clean"] call DMS_CleanUp;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user