From 63acfe6222194ba48467e1e49ecbe00830ecf2ba Mon Sep 17 00:00:00 2001 From: eraser1 Date: Sun, 6 Mar 2016 23:03:16 -0600 Subject: [PATCH] Add namalsk config <3 vish --- .../a3_dms/map_configs/namalsk_config.sqf | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 @ExileServer/addons/a3_dms/map_configs/namalsk_config.sqf diff --git a/@ExileServer/addons/a3_dms/map_configs/namalsk_config.sqf b/@ExileServer/addons/a3_dms/map_configs/namalsk_config.sqf new file mode 100644 index 0000000..cf7bf38 --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/namalsk_config.sqf @@ -0,0 +1,30 @@ +/* + Custom configs for Namalsk. + Created by Vishpala, slight adjustments by eraser1 + + All of these configs exist in the main config. The configs below will simply override any config from the main config. +*/ + +DMS_findSafePosBlacklist = +[ + [[4866.21,7962.4],[5085.27,8157.23]], // Sebjan Trader + [[4890.65,6535.2],[5090.37,6714.44]], // Object A2 + [[3908.65,8405.29],[4029.93,8542.39]] // Object A1 +]; + +// Namalsk is a pretty small island +DMS_WaterNearBlacklist = 100; + +// Namalsk is pretty flat +DMS_MinSurfaceNormal = 0.85; + +DMS_SpawnZoneNearBlacklist = 500; +DMS_TraderZoneNearBlacklist = 500; + + +// 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 = 2000; // There's at least 2km of ocean from the west edge to the first bit of land. +DMS_MinDistFromEastBorder = 3500; // There's over 3km of ocean from the east edge to the first bit of land. +DMS_MinDistFromSouthBorder = 4500; // There's about 4.8km of ocean from the south edge to the first bit of land. +DMS_MinDistFromNorthBorder = 700; // There's around 750m of ocean from the north edge to the first bit of land (including the island).