mirror of
https://github.com/Ghostrider-DbD-/GMS_RC.git
synced 2024-08-30 16:02:11 +00:00
32 lines
940 B
Plaintext
32 lines
940 B
Plaintext
/*
|
|
|
|
By Ghostrider [GRG]
|
|
Copyright 2016
|
|
--------------------------
|
|
License
|
|
--------------------------
|
|
All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License.
|
|
|
|
http://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
*/
|
|
#include "\GMS\Compiles\Init\GMS_defines.hpp"
|
|
private _fn_cleanup = {
|
|
private _m = _this;
|
|
uiSleep 350;
|
|
//[format["_fn_cleanup: deleting marker %1",_m]] call GMS_fnc_log;
|
|
deleteMarker _m;
|
|
};
|
|
|
|
|
|
//diag_log format["GMS_fnc_missionCompleteMarker:: _this = %1",_this];
|
|
private _location = _this select 0;
|
|
private _name = str(random(1000000)) + "MarkerCleared";
|
|
_m = createMarker [_name, _location];
|
|
_m setMarkerColor "ColorBlack";
|
|
_m setMarkerType "n_hq";
|
|
_m setMarkerText "Mission Cleared";
|
|
|
|
[_m, diag_tickTime + 30] call GMSCore_fnc_addToDeletionCue;
|
|
_m spawn _fn_cleanup;
|
|
//diag_log format["missionCompleteMarker complete script for _this = %1",_this];
|