diff --git a/@ExileServer/addons/a3_dms/map_configs/chernarus_isles_config.sqf b/@ExileServer/addons/a3_dms/map_configs/chernarus_isles_config.sqf new file mode 100644 index 0000000..50ebc84 --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/chernarus_isles_config.sqf @@ -0,0 +1,11 @@ +/* + Custom configs for Chernarus Isles. + Created by [FPS]kuplion. +*/ + +// Making these configs below as strict as possible will help in reducing the number of attempts taken to find a valid position, and as a result, improve performance. + +DMS_MinDistFromWestBorder = 750; +DMS_MinDistFromEastBorder = 2500; +DMS_MinDistFromSouthBorder = 2500; +DMS_MinDistFromNorthBorder = 1000; diff --git a/@ExileServer/addons/a3_dms/map_configs/chernarus_summer_config.sqf b/@ExileServer/addons/a3_dms/map_configs/chernarus_summer_config.sqf new file mode 100644 index 0000000..42a041b --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/chernarus_summer_config.sqf @@ -0,0 +1,11 @@ +/* + Custom configs for Chernarus Summer. + Created by [FPS]kuplion. +*/ + +// Making these configs below as strict as possible will help in reducing the number of attempts taken to find a valid position, and as a result, improve performance. + +DMS_MinDistFromWestBorder = 750; +DMS_MinDistFromEastBorder = 2500; +DMS_MinDistFromSouthBorder = 3500; +DMS_MinDistFromNorthBorder = 1000; diff --git a/@ExileServer/addons/a3_dms/map_configs/chernarus_winter_config.sqf b/@ExileServer/addons/a3_dms/map_configs/chernarus_winter_config.sqf new file mode 100644 index 0000000..8b378ff --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/chernarus_winter_config.sqf @@ -0,0 +1,11 @@ +/* + Custom configs for Chernarus Winter. + Created by [FPS]kuplion. +*/ + +// Making these configs below as strict as possible will help in reducing the number of attempts taken to find a valid position, and as a result, improve performance. + +DMS_MinDistFromWestBorder = 750; +DMS_MinDistFromEastBorder = 2500; +DMS_MinDistFromSouthBorder = 3500; +DMS_MinDistFromNorthBorder = 1000;