Post your mod requests/ideas here

Re: Post your mod requests/ideas here

Postby Lord_Vlad » Mon Nov 26, 2018 10:39 am

Hi, I would really like to disable all flowing liquid blocks and only have source liquids (which move thanks to dynamic_liquid) How can I do this ?
Lord_Vlad
Member
 
Posts: 112
Joined: Thu Jul 20, 2017 7:58 am

Re: Post your mod requests/ideas here

Postby FaceDeer » Mon Nov 26, 2018 2:18 pm

Unfortunately that isn't possible with the way dynamic_liquid is written right now. To make the ABM that dynamic_liquid uses more efficient it only moves source nodes that are adjacent to flowing nodes, since normally the only situations where it would need to move stuff is when there's flowing nodes present.

It should be possible to tweak the dynamic_liquid mod so that it tests source nodes adjacent to air nodes for movement, but this would result in a lot of needless extra checks being done - consider the ocean, its surface is adjacent to air so every second the ABM would need to check every surface node for movement possibilities.

I suppose this would be fine if the liquid type was rare, though. I'm curious what the purpose behind your question is, are you just wanting a node type that "wanders" randomly? Like some sort of weird magic rock that slides around on the ground, or something like that?
FaceDeer
Member
 
Posts: 297
Joined: Sat Aug 29, 2015 7:01 pm
GitHub: FaceDeer

Re: Post your mod requests/ideas here

Postby Lord_Vlad » Thu Nov 29, 2018 12:19 am

Basically with dynamic liquids, watersources are flowing liquids, so for me it makes no sense that it creates flowing water blocks near it... basically what I'm really annoyed at is the liquids that will just invade any given space... like flow everywhere but you can only pick up source blocks anyway. Some caves are completely flooded by a single lava source slowly making it's way down. but you still have to find the source to stop the rest.

Maybe just reduce the length of the flowing then ? Like if it could only flow one block instead of what... 8 ?
I know it's going to look weird but since the liquid is moving it makes sense to me. It would only wander randomly on a flat surfaces... otherwise I prefer to say find a way down...
It kinda already does the weird stuff anyways since if you drop a bucket on a flat surface you will see the top move weirdly.
Lord_Vlad
Member
 
Posts: 112
Joined: Thu Jul 20, 2017 7:58 am

Re: Post your mod requests/ideas here

Postby FaceDeer » Thu Nov 29, 2018 5:59 am

The "flowing" nodes adjacent to source nodes fulfill two basic functions in the context of dynamic_liquid: They look nice, and they are free "pathfinding" provided by the engine's C++ code. LUA code is slow to execute so it's important to avoid it as much as possible, so it's a huge savings to be able to just check "does this liquid source node have a flowing node adjacent to it?" before doing any further work. If a source node doesn't have a flowing node adjacent to it, then there is nowhere that it can move to and nothing further needs to be done. We never even get into the LUA code because the ABM never triggers for that node in the first place.

The nice look is also important, because without flowing nodes smoothing the surface of the liquid out it just looks like a bunch of translucent cubes sliding around chunkily. Minetest is visually crude enough as it is, eliminating the smooth surfaces of liquids is a step pretty far down.

Anyway. There is indeed an option to lessen the effect without eliminating it entirely. The key property you'll need to adjust in the liquid's definition is liquid_range. By default liquid_range is 8, meaning the flowing liquid will stretch out 8 nodes away from a source node on a flat surface. If you want to see a shorter range in action, try placing some river water on a flat surface; its liquid_range is only 2.

If you want to set the liquid_range on existing node definitions such as water and lava, this code should do it:

Code: Select all
minetest.override_item("default:lava_source", {liquid_range = 2})
minetest.override_item("default:lava_flowing", {liquid_range = 2})
minetest.override_item("default:water_source", {liquid_range = 2})
minetest.override_item("default:water_flowing", {liquid_range = 2})

(Note: code is untested)

Just stick that in dynamic_liquid's init.lua file somewhere and all liquids will behave like river water does. Note that if you have a steep slope you'll still get the liquid extending all the way down it, but with the reduced range it will be a lot less likely to find ways to reach slopes like that.
FaceDeer
Member
 
Posts: 297
Joined: Sat Aug 29, 2015 7:01 pm
GitHub: FaceDeer

Re: Post your mod requests/ideas here

Postby Cussock » Fri Jan 04, 2019 1:28 am

I think it would be very cool if we could get a Lovecraft inspired mod, with idols to all the old ones (Shub-Niggurath, Cthulhu, Nyarlathotep, Yig, etc.)

I wouldn't recommend having these entities being in-game mobs though, as the very nature of them means they're incapable of the natural form of death, but rather giving players an in-game armor set (like cultist robes or horrific ooze) that goes with them that could be crafted by sacrificing other players. As for possible mobs, I would suggest Nightgaunts and Mi-Go. Ghouls would also be appropriate if spawned in little generated graveyards. As for the function of these gods, I think it would be very fun to sacrifice other players with "ritual daggers" that gave them special items when killing someone else/a mob with said daggers. It would also give an actual use to the randomly generated dungeons Minetest already had if the code was tweaked and these were turned into Great Race of Yith libraries/labs with special mobs (abominable floating polyps) and items, making these structures widely sought after in servers. I dunno, I thought it would be very cool to add lovecraftian elements into the game. We need more eldritch abominations in Minetest. Let me know what ya'll think, and if anyone would like to work on it!
Cussock
New member
 
Posts: 2
Joined: Fri Jan 04, 2019 1:17 am
In-game: Cussock

Re: Post your mod requests/ideas here

Postby IcyDiamond » Fri Jan 11, 2019 8:26 pm

Sires wrote:Uhm minetest needs mods like "Towny in MC".

May our collective wish be my command.
IcyDiamond
Member
 
Posts: 135
Joined: Fri Mar 30, 2018 8:55 am
GitHub: LunaSquee
In-game: IcyDiamond

Re: Post your mod requests/ideas here

Postby texmex » Fri Jan 11, 2019 8:54 pm

IcyDiamond wrote:
Sires wrote:Uhm minetest needs mods like "Towny in MC".

May our collective wish be my command.

Yes please! Personally I’d like to see it supporting MineClone2 as well as MTG…
texmex
Member
 
Posts: 1291
Joined: Mon Jul 11, 2016 9:08 pm
GitHub: tacotexmex
In-game: texmex

Re: Post your mod requests/ideas here

Postby IcyDiamond » Sun Jan 13, 2019 12:25 am

texmex wrote:
IcyDiamond wrote:
Sires wrote:Uhm minetest needs mods like "Towny in MC".

May our collective wish be my command.

Yes please! Personally I’d like to see it supporting MineClone2 as well as MTG…

It's happening! viewtopic.php?f=9&t=21912
IcyDiamond
Member
 
Posts: 135
Joined: Fri Mar 30, 2018 8:55 am
GitHub: LunaSquee
In-game: IcyDiamond

Re: Post your mod requests/ideas here

Postby Hybrid Dog » Fri Jan 18, 2019 6:15 pm

I'm requesting a persian-cat mod.
Image
https://www.anyabozartist.com/persian-cat-gallery
Hybrid Dog
Member
 
Posts: 2724
Joined: Thu Nov 01, 2012 12:46 pm

Re: Post your mod requests/ideas here

Postby DS-minetest » Fri Jan 18, 2019 6:31 pm

Hybrid Dog wrote:I'm requesting a persian-cat mod.

So scary!

It would be a bit hard to make the hair, I think.
DS-minetest
Member
 
Posts: 1060
Joined: Thu Jun 19, 2014 7:49 pm
GitHub: DS-Minetest
In-game: DS

Re: Post your mod requests/ideas here

Postby Sokomine » Sat Jan 19, 2019 12:42 am

Hybrid Dog wrote:Could CityEngine be implemented in minetest?
https://graphics.ethz.ch/Downloads/Publ ... _Par01.pdf

That's definitely a very intresting project. Yet I fear it may be far too large for MT worlds. Just keep in mind how few of the world around us we actually see in the game. Players in a really huge city would be lost. Also generators tend to be a bit at a loss when it comes to create intresting/realistic buildings. Skyscrapers may seem easy, but...either they're too large (big obstacle with nothing inside), or feel far too small at their base.

The village generator nore wrote and which I used for mg_villages does work procedurally already. It can create very large villages. It's just that quite a lot of diffrent (pre-built) buildings are necessary in order to make it look good.
Sokomine
Member
 
Posts: 3750
Joined: Sun Sep 09, 2012 5:31 pm
GitHub: Sokomine

Re: Post your mod requests/ideas here

Postby Hybrid Dog » Sat Jan 19, 2019 2:03 pm

Sokomine wrote:The village generator nore wrote and which I used for mg_villages does work procedurally already. It can create very large villages. It's just that quite a lot of diffrent (pre-built) buildings are necessary in order to make it look good.

Maybe you can add a function to register house generator functions which take boundary coordinates, a height map, pseudorandom function, and other data and calculate a building which looks different almost every time.
Pre-built buildings can then be added as one house-generator function (instead of hard-coding for modularity).
Hybrid Dog
Member
 
Posts: 2724
Joined: Thu Nov 01, 2012 12:46 pm

Re: Post your mod requests/ideas here

Postby DreamGuardian » Wed Feb 13, 2019 2:22 am

1 Has anyone thought of adding Godzilla or maybe the Titans from Attack on Titans?

2 Tents please,i want to make it a camp feeling theme so anything related to camping
DreamGuardian
New member
 
Posts: 1
Joined: Wed Feb 13, 2019 2:10 am
In-game: Dream_Guardian

Re: Post your mod requests/ideas here

Postby Sires » Wed Feb 13, 2019 5:14 pm

DreamGuardian wrote:1 Has anyone thought of adding Godzilla or maybe the Titans from Attack on Titans?

2 Tents please,i want to make it a camp feeling theme so anything related to camping


Just to clarify things a bit, minetest is usually built up on mods, what you would call of a "modpack", some mods that makes up a whole gameplay is called a "game" in minetest. So one does not add something to minetest, we can add something to the minetest game, but the minetest game is made to be very simple. So if you want to have godzilla or all that stuff you need a mod or maybe a game ;)
Sires
Member
 
Posts: 189
Joined: Mon Jan 02, 2017 9:00 pm
GitHub: Sires0
In-game: Sires Sores Siri Seris or anything ppl call me

Re: Post your mod requests/ideas here

Postby Extex » Wed Feb 20, 2019 7:41 pm

setlight mod so you can set the light per node using a special tool
Extex
New member
 
Posts: 5
Joined: Wed Mar 14, 2018 11:14 pm
GitHub: Extex101
In-game: Extex

Re: Post your mod requests/ideas here

Postby niwla23 » Sun Feb 24, 2019 8:32 pm

Can somone make a mod that depend on worldedit and add an //overlay command? This would set a block over every other block, except air. That would be good for terraforming: //brush sphere 5 stone and then //overlay and the rocks are finish!
niwla23
Member
 
Posts: 92
Joined: Sat Nov 17, 2018 5:40 pm
In-game: Niwla

Re: Post your mod requests/ideas here

Postby ThorfinnS » Tue Feb 26, 2019 10:08 pm

Dye + torch = torch with dyed handle. Maybe 8 torches per dye or something. To use as breadcrumbs when exploring caverns. And to give a practical use for dyes. :)

[EDIT]
In case anyone else is considering something like this. search for "abritorch". Been out quite a while, but doesn't have the word "dye" or "color". It didn't occur to me to search for "colour". ;-)
[/EDIT]
ThorfinnS
Member
 
Posts: 65
Joined: Mon Feb 25, 2019 10:05 pm

Re: Post your mod requests/ideas here

Postby elfang » Tue Feb 26, 2019 11:09 pm

"Quickstart" modpack so a new user does not have to hunt through the forums trying to figure out how to fit all this together, complete with hunger, decent inventory, and all the basic expansions.
elfang
New member
 
Posts: 1
Joined: Tue Feb 26, 2019 10:56 pm
In-game: elfang

Re: Post your mod requests/ideas here

Postby AlexD975 » Fri Mar 22, 2019 1:25 pm

Hey everybody, is this possible somehow change tool drawtype from sprite to 3D models in obj format?!
AlexD975
Member
 
Posts: 59
Joined: Mon Dec 04, 2017 9:24 pm
In-game: SeriousSasha

Re: Post your mod requests/ideas here

Postby twoelk » Fri Mar 22, 2019 5:56 pm

elfang wrote:... all the basic expansions ...


go get Dreambuilder and fry your playing device :-D
or if you come from Minecraft then consider the game Mineclone2

or else define your personal version of "basic" (in case it differs from the usuall "everything minecraft has plus my favorite random mc-mod")

for example my personal "basic" usually are:
farming redo + wine
mobs redo + mobs animals
replacer
world edit
mapfix
and some other not very visible tools

note that I normally do not include any monsters, magic, technic, extra weapons or unvoxely meshes.
so I bet our ideas of basic gameplay may differ just as with most others.
twoelk
Member
 
Posts: 1305
Joined: Fri Apr 19, 2013 4:19 pm
GitHub: twoelk
In-game: twoelk

Re: Post your mod requests/ideas here

Postby StarNinjas » Fri Mar 22, 2019 6:09 pm

for starters CME is good, I love xdecor for begging.
StarNinjas
Member
 
Posts: 273
Joined: Wed Mar 14, 2018 12:32 am
GitHub: starninjas
In-game: J1

Re: Post your mod requests/ideas here

Postby UltraBloxX » Thu Mar 28, 2019 3:45 pm

Hello!

I'm a fan of roguelike games (particularly, NetHack), and I've been thinking for a long time that Minetest could work very well together with NetHack as an interface/visualizer for 3D dungeon exploration experience.

It's gonna take a lot of work (both graphical resources and code), but I think it's technically quite feasible to make a working Minetest-based interface for NetHack. I wonder if anyone else would be interested in such a thing and/or wants to join and contribute to the project?
UltraBloxX
New member
 
Posts: 1
Joined: Sun Mar 24, 2019 6:25 pm

Re: Post your mod requests/ideas here

Postby StarNinjas » Thu Mar 28, 2019 4:06 pm

I have never heard of NetHack, But I can help with textures!
StarNinjas
Member
 
Posts: 273
Joined: Wed Mar 14, 2018 12:32 am
GitHub: starninjas
In-game: J1

[mod] requests - block ping under x

Postby Festus1965 » Sat Apr 06, 2019 2:16 am

? [Mod] block_ping_over
think about block player with ping above x

do we have in server access to ping or similar from logging in player ?
or has it to be done via IP and make a ping ?

I see especial lag rises with player from ping above 250,
and for the future keep server for local ...

can use this:
Code: Select all
 Timeout
A connection may timeout after 30 seconds of nonresponsiveness to PINGs or RELIABLEs. A peer should send PING/CONTROL packets every 5 seconds or so if it has not sent any other packets.
Festus1965
Member
 
Posts: 931
Joined: Sun Jan 03, 2016 11:58 am
GitHub: Minetest-One
In-game: Thomas Explorer



Return to Modding Discussion



Who is online

Users browsing this forum: Bing Bot [Bot] and 0 guests