This commit is contained in:
eraser1 2015-12-24 21:38:43 -06:00
parent 5b0b8c35dd
commit 3a812885d8
5 changed files with 17 additions and 2 deletions

View File

@ -7,7 +7,7 @@ DMS_HC_Object = objNull;
DMS_CleanUpList = [];
DMS_Version = "December 24 2015 (Vish Version)";
DMS_Version = "December 24 2015 (Vish Version + Derp fix)";
//Load main config

View File

@ -192,6 +192,7 @@ try
if (DMS_MarkerText_ShowAICount) then
{
_markerDot = _markers select 0;
_markerDot setMarkerText (format ["%1 (%2 %3 remaining)",markerText _markerDot,count _units,DMS_MarkerText_AIName]);
};

View File

@ -194,6 +194,7 @@ try
if (DMS_MarkerText_ShowAICount) then
{
_markerDot = _markers select 0;
_markerDot setMarkerText (format ["%1 (%2 %3 remaining)",markerText _markerDot,count (_inputUnits call DMS_fnc_GetAllUnits),DMS_MarkerText_AIName]);
};

View File

@ -109,9 +109,9 @@ if !(DMS_GodmodeCrates) then
_crate allowDamage true;
};
_crate enableSimulationGlobal true;
if (DMS_EnableBoxMoving) then
{
_crate enableSimulationGlobal true;
_crate enableRopeAttach true;
};

View File

@ -116,6 +116,19 @@ ___
___
# Changelog:
#### December 24, 2015 (1:45 PM CST-America):
* Fixed an issue where you couldn't take stuff out of a crate if you had "DMS_EnableBoxMoving" set to "false". Thanks to [Flowrider](http://www.exilemod.com/profile/31-flowrider85/) for the report.
* Fixed a couple script errors caused by a hasty adjustment in the last update.
#### December 24, 2015 (4:30 PM CST-America | Special Vishpala edition ;D ):
* **NEW CONFIG VALUE: DMS_MissionMarkerCount**
* "dynamicTextRequest" is now enabled by default instead of "textTilesRequest" because of performance issues.
* DMS should now be compatible with more/less than two markers as long as you change "DMS_MissionMarkerCount", without having to change multiple files :P
#### December 24, 2015 (1:45 PM CST-America):
* **NEW CONFIG VALUES:**