Minecraft like mods

Post Reply
User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Minecraft like mods

by Gaming Association » Post

I am looking for mods that are similar to the mods that minecraft has can anyone help?
Gaming Association

User avatar
TenPlus1
Member
Posts: 3722
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: Minecraft like mods

by TenPlus1 » Post

List the mods you are looking for, that would help...

Joz
Member
Posts: 41
Joined: Fri Oct 25, 2013 21:37

Re: Minecraft like mods

by Joz » Post

Do you mean mods that make Minetest similar to Vanilla-Minecraft or mods like twilight forest for Minecraft?

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Makes minetest a little more similar to minecraft
Gaming Association

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

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
Gaming Association

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: Minecraft like mods

by ArguablySane » Post

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.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Oh ok maybe the developers could come up with something that'll make reflective blocks work
Gaming Association

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: Minecraft like mods

by ArguablySane » Post

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.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Is it possible for someone to import Pam's Harvestcraft or the quest book mod to minetest?
Gaming Association

User avatar
TenPlus1
Member
Posts: 3722
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: Minecraft like mods

by TenPlus1 » Post

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...

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Y doesn't someone create their take on the mod and retexture the food
Gaming Association

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: Minecraft like mods

by ArguablySane » Post

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.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Oh ok could I test out the mapgen when u get it done?
Gaming Association

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Could u make a version of the Carpenter's blocks mod?
Gaming Association

User avatar
SegFault22
Member
Posts: 872
Joined: Mon May 21, 2012 03:17
Location: NaN

Re: Minecraft like mods

by SegFault22 » Post

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).

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Does anybody know how to make a duel wield mod for minetest?
Gaming Association

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Or the end dimension?
Gaming Association

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: Minecraft like mods

by ArguablySane » Post

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.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Do u think u could help?
Gaming Association

User avatar
ArguablySane
Member
Posts: 116
Joined: Sun Oct 12, 2014 21:29

Re: Minecraft like mods

by ArguablySane » Post

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.html
For learning to make lua mapgens, look at this thread: viewtopic.php?f=5&t=9952

Try and copy some of paramat's code and modify it a bit. If you run into problems, just ask and I can probably help.
The above post and any ideas expressed therein are released to the public domain under a Creative Commons CC0 license.

User avatar
Gaming Association
Member
Posts: 62
Joined: Tue Aug 18, 2015 01:52
GitHub: Gerold55
In-game: Gerold55

Re: Minecraft like mods

by Gaming Association » Post

Thx
Gaming Association

User avatar
mahmutelmas06
Member
Posts: 367
Joined: Mon Mar 02, 2015 13:10
GitHub: mahmutelmas06
IRC: mahmutelmas06
In-game: masum

Re: Minecraft like mods

by mahmutelmas06 » Post

I have made a small list before which i will extend soon.

viewtopic.php?f=52&t=13050
My Mods:

Beverage

Post Reply

Who is online

Users browsing this forum: No registered users and 9 guests