[Mod] Covers Mod [V1.0][covers]

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

[Mod] Covers Mod [V1.0][covers]

by Dan Duncombe » Tue Jun 25, 2013 20:13

This mod adds covers for several common blocks, as seen in Minecraft's Redpower 2 mod. This mod only adds covers- nothing else. Although it does add a saw, which is used to make the covers. Texture packs will change the cover textures.

License: WTFPL
Depends:Default
DOWNLOAD V2.0: See below.
Download V1.0: See below.

Changelog:
V1.0
Initial release, basically retextured signs.

V2.0
Made covers 3d, added a couple, THEY CANNOT BE PLACED ON FLOOR OR CRILING IN THIS VERSION!

Crafting
To make the saw handle:

Stick Stick Stick
Stick ----- -----
----- ------ -----

Blade:

Cobble Cobble Cobble
Stick Stick Stick
-------- --------- --------

Saw:
Handle Blade ----
-------- ------ ----
-------- ------ ----

Current Covers:
Image
Attachments
Covers Mod 2.0.zip
(2.42 KiB) Downloaded 161 times
Covers_Mod 1.zip
(2.41 KiB) Downloaded 88 times
Last edited by Dan Duncombe on Wed Jun 26, 2013 17:37, edited 1 time in total.
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
Mito551
Member
 
Posts: 1271
Joined: Sat Jun 16, 2012 15:03

by Mito551 » Tue Jun 25, 2013 20:17

screenshots please!
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Tue Jun 25, 2013 20:17

Oh god, This is so fucking useful from redpower.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Tue Jun 25, 2013 20:24

Just updated the textures for sandstone stuff.
I will not add screenshots until the mod is finished.
Mito551 wrote:screenshots please!
Last edited by Dan Duncombe on Tue Jun 25, 2013 21:07, edited 1 time in total.
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Tue Jun 25, 2013 21:59

Also, can someone tell me what is wrong with this? I just get a normal size box with sign-size selection box.
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node("covers:dirtpanel", {
    description = "Dirt Panel",
    drawtype = "nodelike",
    tiles = { 'default_dirt.png',
              'default_dirt.png',
              'default_dirt.png',
              'default_dirt.png',
              'default_dirt.png',
              'default_dirt.png' },             
    inventory_image = 'default_dirt.png',
    paramtype = "light",
    paramtype2 = "wallmounted",
    sunlight_propagates = false,
    walkable = true,
    selection_box = {
        type = "wallmounted",
        wallmounted = { -0.5, -0.25, -0.5, 0.5, -0.25, 0.5 },
    },
    node_box = {
        type = "wallmounted",
        wallmounted = { -0.5, -0.25, -0.5, 0.5, -0.25, 0.5 },
    },
    groups = {choppy=2,dig_immediate=2,attached_node=1},
})
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
VanessaE
Member
 
Posts: 3894
Joined: Sun Apr 01, 2012 12:38
GitHub: VanessaE
IRC: VanessaE
In-game: VanessaEzekowitz

by VanessaE » Tue Jun 25, 2013 22:15

drawtype="nodebox",
You might like some of my stuff:
Plantlife ~ More Trees ~ Home Decor ~ Pipeworks ~ HDX Textures (16-512px)
Tips (BTC): 13LdcdUFcNCFAm7HfvAXh5GHTjCnnQj6KE
 

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Tue Jun 25, 2013 22:16

Thankyou!
VanessaE wrote:drawtype="nodebox",
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Wed Jun 26, 2013 05:59

Realistically, you would make about 64 panels from a single node.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Wed Jun 26, 2013 06:23

I may change it to do that instead
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Wed Jun 26, 2013 14:58

Hell... How could I have forgotten gravel?! When I ran through this mod with a friend before I released it I had missed out wooden planks... I am a derp at remembering stuff. Will add gravel in V2.0.
EDIT: Added Gravel.
Hybrid Dog wrote:
Dan Duncombe wrote:- I'll say which in the comments.
gravel
Last edited by Dan Duncombe on Wed Jun 26, 2013 18:43, edited 1 time in total.
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
mimilus
Member
 
Posts: 75
Joined: Thu Mar 06, 2014 09:08
GitHub: mimilus
IRC: Mimilus

by mimilus » Thu Mar 20, 2014 15:36

Maybe an error line 17 in init.lua

tiles = { 'default:dirt.png' },

=>

tiles = { 'default_dirt.png' },


The modified version : https://forum.minetest.net/misc.php?action=pun_attachment&item=344&download=1

or

https://github.com/mimilus/covers
Attachments
covers-20-3-2014.tar.gz
(2.02 KiB) Downloaded 72 times
Last edited by mimilus on Sat Apr 05, 2014 23:50, edited 1 time in total.
minetest 0.4.9
Ubuntu 12.04
 

User avatar
Pimy
New member
 
Posts: 2
Joined: Sun May 22, 2016 01:01
IRC: Pimy
In-game: Pimy

Re: [Mod] Covers Mod [V1.0][covers]

by Pimy » Mon Jun 06, 2016 01:39

for:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
fixed = { -0.5, -0.5, 0.4375, 0.5, 0.5, 0.5 }


you could do this to make it thinner instead i think its better

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
fixed = {-0.5, -0.5, 0.496, 0.5, 0.5, 0.5}


i made my own cover mod i needed it to cover some blocks

also you can make a horizontal cover :D

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
fixed = {-0.5, -0.5, -0.5, 0.5, -0.496, 0.5}
 


Return to WIP Mods

Who is online

Users browsing this forum: No registered users and 24 guests

cron