Post your mod requests/ideas here

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

by Sokomine » Post

Emgogall wrote: I was just wondering, wouldn't it be nice if there was a mod that created people that look like the character. So there would be random people walking around so whenever you create like a city or kingdom you'll have people won't feel lonely and your world will feel filled up and alive, would feel extremelly real.
Thanks!
The peaceful_npc mod has player-like mobs that run around. They show a strage behaviour at night where they seek company of players, but apart from that, it's a fine mod.
A list of my mods can be found here.

markveidemanis
Member
Posts: 211
Joined: Thu Sep 27, 2012 15:41

by markveidemanis » Post

This is more a request to change a mod.
I would like digilines to be global, so i dont need wires to connect one to another. This would allow the mod to be much lighter and would be useful for server owners who just want a simple message system.
Also I ask for the Mesecons Luacontroller to be changed, allowing all keywords and also making things global. So a luacontroller is a bridge between minetest and lua. This would allow mapmakers to send messages directly to chat or possibly change blocks according to some input. The loss of these limitations would open up a huge gateway of potential.
BitCoin: 1Eq4arvykGNa1YC2DbJpWcwGfMvtFGjAoR

minhazmurks
New member
Posts: 2
Joined: Sat Dec 28, 2013 03:09

by minhazmurks » Post

hey guys i want a simple tank mod. i made the 3d model for it, so i need someone who knows how to like texture it. if someone can lay out the texture i can do it myself, but i just don't know how to do it.

here is the 3d model, the top turret and the bottom is seperate just incase the coder needs it to be able to make it turn or whatever, if you need it to be in the same file just tell me and i will do it.

in the folder i included 2 copies of each model, one in .x and one in .3ds just incase you didn't have a program that supported both.

misc.php?act … tr=8729f9- tank bottom.x
misc.php?act … tr=8729f9- tank turret.x

misc.php?act … tr=8729f9- tank bottom.3ds
misc.php?act … tr=8729f9- tank turret.3ds

User avatar
Stormageton
New member
Posts: 5
Joined: Tue Dec 31, 2013 21:57
Location: Right behind you...

by Stormageton » Post

I'm wondering if somebody could program an elevator. There could be two types : Technological and Mechanical. Technological would be operated by mese, which would command it to go within a specified node range. Mechanical would be slightly more complicated to make ( I think ) and would operate by a pulley ( which needs another mod) connected to a rope.

If anybody could actually make this and link me the GitHub, you're awesome.

User avatar
Pitriss
Member
Posts: 254
Joined: Mon Aug 05, 2013 17:09
GitHub: Pitriss
IRC: pitriss
In-game: pitriss
Location: Czech republic, Bohumin

by Pitriss » Post

simple elevators are in travelnet mod
I reject your reality and substitute my own. (A. Savage, Mythbusters)
I'm not modding and/or playing minetest anymore. All my mods were released under WTFPL. You can fix/modify them yourself. Don't ask me for support. Thanks.

User avatar
stormchaser3000
Member
Posts: 422
Joined: Sun Oct 06, 2013 21:02
GitHub: stormchaser3000

by stormchaser3000 » Post

hi i had an idea for someone to replace the default ban with a message instead of not letting one connect. this mod should be able to go by username and ip so if someone gets a new ip and lags on with the same username when minetest.on_preregister i think it was they get a message saying that they are baned then have it record thir ip again so if they log on with a new account after that it gives the same message and if it is the same ip then have the mod send the message to the baned client's ip so that they can't get past. also so people know they were baned instead of making it look like the server shut down. this mod should replace the default ban command. and there should b a kick command so people can be kicked if they are griefing
Last edited by stormchaser3000 on Wed Jan 01, 2014 04:13, edited 1 time in total.

User avatar
Ferdi Napoli
Member
Posts: 14
Joined: Thu Jan 02, 2014 12:12

by Ferdi Napoli » Post

mesa biome and the stained clay

User avatar
Evergreen
Member
Posts: 2135
Joined: Sun Jan 06, 2013 01:22
GitHub: 4Evergreen4
IRC: EvergreenTree
In-game: Evergreen
Location: A forest in the midwest
Contact:

by Evergreen » Post

Hybrid Dog wrote:I still need help with my Rocket Bag.
Modifying the user's jump works but I can't change his/her/its gravity.

Code: Select all

local function lit_rocket(pos)
    minetest.add_particlespawner(
        3, --amount
        0.1, --time
        {x=pos.x-0.2, y=pos.y-0.2, z=pos.z-0.2}, --minpos
        {x=pos.x+0.2, y=pos.y+0.2, z=pos.z+0.2}, --maxpos
        {x=-0, y=-0, z=-0}, --minvel
        {x=0, y=0, z=0}, --maxvel
        {x=-0.5,y=5,z=-0.5}, --minacc
        {x=0.5,y=5,z=0.5}, --maxacc
        0.1, --minexptime
        1, --maxexptime
        2, --minsize
        8, --maxsize
        false, --collisiondetection
        "smoke_puff.png" --texture
    )
    minetest.sound_play("extrablocks_rbp_lit", {pos = pos,    gain = 0.2,    max_hear_distance = 3})
end
--http://www.freesound.org/people/roubignolle/sounds/36352/

local function off_rocket(pos)
    minetest.sound_play("extrablocks_rbp_off", {pos = pos,    gain = 0.2,    max_hear_distance = 3})
end

local function acc(p)
    if p:get_player_control()["sneak"] then
        return 0.1
    end
    return -1
end

minetest.register_craftitem("extrablocks:rocket_bag", {
    description = "Experimental Rocket Bag",
    inventory_image = "extrablocks_rbp.png",
    metadata = "off",
    on_use = function(itemstack, user)
        local item = itemstack:to_table()
        if item["metadata"] == "off" then
            local accel = acc(user)
            user:set_physics_override({gravity=accel})
            item["metadata"] = "on"
            lit_rocket(pos)
            minetest.chat_send_player(user:get_player_name(), accel)
        else
            user:set_physics_override({gravity=1})
            item["metadata"] = "off"
            off_rocket(pos)
        end
        itemstack:replace(item)
        return itemstack
    end,
})
I don't think set_physics_override supports pushing and pulling the player yet.
Back from the dead!

shaheerziya
Member
Posts: 51
Joined: Sat Dec 07, 2013 06:57
Location: Pakistan

by shaheerziya » Post

A Religious mad for building churches,Mosques etc.

User avatar
LuxAtheris
Member
Posts: 169
Joined: Fri Oct 25, 2013 00:54
Location: Aether

by LuxAtheris » Post

Just a few ideas:
[Privilege Area]
-Depends = Worldedit
-Players inside that area can interact but when they are out of that area they lose that privilege

sorry for my bad english
Believe you can and you’re halfway there.

Nore
Developer
Posts: 501
Joined: Wed Nov 28, 2012 11:35
GitHub: Ekdohibs

by Nore » Post

LuxAtheris wrote:Just a few ideas:
[Privilege Area]
-Depends = Worldedit
-Players inside that area can interact but when they are out of that area they lose that privilege

sorry for my bad english
rubenwardy made a mod that does this exactly...

User avatar
LuxAtheris
Member
Posts: 169
Joined: Fri Oct 25, 2013 00:54
Location: Aether

by LuxAtheris » Post

Nore wrote:
LuxAtheris wrote:Just a few ideas:
[Privilege Area]
-Depends = Worldedit
-Players inside that area can interact but when they are out of that area they lose that privilege

sorry for my bad english
rubenwardy made a mod that does this exactly...
yeah but its hard to understand
Believe you can and you’re halfway there.

User avatar
DeepGaze
Member
Posts: 332
Joined: Fri May 10, 2013 00:49
GitHub: DeepGaze
IRC: DeepGaze
In-game: DeepGaze
Location: Take your best guess

by DeepGaze » Post

is there an unprotected mod(the whole map is protected save the set location
there's no place like 127.0.0.1
The deep life Minetest text page
minetest cards

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

by Sokomine » Post

DeepGaze wrote: is there an unprotected mod(the whole map is protected save the set location
Can't remember offhand where I saw it. The areas mod might be best suited for that purpose. Adding some code that disallows players from interacting outside their owned area ought to be relatively easy.
A list of my mods can be found here.

User avatar
LuxAtheris
Member
Posts: 169
Joined: Fri Oct 25, 2013 00:54
Location: Aether

by LuxAtheris » Post

Believe you can and you’re halfway there.

Markov
New member
Posts: 6
Joined: Sat Jan 11, 2014 06:59
Location: Russia
Contact:

by Markov » Post

Can someone make a MAP?
It's realy hard to find your home in big world after you've gone far away...

User avatar
Pitriss
Member
Posts: 254
Joined: Mon Aug 05, 2013 17:09
GitHub: Pitriss
IRC: pitriss
In-game: pitriss
Location: Czech republic, Bohumin

by Pitriss » Post

Markov wrote:Can someone make a MAP?
It's realy hard to find your home in big world after you've gone far away...
Most of servers are using home and sethome functions..
I reject your reality and substitute my own. (A. Savage, Mythbusters)
I'm not modding and/or playing minetest anymore. All my mods were released under WTFPL. You can fix/modify them yourself. Don't ask me for support. Thanks.

shaheerziya
Member
Posts: 51
Joined: Sat Dec 07, 2013 06:57
Location: Pakistan

by shaheerziya » Post

It would be nice if there was a mod for more swords.(something like gloop test)
it would depend techic mod.
Swords would be able alloyed together in the alloy furnace.
Recipes:
(S=sword THS=The Lightened Sword )
Steel S x Stone S=The Evil Sword
Tadanite S x The Evil S=The Mega Evil Sword
Steel S x Copper S= Co-peel Sword
Diamond S x Mese S= Tadanite Sword
Steel S x Mese S= The Lightened Sword
THS S x Diamond Sword= Mega Sword
Mega Sword x THS= The Legendary Sword (and its textures (some) should be like this:http://www.google.com.pk/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&cad=rja&docid=N6kzj5IV3qFJkM&tbnid=y0hmrvjc2WCNWM:&ved=0CAQQjB0&url=http%3A%2F%2Flucienvox.deviantart.com%2Fart%2F100-Swords-61-80-279111959&ei=I5rSUp_-O4-Z0AX_jYHoAw&bvm=bv.59026428,d.d2k&psig=AFQjCNHoNpE7GThaeRv0mrlkBeGaQaD9iQ&ust=1389620009717546)

GreenTech
New member
Posts: 9
Joined: Wed Jan 08, 2014 16:31
Location: My Home in My World

by GreenTech » Post

Corners and elbows auto made like Minecraft.
I really think be faster, for me use a mod or something do that so I can build my Homes easyer.

I think we can use something like how PilzAdam Chest system works on, His Game he made.

User avatar
Evergreen
Member
Posts: 2135
Joined: Sun Jan 06, 2013 01:22
GitHub: 4Evergreen4
IRC: EvergreenTree
In-game: Evergreen
Location: A forest in the midwest
Contact:

by Evergreen » Post

GreenTech wrote:Corners and elbows auto made like Minecraft.
I really think be faster, for me use a mod or something do that so I can build my Homes easyer.

I think we can use something like how PilzAdam Chest system works on, His Game he made.
eh, what does "Corners and elbows auto made" mean?
Back from the dead!

User avatar
Gambit
Member
Posts: 453
Joined: Sat Oct 29, 2011 19:31
Location: United States

by Gambit » Post

Quicksand. We need it to make the desert a bit more adventurous/dangerous. You should be able to drown in it too. In some cases, the player could even sink through quicksand into a hidden cavern. From what I've can tell, there is no quicksand mod through out the entire forum; unless I've missed it.
Current Projects: MineToon | PixelBOX
Gambit's Checkmate Server - 43.65.296.232 - port: 30001

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

by philipbenr » Post

Gambit wrote:Quicksand. We need it to make the desert a bit more adventurous/dangerous. You should be able to drown in it too. In some cases, the player could even sink through quicksand into a hidden cavern. From what I've can tell, there is no quicksand mod through out the entire forum; unless I've missed it.
Quite right. I've browsed 80& of modding general.

User avatar
AMMOnym
Member
Posts: 682
Joined: Tue Sep 10, 2013 14:18
IRC: AMMOnym
In-game: AMMOnym
Location: Slovakia

by AMMOnym » Post

I working on pokemon mod hmm but battle system is too hard , what are u think about battle system like Five In Line. Pokemons are nodes and u can break them.Later u can craft it on Exp (five in line block) or catch it to pokeball.From 9 Exp u can craft Gold Exp . From 8 Gold Exp and one pokemon 1st evolve stage u can craft Evolved pokemon . From 9 Gold Exp u can craft one Diamond Exp and From 8 diamond Exp + pokemon 2nd evolve stage u craft evolved pokemon.In battle its simple as Five in line ( who have as first {("<4>"}}crosses in line, win.This mod will be for servers. Any picture : Image its very
Spoiler
Very very very very very very very Very very very very very very very Very very very very very very very Very very very very very very very Very very very very very very very Very very very very very very very Very very very very very very very Very very very very very very very
Work in proggress and that textures will be better XD on picture is : HootHoot Noctowl Squirtle Geodude Wartortle Pokeball Goldcross Cross Cross2 and Healing table.
Last edited by AMMOnym on Tue Jan 14, 2014 17:26, edited 1 time in total.

User avatar
AMMOnym
Member
Posts: 682
Joined: Tue Sep 10, 2013 14:18
IRC: AMMOnym
In-game: AMMOnym
Location: Slovakia

by AMMOnym » Post

Hybrid Dog wrote:Can I craft two pokemon to a bigger one?
sorry i dont understand ( Two "pikachu" to one big pikachu ?

User avatar
AMMOnym
Member
Posts: 682
Joined: Tue Sep 10, 2013 14:18
IRC: AMMOnym
In-game: AMMOnym
Location: Slovakia

by AMMOnym » Post

Hybrid Dog wrote:
AMMOnym wrote:
Hybrid Dog wrote:Can I craft two pokemon to a bigger one?
sorry i dont understand ( Two "pikachu" to one big pikachu ?
Yes, a big pikachu with 4 arms, 2 tails and 1 head with 2 faces, which is as strong as two pikachus and can shoot 2 lightnings at once.
XD that really exist in pokemon series ?

Post Reply

Who is online

Users browsing this forum: No registered users and 6 guests