Page 1 of 2
[Mod] Mountain ranges [0.4.5] [landup]

Posted:
Tue Jan 22, 2013 00:14
by paramat
Mod deleted.

Posted:
Tue Jan 22, 2013 00:18
by Chinchow
+1.55

Posted:
Tue Jan 22, 2013 01:06
by rarkenin
+1.6180339887

Posted:
Tue Jan 22, 2013 01:59
by Josh
+1 Can you slip when you walk up hill's? if not that would be cool.

Posted:
Tue Jan 22, 2013 03:21
by kaeza
+3.14159... ?

Posted:
Tue Jan 22, 2013 09:49
by 4aiman
No, +2.71828183... and then 3.14159... ;)

Posted:
Sat Jan 26, 2013 13:49
by Casimir
This is the best minetest mod ever (serious). Even better than those I made (serious).
It's hard to capture it in a screenshot, but I tried.

(Here I used a alternated version with kind of fractal noise, but explaining it is going to be a longer text.)

Posted:
Sat Jan 26, 2013 15:45
by lord_james
+20
I hope something like this mod will be in default game

Posted:
Sat Jan 26, 2013 23:43
by paramat
This mod is still in it's simplest form, i released it as soon as possible because i know that new Minetest mapgen is coming that might do something similar haha :)
Casimir i love that screenshot ... and interested in your use of fractal noise.

Posted:
Mon Jan 28, 2013 00:40
by Casimir
On this map you can not see the hight, but the contour lines the normal mapgen, and the mod produce. Also the new "sand biom" and the hills without trees (both are raised up sea floor), and the bugs (middle thing).
http://ompldr.org/vaDk1eg/landup20130128.png@ paramat
See here:
http://forum.minetest.net/viewtopic.php?pid=66580#p66580

Posted:
Mon Jan 28, 2013 01:59
by davidpace
Wow. I am speechless. Beautiful mod. +100000000000101010101099999991823.99

Posted:
Mon Jan 28, 2013 02:04
by paramat
Nice map. I want to find a way to avoid those bug plateaus by trying to force the upper chunks to generate before the lower ones. One way is to use the "explore map" mod
http://forum.minetest.net/viewtopic.php?id=2950 which teleports you around the map to generate chunks. Fly up to y = 120 and look straight up to make sure you are only generating y = 48 and y = 128 chunks, then activate the explore map teleportation.
Is there another way? A way to force higher chunks to generate before surface chunks while exploring as normal on the ground?

Posted:
Mon Jan 28, 2013 05:42
by Nore
It will be possible if that pull request gets merged...
https://github.com/celeron55/minetest/pull/446

Posted:
Mon Jan 28, 2013 06:21
by Vincentius_Maximus
This mod accomplishes something that I have wanted in Minetest. I like having mountains in maps now! :D Good work!

Posted:
Fri Feb 01, 2013 02:59
by paramat
I found an incompatibility with the snow biomes mod. When landup copies a snow:snow node upwards it is placed above air, the snow:snow "on construct" function doesn't allow this so snow:snow disappears from the landup biome turning alpine biomes into stone biomes. To fix this you can disable 3 lines in the snow biomes mod init.lua file by commenting them:
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
on_construct = function(pos, newnode)
pos.y = pos.y - 1
local nodename = minetest.env:get_node(pos).name
if nodename == "default:dirt_with_grass" or nodename == "default:dirt"
or nodename == "trail:dirt_with_grass_walked" or nodename == "trail:dirt_walked" then
minetest.env:add_node(pos,{name="snow:dirt_with_snow"})
--elseif nodename == "air" then
--pos.y = pos.y + 1
--minetest.env:remove_node(pos)
end
end,

Posted:
Sat Feb 02, 2013 02:45
by Mgdie
10/10 this should be added to vanilla.
Minetest doesn't have the pity minecraft 256 blocks limit, so why the same type of landscape is seem on minetest, minetest have the luxury of a 30 km not even earth gets that high.

Posted:
Sat Feb 02, 2013 05:02
by Linxx
this wound make some epic valleys

Posted:
Sat Feb 02, 2013 09:15
by BZab
Nice, but useless when ya wanna build - but on PvP, adventure, survival etc. servers - awesome

Posted:
Sat Feb 02, 2013 11:14
by Topywo
BZab wrote:Nice, but useless when ya wanna build - but on PvP, adventure, survival etc. servers - awesome
Awesome, yes. But also to build on:
- You already have the lower part for very big buildings
- Tunnels and bridges
- High lakes with dams

Posted:
Thu Feb 07, 2013 08:31
by paramat
Version 0.1.1.
First post has been rewritten with details, new screenshots and a method for generating bug free mountain areas.
Thanks for your replies :)

Posted:
Sat Feb 09, 2013 13:42
by Echo
Wow, never thought my "explore map"-mod could really be useful. :-)
Your mod is great!

Posted:
Tue Feb 12, 2013 11:43
by paramat
Version 0.1.2, see first post.
Thanks Echo :)

Posted:
Sat Feb 16, 2013 00:52
by paramat
Version 0.2.0, details and screenshots in first post.

Posted:
Fri Mar 15, 2013 20:37
by paramat
Version 0.3.0, see end of first post.

Posted:
Sat Mar 16, 2013 17:43
by paramat
Version 0.3.0 is now in a repo at github
https://github.com/paramat/landupThis is my first attempt at using github so i may have made errors, however it seems to be there successfully ... :/
Will add my other mods to github soon.

Posted:
Tue Mar 19, 2013 23:39
by LazyJ
Will the "Land Up", "Canyon", and "Chasm" mod keep running until the world is one giant mountain or canyon/chasm or is there a limiter so there will always be plains and hills to contrast with mountains and canyons/chasms?
These three mods of yours really make the landscape much more interesting! Thanks!

Posted:
Wed Mar 20, 2013 00:04
by paramat
No it's limited. These 3 mods only modify newly generated chunks, once a new chunk has generated and been modified by the mod no more modification will happen after that in that chunk. Each mod is limited to a pattern of loops and curves, even with these 3 mods running the total amount of modified terrain will still be far less than 50%.

Posted:
Sun Mar 24, 2013 20:59
by acridstone
paramat wrote:Version 0.3.0 is now in a repo at github
https://github.com/paramat/landupThis is my first attempt at using github so i may have made errors, however it seems to be there successfully ... :/
Will add my other mods to github soon.
thank you I will use it now

Posted:
Thu Mar 28, 2013 13:55
by Zedm0n
This is good mod, but there are a few things that bug me:
1.) Most importantly the mountains are way too steep. It takes forever to climb up them and trying to climb down them with damage turned on is suicidal. I think the steepest (near vertical) walls should spaced out more or reserved for only the highest peaks.
2.) There are often huge cube shaped (over 100 meters) long areas carved out of the mountain ranges as if the mod decided to start rendering something else in the middle of it's work. These areas have completely smooth walls with no signs of erosion, dirt, grss, or trees. This detracts from the immersion factor of having a beautiful world to play in.
3.) When the land gets streched upwards it also stretches the ore deposites leading to very long vertical lines of ore.
All of this is happening with version 0.4.5 of minetest on version 0.3.0 of the mod.
Keep up the fine work,
Zedm0n

Posted:
Thu Mar 28, 2013 17:09
by Nore
I have an idea to remove those holes in the mountains: when placing nodes, if the node being placed on is ignore, don't place and add the node to a special list, with its position. Every 10 seconds (or less), you should test for each chunck if it is loaded, and if so, place all the nodes inside the list that are in that chunk. If the server is shut, you should then save the list in a file in the world folder, and restore it when the server is opened again.