ContentDB
  • Mods
  • Games
  • Texture Packs
  • Random
  • Help
  • Sign in
  • Languages
    • Help translate ContentDB
  • «
  • 1
  • 2
  • …
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • …
  • 125
  • 126
  • »
  • potato_bowmaster 2023-11-02 14:36 UTC

    very good mod

    this mod makeing very good maps

    The Confluence by MisterE 0 comments
  • Atlante 2023-11-02 12:35 UTC

    Original idea

    It's a very good mod, I really like the idea, it's really well thought out and done!

    Message Bubbles by ZenonSeth 0 comments
  • hmm 2023-11-02 10:06 UTC

    The best builder tool

    I never knew I needed this. Intuitive to use and helps to scale your creativity. Just a suggestion: more people will know about your mod if your license wouldn't require to open source server code too

    Extruder Tool by fgaz 1 comments
  • hmm 2023-11-02 09:22 UTC

    The very best machine mod

    It can fit in pretty much any loose enough fantasy setting, unlike most other automation mods, uses 16bit textures too. Even if game breaking for survival(accumulates ores too easily and overall too fast), it's under the best license, so I can nerf it without issues by maybe greatly increasing fuel consumption. Didn't look at the code yet, probably can take less server resources, but overall hands off the best.

    Digtron by FaceDeer 0 comments
  • epCode 2023-11-01 21:22 UTC

    Amazing utility for custom generation

    This is a fantastic tool and idea. Takes so much work out of setting up a custom lua land gen. Very helpful.

    Luamap by MisterE 0 comments
  • ROllerozxa 2023-11-01 21:21 UTC

    Neat mod

    This mod adds nice looking narrow bridges with railings, that aesthetically look very fitting in a factory or another industrial setting. The nodes are a however bit finnicky to place, the selection box could use being raised or made into full nodes in order to be able to place several bridge nodes in sequence with no support.

    Factory bridges by mt-mods 2 comments
  • chef_trip 2023-11-01 14:33 UTC

    this mod is great, especially the chess game u can really play

    i have a question, what's that mexican clay floor tiles looking flooring in the main photo?

    X-Decor-libre by Wuzzy 0 comments
  • Horka 2023-11-01 13:42 UTC

    Very powerful mod and essential in creativity

    This mod is complex but simple to understand (easy to learn). Its name describes very well what it can do whether on a small or large scale. In addition, the modifications appear natural compared to raw editors. No bugs, works very well and responds quickly.

    Terraform by x2048 0 comments
  • JoeEnderman 2023-10-30 07:38 UTC

    I like it

    For the stair fix alone it is awesome. Will be using more often.

    Minor Redefinitions by Linuxdirk 0 comments
  • Nathan.S 2023-10-29 20:31 UTC

    Bridge building is so easy

    This mod makes it so easy to build a bridge, no more sneaking to place blocks. Highly recommend.

    Extended Placement by gamefreq0 0 comments
  • Daniel 2023-10-29 01:55 UTC

    visual bugs

    maybe copy paste the mod from 3d armor?

    Wield3D by stu 0 comments
  • SkyBuilder1717 2023-10-28 08:27 UTC

    I love this

    i like classic models or textures. They give me a dreamcore feeling...

    Mob Mese Monster Classic by TenPlus1 0 comments
  • TenPlus1 2023-10-28 06:53 UTC

    Bring on the mods...

    This is my favourite game, it's a blank slate waiting for your own mods to be added.

    Minetest Game by Luanti 0 comments
  • rewired_X 2023-10-27 19:52 UTC

    noice

    Nice mod, although my only requests are that there should be more cup variants (ex. copper) and that they should be rotatable (for special purposes) Otherwise simplistic and does the job.

    Cups by Wuzzy 0 comments
  • JD-0835 2023-10-27 15:22 UTC

    best game yet

    This is the best game I have played on minetest since I downloaded it!

    Mineclonia by ryvnf 0 comments
  • Aspen 2023-10-27 11:14 UTC

    Magical

    Just magical. Wow... stares at the sky :D cool!

    Auroras by random_geek 0 comments
  • Aspen 2023-10-27 10:07 UTC

    Simple but awesome!

    This mod is very important for the game: it adds a lights, theres a tree that u can decorate, there are presents. I hope there will be some updates soon!

    Ive been using it for 2 years btw ;)

    Christmas by Extex 0 comments
  • Aspen 2023-10-27 10:04 UTC

    Perfect!

    I love this mod! The lights are very pretty, theres reindeers and everything is just perfect! It goes very well with the other christmas mod so I use them both. One problem tho is when I place the mobs i cant kill them without getting rid of other mobs?

    Christmas Decor by GreenXenith 0 comments
  • LissoBone 2023-10-27 05:02 UTC

    Very good, balanced and helpful, but needs an urgent repair.

    I love this mod: it allows for so much expressive space on our minetest farms and in great communal kolkhozes. However, when one attemps to grow a tree, it takes multiple attempts, during which nothing happens and the fertilizer isn't spent, and only once the random number generator strikes a '1' it generates particles and erects the tree from the sapling. This just begs the fix.

    I suppose it should spend the bonemeal in the meantime: that would just achieve the desired balance, for if there is only one meal per tree, one can unfairly and unrealistically make plenty within mere minutes.

    Next comes the fix. #

    On line 127 in 'init.lua' there is a predicate to test whether we can actually grow the tree. Inside, the procedure that grows the tree is evaluated and the bonemeal:on_use procedure returns true. That's so bad!

    I fixed it and it should resemble this (but that's not all to it):

    		-- check if we can grow sapling at current light level
    		if can_grow and (light_ok or saplings[n][4] == true) then
    
    			particle_effect(pos)
    			if math.random (5 - strength) == 1 then
    			   grow_tree(pos, saplings[n][2])
    			end
    
    			return true
    		end
    

    What I did is I added an extra predicate inside the very procedure that's called every time a bonemeal is used and the sapling is checked for validity: a random number generator, contrary to the one that evaluates the check_sapling procedure outside.

    -- check for sapling growth
    
    if check_sapling(pos, node.name, light_ok, strength) then
    	return true
    end
    

    On line 479, remove the "and", also erasing the extra random number generator, which, as you could have seen, has been moved inside check_sapling.

    Don't forget to modify check_sampling and the procedure call so that it accepts an extra "strength" argument, which is needed for 'math.random (5 - strength)'.

    Happy hacking.

    Bonemeal by TenPlus1 1 comments
  • mmmsued 2023-10-26 14:41 UTC

    naming conflict

    Great job. There is a naming conflict with the mod package »homedecor« (https://content.minetest.net/packages/mt-mods/homedecor_modpack/), which also contains a folder called »itemframes«.

    Item Frames and Pedestals by TenPlus1 1 comments
  • ry52 2023-10-26 12:34 UTC

    Worth a try

    I love this inventory, but there is a glitch where if you select crafting or armor i don't know how to get back to the area where you can delete items in your inventory and the main item slots.

    Unified Inventory by RealBadAngel 0 comments
  • erle 2023-10-23 19:03 UTC

    Works fine in singleplayer, could use more legs though

    The leg boat can walk and it looks really nice how this is done.

    The leg boat can climb well – but looks a bit silly while doing it.

    Entirely unlike what you might expect, the leg boat does not float.

    I would like this mod even more if the boat had some more legs (six?).

    Also I have noticed a bug: Sometimes part of a leg is black while climbing.

    Legboat by ekl 0 comments
  • SkyBuilder1717 2023-10-23 14:26 UTC

    efforts are present!

    The effort to make a cool texture pack is there! We are waiting for more drawn textures from CocoMarck!

    CM Draw Textures by CocoMarck 2 comments
  • Arkatron 2023-10-23 10:03 UTC

    Not tried yet

    Man I for some reason am a fan of fat minecraft animals. I used to create fat cow mods for mcpe. but never thought of making one for mtg. I have not tried yet though so cannot tell more. But your description sounds quite appealing. Might change this comment after I've tried

    MC2.0 for MineClone2 by 1F616EMO 0 comments
  • c56 2023-10-23 00:35 UTC

    BRING NYANCATS BACK

    to get around the licensing , maybe we could make mtg have a dependency on this mod ?

    Nyan Cat by rubenwardy 2 comments
  • Nika 2023-10-22 23:56 UTC

    Just what I was hoping for!

    This is a pretty awesome mod! So far works great, limited only by your imagination and cleverness with coding. I was looking for something that worked as close to the ComputerCraft turtles as possible, and this seems to be it! I assume the "robots" in lwcomputers work in a similar way, only using Lua instead of Scratch? I might try that later too. heh

    If I had a suggestion, it might be to change the Run and Persistent button images, cause the way they currently are, it's hard to tell whether they're on or off. Seems to be if the highlighted edge is near the top, the button is off? And light-edge near bottom = On? Might be better to just have them say on/off, or have them turn green for on and red for off? Or heck, even just a floating text when you mouse over the buttons, which tells you what clicking them will do. Oh, and potentially a way to store a few different scripts within a single bot, or to somehow save code to a file we can transfer between maps, tho those are more advanced ideas. heh

    LWScratch by mt-mods 0 comments
  • SkyBuilder1717 2023-10-22 14:42 UTC

    Cool Style

    Not bad! I love this minimalistic!

    Soothing 32 by Zughy 0 comments
  • SkyBuilder1717 2023-10-22 14:38 UTC

    Cool!

    I love function for speed and hunger. very cool! Mod is suitable for every server!

    Stamina by sofar 0 comments
  • SkyBuilder1717 2023-10-22 14:35 UTC

    Perfect editor!

    A good mod for popular servers. Wow! Good luck to the author!

    Edit Skin by Johannes Fritz 0 comments
  • SkyBuilder1717 2023-10-22 14:30 UTC

    Perfect!

    The mod is good, but the textures are so-so. This mod can diversify the food in the world, as well as farming

    Farming Redo by TenPlus1 0 comments
  • SkyBuilder1717 2023-10-22 14:28 UTC

    Mod is beautiful!

    I use the mod to search for things from my mods. A wonderful mod with lots of features! I really like the mod!

    Unified Inventory by RealBadAngel 0 comments
  • SkyBuilder1717 2023-10-22 12:59 UTC

    Mobs are cool!

    The design is worked out! The textures are high-quality and wonderful! The API is also no worse! in general, a good mod to increase the danger in mines

    Mobs Monster by TenPlus1 0 comments
  • SkyBuilder1717 2023-10-22 12:55 UTC

    Good!

    Every noob needs this mod! So that he does not fall constantly. And so a wonderful mod! I really like him! I love this!

    Hang Glider by mt-mods 0 comments
  • SkyBuilder1717 2023-10-22 12:53 UTC

    Good mod!

    this mod need to minetest!

    Hunger NG by Linuxdirk 1 comments
  • SkyBuilder1717 2023-10-22 12:51 UTC

    Perfect nether

    Ambience has been worked out, because he's scary. Many blocks for building, and if i add Mese Monster, i will be more scary, so i love this mod, because he's has many features and normal api.

    Nether by PilzAdam 0 comments
  • SkyBuilder1717 2023-10-22 12:40 UTC

    Great mod!

    Thanks to this mod, I was able to make a lot of useful mechanisms in my minetest world! I recommend it!

    Mesecons by Jeija 0 comments
  • Nika 2023-10-22 01:12 UTC

    Great idea! I miss these!

    Years ago I used to have an MC server running ComputerCraft, and man those were wild times. heh This reminds me so much of it, not perfect, but nearly there! Just needs those last two features, user-permissions and the ability to unload items into containers or hoppers. If it had those, I wouldn't be able to resist setting up a server for this! Really hope to see an update to this in the future! ;D

    Computertest by zaners123 0 comments
  • Nika 2023-10-22 01:01 UTC

    Interesting learning tool!

    I love the idea of setting loose an auto-mining robot with something like this. Few questions/suggestions: Is there any way to have the bot dump it's inventory into a container or hopper? And is there any way to have the bot run on a loop or have it's code loop mathematically? Or maybe a just "label" and "goto label" feature? Or For that matter a counter/variable system could be useful too.

    Visual Bots by Nigel 0 comments
  • LissoBone 2023-10-22 00:50 UTC

    What a miraculous coincidence!

    I just happened to watch this anime with my family this week, and I loved it! Just as I, I expect, will love this projection of Porco Rosso's airplane into Minetest.

    Savoia S-21 by APercy 0 comments
  • L4z41 2023-10-21 09:51 UTC

    It seems like fun, but

    Seems like I can't get past the iron age because the melting pot just doesn't work.. I made the tower 15 blocks high, added a TA1 lighter and stacked charcoal ontop of it (acording to the manual and few youtube videos) but, when I light the TA1 Lighter with flint and steel, nothing happens, the charcoal doesn't burn and the flame doesn't appear. There's a high possibility I'm dumb and made a mistake somewhere but I hope I can get help here. Until then I don't recommend it.

    edit: figured it out, you need to use only cobblestone and not anything else, I was using cobblestone paired with Bauxite cobblestone so it didn't work. I ecountered the same problem while trying to get charcoal. It didn't work with savahna dirt and only with normal which I had to travel to get.

    Techage Modpack by joe7575 3 comments
  • «
  • 1
  • 2
  • …
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • …
  • 125
  • 126
  • »

ContentDB © 2018-24 to rubenwardy

  • Help
  • About
  • Contact Us
  • Terms of Service
  • Policy and Guidance
  • Donate
  • API
  • RSS / Feeds
  • Privacy Policy
  • Report / DMCA
  • Advanced Search
  • User List
  • Threads
  • Collections
  • Support Creators
  • Translate Packages
  • Source Code