From 000df039cc4646ec1d014038fda2354f03ce712b Mon Sep 17 00:00:00 2001 From: zeehond23 Date: Thu, 19 May 2016 22:28:42 +0200 Subject: [PATCH 1/3] Add files via upload --- .../a3_dms/map_configs/kerama_config.sqf | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 @ExileServer/addons/a3_dms/map_configs/kerama_config.sqf diff --git a/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf new file mode 100644 index 0000000..7212cf9 --- /dev/null +++ b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf @@ -0,0 +1,29 @@ +/* + Custom configs for Kerama. + Created by InsertCoins + + All of these configs exist in the main config. The configs below will simply override any config from the main config. +*/ + +DMS_findSafePosBlacklist = +[ + +]; + +// Kerama is a pretty small island +DMS_WaterNearBlacklist = 100; + +// Kerama is not super flat +DMS_MinSurfaceNormal = 0.75; + +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. +// Distances set up to ignore the small islands and the military islands in the north + +DMS_MinDistFromWestBorder = 7500; // There's at least 2km of ocean from the west edge to the first bit of land. +DMS_MinDistFromEastBorder = 7300; // There's over 3km of ocean from the east edge to the first bit of land. +DMS_MinDistFromSouthBorder = 4800; // There's about 4.8km of ocean from the south edge to the first bit of land. +DMS_MinDistFromNorthBorder = 4600; // There's around 750m of ocean from the north edge to the first bit of land (including the island). From 1d2f00f97ade540cddb288c510b6141a8850daa9 Mon Sep 17 00:00:00 2001 From: zeehond23 Date: Thu, 19 May 2016 22:29:53 +0200 Subject: [PATCH 2/3] Update kerama_config.sqf --- @ExileServer/addons/a3_dms/map_configs/kerama_config.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf index 7212cf9..f09b950 100644 --- a/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf +++ b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf @@ -23,7 +23,7 @@ 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. // Distances set up to ignore the small islands and the military islands in the north -DMS_MinDistFromWestBorder = 7500; // There's at least 2km of ocean from the west edge to the first bit of land. -DMS_MinDistFromEastBorder = 7300; // There's over 3km of ocean from the east edge to the first bit of land. +DMS_MinDistFromWestBorder = 7500; // There's at least 7.5km of ocean from the west edge to the first bit of land. +DMS_MinDistFromEastBorder = 7300; // There's over 7.3km of ocean from the east edge to the first bit of land. DMS_MinDistFromSouthBorder = 4800; // There's about 4.8km of ocean from the south edge to the first bit of land. -DMS_MinDistFromNorthBorder = 4600; // There's around 750m of ocean from the north edge to the first bit of land (including the island). +DMS_MinDistFromNorthBorder = 4600; // There's around 4.6km of ocean from the north edge to the first bit of land (including the island). From 86d52b1f83bdfe76621ac44c28a692a9acf4fd8a Mon Sep 17 00:00:00 2001 From: zeehond23 Date: Thu, 19 May 2016 22:30:40 +0200 Subject: [PATCH 3/3] kerama map config added kerama map config --- @ExileServer/addons/a3_dms/map_configs/kerama_config.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf index f09b950..d9bb21e 100644 --- a/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf +++ b/@ExileServer/addons/a3_dms/map_configs/kerama_config.sqf @@ -13,7 +13,7 @@ DMS_findSafePosBlacklist = // Kerama is a pretty small island DMS_WaterNearBlacklist = 100; -// Kerama is not super flat +// Kerama is not super flat DMS_MinSurfaceNormal = 0.75; DMS_SpawnZoneNearBlacklist = 500;