Created
July 2, 2017 01:56
-
-
Save ChainsDD/2c3683bbed5046c4a125a3de32f2e53a to your computer and use it in GitHub Desktop.
Something slightly less crazy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private _type = | |
switch(toLower _difficulty) do | |
{ | |
case "contamination": | |
{ | |
"ExileContaminationZone"; | |
}; | |
default | |
{ | |
_markerType; | |
} | |
} | |
} | |
if (DMS_ShowMarkerCircle) then | |
{ | |
_circle setMarkerColor _color; | |
_circle setMarkerType _type; | |
_circle setMarkerShape "ELLIPSE"; | |
_circle setMarkerBrush "Solid"; | |
_circle setMarkerSize [150,150]; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment