Page 1 of 1
[Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 04:44
by jordan4ibanez
HellInspired by Pilzadam's
Nether mod, I've whipped together a mod which brings Hell into Minetest. This is built off HeroOfTheWinds'
Caverealms with parts of
Nether included.
Features:
- Massive caves of netherrack from -20000 to -30000
- A sea of lava from -25000 to -30000
- The sky turns red when you enter Hell
- To create a hell portal, make some kind of closed shape using obsidian and place a torch in it
Todo:
- Hell portal
- Glowstone, soul sand, lava pockets, Hell ores
- Hell mobs
GithubDownloadDepends:
Portal APITNT (in the default game)



License: WTFPL
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 10:58
by ExeterDad
Wow! I don't wanna go there!
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 13:41
by cx384
Nice mod!
I would be nice if special and dangerous mobs would spawn in the hell.
I'm not sure why the the Nether is composed of netherrack and the Hell is composed of netherrack, too ( and not hellrack ).
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 16:31
by Andrey01
It looks like is beautiful!
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 17:56
by Krock
Hello Lucifer, here I come.
Good job :)
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 19:39
by D00Med
Looks really cool!, and the red sky is a nice touch
edit: I can't find anything but normal stone, is this just because the caves really are massive?
Also I'm getting a lot of these errors:
"ERROR[Main]: Current Lua memory usage: 75 MB"
Re: [Mod] Hell [hell]

Posted:
Mon Nov 14, 2016 23:34
by jordan4ibanez
D00Med wrote:Looks really cool!, and the red sky is a nice touch
edit: I can't find anything but normal stone, is this just because the caves really are massive?
Also I'm getting a lot of these errors:
"ERROR[Main]: Current Lua memory usage: 75 MB"
Are you using the latest git or daily ppa?
Also: I've updated it with improved performance. Now mapblocks generate in at around 185 milliseconds.
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 01:19
by D00Med
No, but I'll try it and see if the problem is fixed.
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 02:56
by TheReaperKing
DOOMed are you a Doom game fan? If so check out my signature :)
I love the looks of this mod so far, looks so creepily amazing! Maybe there should be even screaming in the background!! Also maybe spirit monsters?
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 06:36
by jordan4ibanez
Here's a video of the new portals using the
Portals API and a bit of exploring
https://youtu.be/3v6uaVz3aSYAnother video of showcasing the new torch activator for the hell portal, 3D portals, and single node based portals
https://youtu.be/CtrUHT-XOlc
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 08:15
by D00Med
Do you plan on adding some decorative nodes to the mod?
Just a little idea...

TheReaperKing wrote:DOOMed are you a Doom game fan? If so check out my signature :)
Yeah. Looks like a really good project.
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 14:01
by DS-minetest
ok, now we got these nether mods all, right?: (sorted by age)
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 14:02
by toby109tt
This mod looks amazing, would it be possible to add a Block like this
http://minecraft.gamepedia.com/Magma_block
Re: [Mod] Hell [hell]

Posted:
Tue Nov 15, 2016 14:47
by paramat
Do you want to get rid of those huge floating volumes of lava? I think those are created by large lava caves overgenerating into previously generated chunks. The mapgen of the Nether mod has a trick to remove those.
Re: [Mod] Hell [hell]

Posted:
Thu Nov 17, 2016 01:14
by jordan4ibanez
paramat wrote:Do you want to get rid of those huge floating volumes of lava? I think those are created by large lava caves overgenerating into previously generated chunks. The mapgen of the Nether mod has a trick to remove those.
Thanks for the tip, Paramat. I can't seem to spawn in other nodes without adding 200+ milliseconds to chunk generation. Kind of stumped as of right now on how to do this efficiently!
Re: [Mod] Hell [hell]

Posted:
Thu Nov 17, 2016 05:42
by jordan4ibanez
Another update: I've figured out how to do ores and decorations. Hell now is full of ores that will randomly explode when you've mined them!
A video of exploring the caves of hell with oresA video of randomly exploding hell oresA picture:

Re: [Mod] Hell [hell]

Posted:
Thu Nov 17, 2016 19:32
by D00Med
Looks nice! Do they explode after nearby nodes are mined or do they just explode by themselves?
Re: [Mod] Hell [hell]

Posted:
Sat Nov 19, 2016 04:09
by jordan4ibanez
D00Med wrote:Looks nice! Do they explode after nearby nodes are mined or do they just explode by themselves?
They just explode by themselves. You'd blow up all of hell if they did that hahaha!
Re: [Mod] Hell [hell]

Posted:
Sun Nov 20, 2016 01:24
by paramat
jordan4ibanez wrote:I can't seem to spawn in other nodes without adding 200+ milliseconds to chunk generation. Kind of stumped as of right now on how to do this efficiently!
In the nether mapgen you can see that the volume processed is the 80^3 mapchunk plus a 1 mapblock-deep (16 nodes) shell around it. This is because large caves generate out beyond a mapchunk border by up to 16 nodes and can place lava or water in this 'shell'. The shell has more volume than the mapchunk itself, so generation time will be significantly higher.
However you don't need to generate your terrain outside the mapchunk, or calculate noise values outside it. All that needs doing outside is removing lava and water if present. The nether mapgen shows how to do this.
Re: [Mod] Hell [hell]

Posted:
Mon Nov 21, 2016 20:56
by Azazel
2016-11-21 15:48:02: ERROR[Main]: /home/***/.minetest/mods/hell/init.lua:365: in function 'teleport_player'
2016-11-21 15:48:02: ERROR[Main]: /home/***/.minetest/mods/hell/init.lua:352: in function </home/***/.minetest/mods/hell/init.lua:348>
2016-11-21 15:48:02: ACTION[Server]: singleplayer leaves game. List of players:
This happened in a new world without any extra mod
Re: [Mod] Hell [hell]

Posted:
Wed Jan 25, 2017 12:13
by texmex
Will try this, looks really good.
Re: [Mod] Hell [hell]

Posted:
Wed Jan 25, 2017 15:43
by texmex
I guess there's no coming back from hell? o_O
Re: [Mod] Hell [hell]

Posted:
Fri Jan 27, 2017 14:35
by azekill_DIABLO
texmex wrote:I guess there's no coming back from hell? o_O
uh. that a great problematic, i didn't thinked to it... but for sure it will be in voxellar!
Re: [Mod] Hell [hell]

Posted:
Thu Feb 16, 2017 23:31
by SuperPantsofDoom
+10