From 38eb14cce4fbd5f85b90298e7d76450ad425918e Mon Sep 17 00:00:00 2001 From: eraser1 Date: Sat, 12 Sep 2015 01:34:03 -0500 Subject: [PATCH] Esseker _safePosParams --- .../addons/a3_dms/scripts/fn_FindSafePos.sqf | 3 ++- Pre-Packed PBO/a3_dms.pbo | Bin 172856 -> 173031 bytes README.md | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/@ExileServer/addons/a3_dms/scripts/fn_FindSafePos.sqf b/@ExileServer/addons/a3_dms/scripts/fn_FindSafePos.sqf index a0e2654..919098c 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_FindSafePos.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_FindSafePos.sqf @@ -25,7 +25,8 @@ switch (toLower worldName) do { case "altis" : { _safePosParams = [[16000,16000],0,16000,_nearestObjectMinDistance,0,_maxTerrainGradient,0,DMS_findSafePosBlacklist]; }; //[16000,16000] w/ radius of 16000 works well for Altis case "bornholm" : { _safePosParams = [[11264,11264],0,12000,_nearestObjectMinDistance,0,_maxTerrainGradient,0,DMS_findSafePosBlacklist]; }; // Thanks to thirdhero for testing this info - default { _safePosParams = [[],0,-1,_nearestObjectMinDistance,0,_maxTerrainGradient,0,DMS_findSafePosBlacklist]; }; + case "esseker" : { _safePosParams = [[6144,6144],0,12288,_nearestObjectMinDistance,0,_maxTerrainGradient,0,DMS_findSafePosBlacklist]; }; // Thanks to Flowrider for this info + default { _safePosParams = [[],0,-1,_nearestObjectMinDistance,0,_maxTerrainGradient,0,DMS_findSafePosBlacklist]; }; }; diff --git a/Pre-Packed PBO/a3_dms.pbo b/Pre-Packed PBO/a3_dms.pbo index 3a2e7366ac81e948c693251b0751a24316192d0c..09184560fb32b54e5c8846a7a4798b552b67e3eb 100644 GIT binary patch delta 197 zcmdmSjO+Pvt_giiW_24UWHSM&$$yz1fvAVf+CXYEA4@wUh&!ECl~0bF0SulU`y49A zJ^2*t0gy}&TOvr|d$wM%!a9zAkSIT=HIQod;cWNeWZdq<$<)lvo19pjs-TowT%4Mn zS~NXIm`PH|%+SO{2Smi`80Z)p8Ch6N_ZMM`<8{l)FE7eWNi9-H%P*RKNQ9|jyR#_M c!(Nec*@Ed#7ff$mY-P}sKg`qA^yiog0Nt8E%K!iX delta 142 zcmV;90CE54#|pT{3XqNhmUyv{YXSnr2$TH+;sP}ali>p^0&;k>4g`k*0ee-#3A0U)>X6$0Un6u&=X47fFzp@%7pqym)TJ@Ax`?`U&0(*OVf diff --git a/README.md b/README.md index 7a9f4a7..bdb99cd 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,10 @@ if (!hasInterface && !isServer) then ## Changelog: -#### September 10, 2015 (8:30 PM CST-America): +#### September 12, 2015 (1:30 AM CST-America): +* Added Esseker map safe pos params. (thanks Flowrider!) + +#### September 11, 2015 (8:30 PM CST-America): * NEW CONFIG VALUES: ```DMS_GodmodeCrates``` and ```DMS_CrateCase_Sniper```. DMS_GodmodeCrates is pretty self-explanatory :P * NEW FEATURE FOR "DMS_fnc_FillCrate": You can now define "crate cases" in the config (such as "DMS_CrateCase_Sniper"). Passing the "crate case" name (such as "Sniper") will make the crate spawn with the exact gear defined in the config. Refer to the testmission.sqf (line 80) and "DMS_CrateCase_Sniper" config for an example. * Spawned vehicles will now be LOCKED and INVINCIBLE until the mission is completed.