Post your mod requests/ideas here

User avatar
StarNinjas
Member
Posts: 411
Joined: Wed Mar 14, 2018 00:32
GitHub: starninjas
IRC: StarNinjas
In-game: J1
Location: Terrarca
Contact:

Re: Post your mod requests/ideas here

by StarNinjas » Post

I might be able to see if it can be done w mesecons
Don't go to bed tonight, without knowing what would happen if you died. https://thegospelfilm.org/

User avatar
mnh48
Member
Posts: 310
Joined: Wed Nov 16, 2016 22:55
GitHub: mnh48
IRC: MNH48
In-game: mnh48
Location: Kuala Lumpur, Malaysia
Contact:

Re: Post your mod requests/ideas here

by mnh48 » Post

KingBull wrote:The TechPack seems to work well for this. Problem is most server's I play in: Banana Land, Anarchy, [2018]IFS, Craig's Server, Chuchelan Relodaded, Legends of Survival, don't have installed yet the TechPack mod.
They do however use Mesecons mod... could this be accomplished with the components of that mod?
You will need to look for servers that already or willing to install them, most servers only install what they want to use though some of them might accept new mod suggestions.

---
Talking about that, I'm moderator on IFS and I'm really not sure if the owner would want to add another fancy mod when it's nearly the limit for client, as IFS was made to support low-end mobile devices as well, not just PC players. The admin also simplified some of the mods installed so that it will reduce the lag on the client (the server itself is fine as it's on dedicated server).

This is because he tries to make sure the server is playable on device with as low as 700MB RAM even with many fancy mods (homedecor, mesecons, moretrees, moreores, moreblocks, hopper) enabled. In fact, there are many players on IFS who are indeed mobile players, though some players have been experiencing difficulties to connect to IFS with all the existing mods on the server. But you can try to suggest it when you're playing on IFS, that's what the /feedback command used for on IFS. xD

though you still can do what you want on IFS without other mod, because you can combine mesecons (sticky piston, luacontroller) and hopper...
Image
Image
Image
Image

here's the LuaController that I use in that example:

Code: Select all

if (pin.c) then
  interrupt(1)
  if (os.datetable().sec == 10 or os.datetable().sec == 20 or os.datetable().sec == 30 or os.datetable().sec == 40 or os.datetable().sec == 50 or os.datetable().sec == 0) then
    port.d = true
  else
  port.d=false
  end
else
  port.d=false
end
Image
In the example which is done on IFS, I push hopper to position every 10 seconds and the items will flow down from the locked chest above to the normal chest below when it is pushed. You can set it to other values as well, there are hour, min, wday, day, month, year... You can also use side hoppers if you want to put it differently... up to your creativity...
http://mesecons.net/luacontroller/ wrote:Since access to os.date is considered unsafe as it might crash lua and therefore the minetest server, a wrapper function called "os.datetable()" has been implemented. This function returns a table containing the current real-world date and time of the server:

Code: Select all

{   hour = 11, min = 27, wday = 7, day = 2, month = 1,   year = 2016, sec = 42, yday = 2, isdst = false }
Read more about mesecons over http://mesecons.net

EDIT: GIF of it in action
Image

User avatar
KingBull
Member
Posts: 22
Joined: Tue Aug 07, 2018 07:23

Re: Post your mod requests/ideas here

by KingBull » Post

Thank you kindly Muhdnurhidayat, I will look into that!

Gearhart
Member
Posts: 15
Joined: Wed May 23, 2018 13:40
IRC: Souleater
In-game: Souleater

Re: Post your mod requests/ideas here

by Gearhart » Post

InfinityProject wrote:Since many people clutter the forums with topics of ideas I made a place to post your ideas.

um can i have a mod that adds dbz i check every single website i can find and found nothing but dbz tools

i want a system that adds extra health/damage/armor/breath/speed/jump hight/aura(3 colors blue'good' purple'middle' red''eveil)/a point system/hard mobs that only spawn when you place a "saga spawner" and you have to beat one to move on to the next and it should take a while to beat and.... make

saga spawner craft

default:stone,default:stone,default:stone
default:stone,default:steel_ingot,default:stone
default:stone,default:stone,default:stone

ok i may have gone a little over board but i think it will be fun

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: Post your mod requests/ideas here

by ManElevation » Post

i need more ideas on my new mod viewtopic.php?f=9&t=20462
My Public Mods! Discord: Rottweiler Games#3368

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: Post your mod requests/ideas here

by ManElevation » Post

anyone? i need more machine ideas for this mod!
viewtopic.php?f=9&t=20462
My Public Mods! Discord: Rottweiler Games#3368

User avatar
bosapara
Member
Posts: 637
Joined: Fri Apr 07, 2017 08:49

3D webmap

by bosapara » Post

Would be great if someone could realise idea of 3d webmap (in real time)

Image


PS 2D map already exist

User avatar
Player3107
New member
Posts: 5
Joined: Fri Sep 07, 2018 08:54
GitHub: coolcodee2007
In-game: arvgarcia
Location: In a house

Re: Post your mod requests/ideas here

by Player3107 » Post

Does anyone think a Speedboat mod would be good? The vanilla boats are good, but extremely slow. I don't know how to make them move faster.
I don't like hashtags! #stopusinghashtags
Loose: Not firmly or stuck in place. (ex: I have a loose tooth.)
Lose: To fail to win a game or contest. (ex: If I lose at Minetest, my stuff will disappear!)
Now that you know, use them properly!

User avatar
LMD
Member
Posts: 1386
Joined: Sat Apr 08, 2017 08:16
GitHub: appgurueu
IRC: appguru[eu]
In-game: LMD
Location: Germany
Contact:

Re: Post your mod requests/ideas here

by LMD » Post

It is quite easy to make them faster :
Somewhere in the code, you should find this lines :

Code: Select all

if math.abs(self.v) > 5 then
     self.v = 5 * get_sign(self.v)
end
 
replace them by those :

Code: Select all

local speed = 2 --For 2x speed
if math.abs(self.v) > 5 * speed then
     self.v = 5 * speed * get_sign(self.v)
end
 
Anyway, Magic-CTF will be released soon. It includes an advanced boats mod.
Advanced Boats come in several tiers with different hp/speed. Each boat can hold up to 3 players.
Advanced Boats Mod Documentation : https://magicctf.github.io/content.html#gheader36
My stuff: Projects - Mods - Website

User avatar
Player3107
New member
Posts: 5
Joined: Fri Sep 07, 2018 08:54
GitHub: coolcodee2007
In-game: arvgarcia
Location: In a house

Re: Post your mod requests/ideas here

by Player3107 » Post

LMD wrote:It is quite easy to make them faster :
Somewhere in the code, you should find this lines :

Code: Select all

if math.abs(self.v) > 5 then
     self.v = 5 * get_sign(self.v)
end
 
replace them by those :

Code: Select all

local speed = 2 --For 2x speed
if math.abs(self.v) > 5 * speed then
     self.v = 5 * speed * get_sign(self.v)
end
 
Anyway, Magic-CTF will be released soon. It includes an advanced boats mod.
Advanced Boats come in several tiers with different hp/speed. Each boat can hold up to 3 players.
Advanced Boats Mod Documentation : https://magicctf.github.io/content.html#gheader36
Oh, ok, thanks!
I don't like hashtags! #stopusinghashtags
Loose: Not firmly or stuck in place. (ex: I have a loose tooth.)
Lose: To fail to win a game or contest. (ex: If I lose at Minetest, my stuff will disappear!)
Now that you know, use them properly!

User avatar
ManElevation
Member
Posts: 896
Joined: Tue Aug 02, 2016 22:04
GitHub: ManElevation
IRC: ManElevation
In-game: ManElevation
Location: Madrid,Spain

Re: Post your mod requests/ideas here

by ManElevation » Post

heyaii! I want a mod that makes the nametags only shown when you point at the player like in the game unturned.
My Public Mods! Discord: Rottweiler Games#3368

Shammmmmm
Member
Posts: 27
Joined: Sat Sep 20, 2014 21:31
GitHub: Shammmmmm
IRC: Shammmmmmm
In-game: Shammmmmm
Location: Philippines

Re: Post your mod requests/ideas here

by Shammmmmm » Post

Can someone rivive gloop ores??
You Can call me Sham
New mods incoming by me :)

Boruch
Member
Posts: 18
Joined: Wed Oct 18, 2017 14:35

Child- and family-friendly mod / world

by Boruch » Post

Hi. This is my second time looking at minetest. The first time, I immediately got distracted into writing a mod. This time, when I actually started building something, I was struck by the absence of child-friendliness anywhere in the minetest multi-verse. What I mean is that I don't see any mod for playground equipment (slides, swings, basketball hoops, etc) or children furniture (crib, high-chair, playpen, etc), so when I try to construct a home and a neighborhood, they are absent any sign of children, which frankly gives me the creeps. Have I not searched thoroughly enough? I can code in lua, but am totally inept in creating art / graphics.

hajo
Member
Posts: 606
Joined: Thu Oct 13, 2016 10:45
Location: DE
Contact:

Re: Child- and family-friendly mod / world

by hajo » Post

Boruch wrote:I don't see any mod for playground equipment (slides, swings, basketball hoops, etc)
or children furniture (crib, high-chair, playpen, etc)
Minetest is a voxel-game, so everyone and everything is both minimal and 'full-size", at the same time.
It is possible to change the visuals, but things/players still remain at their normal=full size.
(E.g. see mobs-redo, with animals that can have babys that grow up. Also, see the skin 'Kirby' :)
Children would look out-of-place.

Items that move the player around are mostly vehicles (boat, cart ...),
but xdecor at least has a trampoline.

There are mods with lots of items/decorations, eg. xdecor, home-decor, dreambuilder, princess_decor...
Have I not searched thoroughly enough?
See Mod-Search, but look for specific items (such as 'trampoline' or 'basketball').

Byakuren
Member
Posts: 818
Joined: Tue Apr 14, 2015 01:59
GitHub: raymoo
IRC: Hijiri
In-game: Raymoo + Clownpiece

Re: Post your mod requests/ideas here

by Byakuren » Post

Voxel games don't need to have static sizes for players and entities, in fact you can change the size of non-player entities. You can't do it with players, but that's just because such a feature is not implemented in Minetest, not because it's a voxelgame.
Every time a mod API is left undocumented, a koala dies.

User avatar
rubenwardy
Moderator
Posts: 6972
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: Child- and family-friendly mod / world

by rubenwardy » Post

hajo wrote:
Have I not searched thoroughly enough?
See Mod-Search, but look for specific items (such as 'trampoline' or 'basketball').
https://content.minetest.net will return better results, as it scans the forum daily and will notice when topics are deleted or updated
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: Post your mod requests/ideas here

by Chiantos » Post

Hello,

I need B3d file for make a mod, i have blend file, i cant convert to b3d or x, i havent computer for blender.

For mod Model player. A people can help me for convert blend to b3d, please ? Thank you ...

https://opengameart.org/content/animated-human-low-poly

I have test ingame with obj and with character creator, not problem ... I need B3d for animations.

Good day.

User avatar
BuckarooBanzay
Member
Posts: 435
Joined: Tue Apr 24, 2018 05:58
GitHub: BuckarooBanzay
IRC: BuckarooBanzai
In-game: BuckarooBanzai

Re: 3D webmap

by BuckarooBanzay » Post

bosapara wrote:Would be great if someone could realise idea of 3d webmap (in real time)

Image


PS 2D map already exist
Another one too: viewtopic.php?f=14&t=20371 :D
¯\_(ツ)_/¯ Not active here anymore, contact me on the minetest discord, irc, lemmy or github (for programming issues)

User avatar
Hybrid Dog
Member
Posts: 2828
Joined: Thu Nov 01, 2012 12:46
GitHub: HybridDog

Re: Post your mod requests/ideas here

by Hybrid Dog » Post

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

‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪

User avatar
Phoenixflo44
Member
Posts: 639
Joined: Fri Jul 28, 2017 15:01
In-game: EvilPhoenix
Location: Behind my PC, in Germany

Re: Post your mod requests/ideas here

by Phoenixflo44 » Post

There would have to be a staff working with Worldedit to create balls, for example, without having to enter a command every Time. Man should still be able to adjust the size beforehand. Then I could create better landscapes.
Spoiler
I hate my life

User avatar
rubenwardy
Moderator
Posts: 6972
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: 3D webmap

by rubenwardy » Post

bosapara wrote:Would be great if someone could realise idea of 3d webmap (in real time)

Image


PS 2D map already exist
viewtopic.php?f=6&t=18698
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Hybrid Dog
Member
Posts: 2828
Joined: Thu Nov 01, 2012 12:46
GitHub: HybridDog

Re: Post your mod requests/ideas here

by Hybrid Dog » Post

Onomatopoeia is not real time.

‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪‮
‮‪

Gibeinumo
Member
Posts: 30
Joined: Tue Oct 23, 2018 07:19

Re: Post your mod requests/ideas here

by Gibeinumo » Post

Hello Everyone,

I like to play Minetest in normal mode. Multiple times I wanted to craft something 99 times or more often. It is possible to do so, but only if you click that many times. Has someone made a mod to make crafting more effective? One possible solution would be to use the mouse wheel to make this process more dynamic. A shortcut to craft the maximum amount would be nice, too.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: Post your mod requests/ideas here

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:45, edited 1 time in total.

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: Post your mod requests/ideas here

by texmex » Post

Gibeinumo wrote:Hello Everyone,

I like to play Minetest in normal mode. Multiple times I wanted to craft something 99 times or more often. It is possible to do so, but only if you click that many times. Has someone made a mod to make crafting more effective? One possible solution would be to use the mouse wheel to make this process more dynamic. A shortcut to craft the maximum amount would be nice, too.
Hi! The mousewheel feature you suggest is actually implemented in the development version of Minetest, so that’s coming.

Post Reply

Who is online

Users browsing this forum: Google [Bot] and 4 guests