[Mod] Home Mod [home_mod] (missing license)

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

[Mod] Home Mod [home_mod] (missing license)

by lmtea » Post

Hello all!

Finally, I have started the mod creation. This mod will be big, already it gives ability to craft flowers to petals, craft it to paint and colour different blocks. It depends on "Flowers" mod. I will continue work on it, so keep an eye on this).


You can also use chisel to clean mossle stone from moss and make it mossle again, or to remove paint from blocks (except wallpaper)!

Now I have a fireplace, that makes a light, it's very cosy!

Say no to junk! Use my dustbin and clean it forever with scoop!

There is glass pane, like in Minecraft!)

Try it, it's fun!

https://github.com/lmtea/home_mod

Image

Image

Image

Image

Crafting petal-

X -> O

X - flower, O - petal

can

X.X
X.X
XXX

X - steel ingot

paint

O
X

O - petal, X - can

crafting fireplace

XXX
XOX
XXX

X - cobble, O - torch

crafting dustbin

XXX
X.X
XXX

X - cactus

chisel

XXX
.X.
.O.

X - steel ingot, O - stick

scoop

XXX
XXX
.O.

X - steel ingot, O - stick

glass pane
...
XXX
XXX

X - glass

Maybe change glass panel if will cause conflicts

tarball https://github.com/lmtea/home_mod/raw/m ... mod.tar.gz

zipball https://github.com/lmtea/home_mod/raw/m ... me_mod.zip

But I may forget to update archives, so use this (bigger) https://github.com/lmtea/home_mod/zipball/master

Some kind of wiki coming soon!

// Sorry for my English, I am from Russia.
Last edited by lmtea on Mon Dec 19, 2011 06:11, edited 1 time in total.

User avatar
Staffs
Member
Posts: 329
Joined: Thu Aug 04, 2011 13:16

by Staffs » Post

Looks fun !
I love mods :D

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Thanks)

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Update!

Added chisel, that can clean cobble from moss, and added moss, which is from cobble.

Also, you can make mossle stone again.
Last edited by lmtea on Sun Dec 11, 2011 14:04, edited 1 time in total.

ironzorg
Member
Posts: 46
Joined: Tue Aug 23, 2011 06:34

by ironzorg » Post

Looks promising !

However, your main thread could use some more crafts recipes ;)

User avatar
Hackeridze
Member
Posts: 310
Joined: Thu Nov 03, 2011 13:35

by Hackeridze » Post

Пусть мох растет сам, но дооолго.
My game: RTMG
GENTOO USER

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

There already a mod called moss, for groving moss)

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

I will add coluring blocks

User avatar
Hackeridze
Member
Posts: 310
Joined: Thu Nov 03, 2011 13:35

by Hackeridze » Post

http://minetest.ru/blog/16.html
Цемент!!! Охеренно же!
Доработка: мб чегонить покрутить или разнообразить: при добавлении красителя в ведро с цементом, цемент меняет цвет и затвердевает.
may I speak Russian? Or somebody wanna see English translation?
Last edited by Hackeridze on Sun Dec 11, 2011 16:49, edited 1 time in total.
My game: RTMG
GENTOO USER

sfan5
Moderator
Posts: 4094
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5
Location: Germany

by sfan5 » Post

Please use English
Mods: Mesecons | WorldEdit | Nuke & Minetest builds for Windows (32-bit & 64-bit)

Jordach
Member
Posts: 4534
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach
Location: Blender Scene

by Jordach » Post

And, BTW, this is ENGLISH only.

User avatar
Hackeridze
Member
Posts: 310
Joined: Thu Nov 03, 2011 13:35

by Hackeridze » Post

Okay.
My game: RTMG
GENTOO USER

MarkTraceur
Member
Posts: 103
Joined: Sat Dec 03, 2011 05:41
Location: San Francisco, CA
Contact:

by MarkTraceur » Post

Awesome mod!

Would you be interested in moving it over to gitorious, where minetest modders are starting to gather?

https://gitorious.org/+minetest-modders

Let me know if you'd like to join the group!
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

I am hosting on github, but it will be good idea, maybe clone project where needed. But I'm not so cool with git, so tell me how, please.
Last edited by lmtea on Mon Dec 12, 2011 05:59, edited 1 time in total.

MarkTraceur
Member
Posts: 103
Joined: Sat Dec 03, 2011 05:41
Location: San Francisco, CA
Contact:

by MarkTraceur » Post

The only step required, once you made the project on gitorious, would be to add another remote.

Code: Select all

git remote add <repository name> <repository url>
Then, you can push to that remote with

Code: Select all

git push <repository name> master
Last edited by MarkTraceur on Mon Dec 12, 2011 06:32, edited 1 time in total.
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

randomproof
Member
Posts: 214
Joined: Thu Nov 17, 2011 06:31
Location: California, USA

by randomproof » Post

Small change that would allow wallpaper to stay on the wall when you paint it and be able to change already painted wallpaper to another color:

Code: Select all

minetest.register_craftitem("home_mod:rose_can", {
    image = "rose_can.png",
    on_place_on_ground = minetest.craftitem_place_item,
    on_use = function(item, player, pointed_thing)
        if pointed_thing.type == "node" then
            n = minetest.env:get_node(pointed_thing.under)
            if string.match(n.name, "home_mod:%a-_wallpaper") ~= nil then
                minetest.env:remove_node(pointed_thing)
                minetest.env:add_node(pointed_thing.under, {name="home_mod:red_wallpaper", param2=n.param2})
                player:add_to_inventory_later('craft "home_mod:can" 1')
                return true
            end
        end
        return false
    end,
})
Setting param2 for the new node to the old node's param2 is key.
Last edited by randomproof on Mon Dec 12, 2011 17:59, edited 1 time in total.

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Thanks, I'm using your patch now! It's awesome!

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Update!

Added fireplace

Added dustbin with scoop

Added glass pane

Rewritten can, adding empty can, now cans works more like buckets!

Wiki and clouring blocks soon!

lordawe
Member
Posts: 53
Joined: Sat Nov 12, 2011 11:13

by lordawe » Post

Cool mod!

I've made my mod that depends on yours. I can make colored signs and glowing colored signs.

bwog
Member
Posts: 283
Joined: Wed Nov 30, 2011 14:09
Location: United States
Contact:

by bwog » Post

How do you make paint, fireplaces, dustbins, and glass panes?

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Update!

Added blocks colouring!

Now chisel may remove paint from blocks (except wallpaper)

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Crafting petal-

X -> O

X - flower, O - petal

can

X.X
X.X
XXX

X - steel ingot

paint

O
X

O - petal, X - can

crafting fireplace

XXX
XOX
XXX

X - cobble, O - torch

crafting dustbin

XXX
X.X
XXX

X - cactus

chisel

XXX
.X.
.O.

X - steel ingot, O - stick

scoop

XXX
XXX
.O.

X - steel ingot, O - stick

glass pane
...
XXX
XXX

X - glass

Maybe change glass panel if will cause conflicts

User avatar
Hackeridze
Member
Posts: 310
Joined: Thu Nov 03, 2011 13:35

by Hackeridze » Post

My sugestion:
XXX
.X.
.O.

X - steel ingot, O - stick
IS NEED TO BE MINIMUM 3 or, maybe, 4 chisels! Because it's f*cking 4 iron ingots!
My game: RTMG
GENTOO USER

User avatar
Menche
Member
Posts: 1001
Joined: Sat Jul 02, 2011 00:43
IRC: Menchers
In-game: Menche
Location: An island in a lava lake.

by Menche » Post

When I paint a jungle tree trunk then chisel the paint off, it turns into a regular tree trunk.
An innocent kitten dies every time you top-post.

User avatar
lmtea
Member
Posts: 35
Joined: Tue Oct 18, 2011 13:40

by lmtea » Post

Hackeridze, chisel not disappears

Menche, will fix

Post Reply

Who is online

Users browsing this forum: No registered users and 3 guests