diff --git a/@ExileServer/addons/a3_dms/map_configs/chernarus_config.sqf b/@ExileServer/addons/a3_dms/map_configs/chernarus_config.sqf new file mode 100644 index 0000000..33d6648 --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/chernarus_config.sqf @@ -0,0 +1,17 @@ +/* + Custom configs for Chernarus. + Created by Hollow (slight edits by eraser1). +*/ + +DMS_findSafePosBlacklist = +[ + //Insert position blacklists here. +]; + + +// 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 = 250; +DMS_MinDistFromEastBorder = 250; +DMS_MinDistFromSouthBorder = 500; +DMS_MinDistFromNorthBorder = 400; \ No newline at end of file diff --git a/@ExileServer/addons/a3_dms/map_configs/napf_config.sqf b/@ExileServer/addons/a3_dms/map_configs/napf_config.sqf new file mode 100644 index 0000000..363bb86 --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/napf_config.sqf @@ -0,0 +1,17 @@ +/* + Custom configs for Napf. + Created by Hollow (slight edits by eraser1) +*/ + +DMS_findSafePosBlacklist = +[ + //Insert position blacklists here. +]; + + +// 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 = 1000; +DMS_MinDistFromEastBorder = 1000; +DMS_MinDistFromSouthBorder = 1800; +DMS_MinDistFromNorthBorder = 250; \ No newline at end of file