Page 1 of 1
Minecraft like mods

Posted:
Thu Aug 20, 2015 22:49
by Gaming Association
I am looking for mods that are similar to the mods that minecraft has can anyone help?
Re: Minecraft like mods

Posted:
Fri Aug 21, 2015 07:00
by TenPlus1
List the mods you are looking for, that would help...
Re: Minecraft like mods

Posted:
Mon Aug 24, 2015 15:45
by Joz
Do you mean mods that make Minetest similar to Vanilla-Minecraft or mods like twilight forest for Minecraft?
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 14:57
by Gaming Association
Makes minetest a little more similar to minecraft
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 14:59
by Gaming Association
Does anyone know how to make a reflection so u would b able to see urself without having to go in third or first person like reflective water
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 18:59
by ArguablySane
Gaming Association wrote:Does anyone know how to make a reflection so u would b able to see urself without having to go in third or first person like reflective water
That's currently not possible using lua mods. It would be possible to do by modifying the core engine, but I don't know enough about the graphics engine to tell you how.
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 19:17
by Gaming Association
Oh ok maybe the developers could come up with something that'll make reflective blocks work
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 20:20
by ArguablySane
Gaming Association wrote:Oh ok maybe the developers could come up with something that'll make reflective blocks work
I think that's a very low priority goal at the moment.
For now I'd just like to see basic functionality like support for client-side mods and exposing more of the graphics api to lua.
Re: Minecraft like mods

Posted:
Fri Aug 28, 2015 22:37
by Gaming Association
Is it possible for someone to import Pam's Harvestcraft or the quest book mod to minetest?
Re: Minecraft like mods

Posted:
Sat Aug 29, 2015 08:48
by TenPlus1
Quest mod exists for Minetest:
viewtopic.php?f=11&t=11265...and you would have to ask the author of Pam's harvestcraft if it's ok to use the textures from the mod so we can add all those glorious food items...
Re: Minecraft like mods

Posted:
Sat Aug 29, 2015 15:23
by Gaming Association
Y doesn't someone create their take on the mod and retexture the food
Re: Minecraft like mods

Posted:
Sat Aug 29, 2015 16:17
by ArguablySane
Gaming Association wrote:Y doesn't someone create their take on the mod and retexture the food
I've never played with harvestcraft, but I'm going to try and make one or more mods which are similar to some of the tech-based minecraft mods. I'm not going to simply copy them because I think there are many things which Minecraft did quite badly, most notably the crafting system. It'll probably be a few months before I have anything playable though. For now I'm just writing a mapgen to produce more interesting, playable, and !!FUN!! worlds.
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 00:39
by Gaming Association
Oh ok could I test out the mapgen when u get it done?
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 00:42
by Gaming Association
Could u make a version of the Carpenter's blocks mod?
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 18:35
by SegFault22
You can make whatever items/nodes you want if you can figure out how the existing Lua mods work, and change the code to add the items you are wanting. Some mods even add items and nodes from a table of entries, avoiding the repetition of minetest.register_item() and minetest.register_node() function calls where it is only necessary to write out a single one (iterating through the table with ipairs() in order to add each entry recursively).
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 21:07
by Gaming Association
Does anybody know how to make a duel wield mod for minetest?
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 21:07
by Gaming Association
Or the end dimension?
Re: Minecraft like mods

Posted:
Sun Aug 30, 2015 21:46
by ArguablySane
I don't think dual wielding is currently supported by the engine. You'd have to learn C++ to implement that.
There aren't dimensions like in Minecraft, but there is a somewhat hackish workaround by teleporting the player thousands of blocks up or down and having different mapgen working there. To make an end-like pseudo-dimension, you'd need to write a custom mapgen which generated a large floating island (use 3D perlin noise for this, with a threshold which increases with distance from the centre), and then add whatever blocks, items, and mobs you wanted it to contain. It would be a big project.
Re: Minecraft like mods

Posted:
Mon Aug 31, 2015 10:35
by Gaming Association
Do u think u could help?
Re: Minecraft like mods

Posted:
Mon Aug 31, 2015 12:04
by ArguablySane
Gaming Association wrote:Do u think u could help?
Sure. For a good introduction to modding, read this:
http://rubenwardy.com/minetest_modding_book/index.htmlFor learning to make lua mapgens, look at this thread:
https://forum.minetest.net/viewtopic.php?f=5&t=9952Try and copy some of paramat's code and modify it a bit. If you run into problems, just ask and I can probably help.
Re: Minecraft like mods

Posted:
Mon Aug 31, 2015 12:13
by Gaming Association
Thx
Re: Minecraft like mods

Posted:
Mon Nov 23, 2015 02:14
by mahmutelmas06
I have made a small list before which i will extend soon.
viewtopic.php?f=52&t=13050