From 164479eaaf91a7e09ea268e687ecf0c7bd77ae6a Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 12 Sep 2015 03:08:07 +0200 Subject: [PATCH] auto-set the config value for the area range --- config.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/config.lua b/config.lua index d1ce1dd..d496f18 100644 --- a/config.lua +++ b/config.lua @@ -18,4 +18,14 @@ markers.MAX_SIZE = 1024; -- 32m * 32m = 1024 m^2 -- (else it does get too crowded on multiplayer servers) -- set to something >60000 in order to view all areas; set to a smaller -- value (i.e. 500) on multiplayer servers with many protected areas -markers.AREA_RANGE = 100000; + +if( #areas.areas > 1000 ) then + markers.AREA_RANGE = 100; +elseif( #areas.areas > 100 ) then + markers.AREA_RANGE = 1000; +else + markers.AREA_RANGE = 100000; +end + +-- for most cases, the default values ought to work +--markers.AREA_RANGE = 100000;