rubenwardy wrote:Neuro wrote:how come its not a full map?
What do you mean?
The interactive map is an interactive version of redcrabs map.
Duh.
the map stops before it gets to other things, like the bottom of the map
rubenwardy wrote:Neuro wrote:how come its not a full map?
What do you mean?
The interactive map is an interactive version of redcrabs map.
Duh.
cactuz_pl wrote:Josh wrote:Josh wrote:Hey cactuz_pl i would like to protect my house the coordinates are:
[0.291,-30000,-27.5,-245.9] To [0.292,-30000,-27.5,-236.2] Please correct me if im wrong because it's my first time sorting
coordinates out.
Have you protected it yet cactuz_pl?
No, why?
1. I can protect land only when owner (in this case you) is online and I'm online.
2. Your cords contains 4 numbers, should 3. Here is manual http://minetest.net/forum/viewtopic.php?pid=38025#p38025
To all hosts requesting: I can't remember all of your requests, when you see me online remind me number of post with your request.
Cold_Fire wrote:You might not have seen it, but I requested build priviliges. Sorry to ask twice, but you seem to have given them to those who have asked much later than me. (Maybe the "thanks" at the end threw you off?) Username is Cold_Fire.
Lelix wrote:I'm sorry, but I do not work my nick, I forgot the password. I created a new user: Lelix
can qualify me to build?
Neuro wrote:rubenwardy wrote:Neuro wrote:how come its not a full map?
What do you mean?
The interactive map is an interactive version of redcrabs map.
Duh.
the map stops before it gets to other things, like the bottom of the map
Ade96 wrote:Server is down once again? I can't connect, it just says "Connecting to server...".
rubenwardy wrote:Neuro wrote:rubenwardy wrote:
What do you mean?
The interactive map is an interactive version of redcrabs map.
Duh.
the map stops before it gets to other things, like the bottom of the map
Redcrabs map stops there. The map is only drawn for a limited space
Neuro wrote:rubenwardy wrote:Neuro wrote:the map stops before it gets to other things, like the bottom of the map
Redcrabs map stops there. The map is only drawn for a limited space
why, i think the map should be drawn to what you have now plus where cords have been asked for protection in far away areas
rubenwardy wrote:Neuro wrote:rubenwardy wrote:
Redcrabs map stops there. The map is only drawn for a limited space
why, i think the map should be drawn to what you have now plus where cords have been asked for protection in far away areas
FAQ: Answer is Redcrab has no idea how do make the map bigger
sector_xmin = -1500 / 16
sector_xmax = 1500 / 16
sector_zmin = -1500 / 16
sector_zmax = 1500 / 16
chlue wrote:rubenwardy wrote:Neuro wrote:why, i think the map should be drawn to what you have now plus where cords have been asked for protection in far away areas
FAQ: Answer is Redcrab has no idea how do make the map bigger
I didn't try but I guess the limits are defined by this code in minetestmapper.py:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -1500 / 16
sector_xmax = 1500 / 16
sector_zmin = -1500 / 16
sector_zmax = 1500 / 16
But drawing a 10k pixel map is quiet pointless and traffic heavy too, so the limits seem to be quiet reasonable.
cactuz_pl wrote:redcrab wrote:cactuz_pl wrote:
I join the request. I'm curious about how the world looks. One more think: can you tell size of world in MB / GB? I'm just curious.
I'm just trying to figure out how to generate map for particular part of the world.
Currently the map.sqlite file size is 1.4 GB (1467888640 bytes)
I found something:
Try change this lines in minecraftmapper.pyYour phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -1500 / 16
sector_xmax = 1500 / 16
sector_zmin = -1500 / 16
sector_zmax = 1500 / 16
I changed all "1500" on "10000" and it made my whole world map.
To made/generate this world I teleported to 0,10000 then to 0,9000 then to 0,8000 and from there I was flying to 0,0.
----
I don't know C++ and other programming stuff.
----
For example you can make and schedule two minecraftmapper.py files one for draw daily normal map (3008x3008, like it is now), and second for draw daily spawn point (100x100, with centre in (0,0)):Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -50 / 16
sector_xmax = 50 / 16
sector_zmin = -50 / 16
sector_zmax = 50 / 16
I was mistaken, is no possibility to make 100x100 map, length of edges of output png file always are multiple of 16 and has to be equal or larger than 128.
cactuz_pl wrote:chlue wrote:rubenwardy wrote:
FAQ: Answer is Redcrab has no idea how do make the map bigger
I didn't try but I guess the limits are defined by this code in minetestmapper.py:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -1500 / 16
sector_xmax = 1500 / 16
sector_zmin = -1500 / 16
sector_zmax = 1500 / 16
But drawing a 10k pixel map is quiet pointless and traffic heavy too, so the limits seem to be quiet reasonable.
Yes, redcrab tried it too. POST HEREcactuz_pl wrote:redcrab wrote:
I'm just trying to figure out how to generate map for particular part of the world.
Currently the map.sqlite file size is 1.4 GB (1467888640 bytes)
I found something:
Try change this lines in minecraftmapper.pyYour phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -1500 / 16
sector_xmax = 1500 / 16
sector_zmin = -1500 / 16
sector_zmax = 1500 / 16
I changed all "1500" on "10000" and it made my whole world map.
To made/generate this world I teleported to 0,10000 then to 0,9000 then to 0,8000 and from there I was flying to 0,0.
----
I don't know C++ and other programming stuff.
----
For example you can make and schedule two minecraftmapper.py files one for draw daily normal map (3008x3008, like it is now), and second for draw daily spawn point (100x100, with centre in (0,0)):Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
sector_xmin = -50 / 16
sector_xmax = 50 / 16
sector_zmin = -50 / 16
sector_zmax = 50 / 16
I was mistaken, is no possibility to make 100x100 map, length of edges of output png file always are multiple of 16 and has to be equal or larger than 128.
redcrab wrote:I ve already tried larger map ... but the genmap failed with a "database locked" error.
NB : the map takes about more than 2 hours to be generated, and use a maximum of cpu ... so it's not a light task ..
sector_xmin = -50 / 16
sector_xmax = 50 / 16
sector_zmin = -50 / 16
sector_zmax = 50 / 16
sector_xmin = -10000 / 16
sector_xmax = -9000 / 16
sector_zmin = -10000 / 16
sector_zmax = 10000 / 16
sector_xmin = -8999 / 16
sector_xmax = -8000 / 16
sector_zmin = -10000 / 16
sector_zmax = 10000 / 16
Ade96 wrote:I can't connect now, and seems like I am not the only one. Why does the server keep going down? This is otherwise great server, and the only one I am playing, so I get really disappointed when it keeps going down. :(
Razor wrote:If anyone has a server that never goes down on 0.4.3 could you tell me please :)
Users browsing this forum: No registered users and 10 guests