scaffolding - say goodbye to dirt scaffolding

Post Reply
User avatar
Semmett9
Member
Posts: 157
Joined: Sun Oct 07, 2012 13:48
Location: Gallifrey
Contact:

scaffolding - say goodbye to dirt scaffolding

by Semmett9 » Post

scaffolding - say goodbye to dirt scaffolding

The Mod
Image
getting sick of using dirt as scaffolding? if so this is the mod for you.
This mod adds 2 blocks to minetest;

> Wooden scaffolding
> Iron scaffolding

The wooden scaffolding allows the player to go up and down like a ladder. also when you destroy the bottom block the whole thing falls down making it easy to remove.
The iron scaffolding allows the player to walk along in, and when you destroy one of the blocks the whole thing falls down.

Whats new


> blocks have textures a new texture on the top and bottom

Coming soon

> player dose not have to walk inside the block to go up it
> block that falls (like sand)

Download


Infinatum Minetest will be down on 04/11/14 due to server maintenance. we will be back up ASP

New Post Here
Last edited by Semmett9 on Sun Feb 22, 2015 20:47, edited 2 times in total.
Infinatum minetest has moved to Minetest.ThatRsPiServer.co.uk and now uses HTTPS

You might like to try some of my Mods and Texture packs.
Find all of the latest things on my website-Infinatum Minetest

User avatar
nextmissinglink
Member
Posts: 145
Joined: Mon Feb 04, 2013 16:43
Location: Uranus
Contact:

by nextmissinglink » Post

1: PICS DO NOT work
2: from what youve told me every thing is a block you should use selection box or something like that so steel scaffolding should be simialer to vanessas pipes and wooden scaffolding should be like snow but still good job
IF in doubt hit it with a hammer
This is a signature virus. Add me to your signature so that I can multiply id10t ERROR
do not abuse me i am 11 and i like hitting things with a hammer that may include you
this is ment to be secret http://forum.minetest.net/viewtopic.php ... 467#p86467

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

by rubenwardy » Post

Pics work for me
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Casimir
Member
Posts: 1207
Joined: Fri Aug 03, 2012 16:59
GitHub: CasimirKaPazi

by Casimir » Post

(A license would be good.)
I like that there are two different types, and the way they look.

Changed the code a bit:

Code: Select all

local function dig_up(pos, node, metadata, digger)
            if digger == nil then return end
            local np = {x = pos.x, y = pos.y + 1, z = pos.z}
            local nn = minetest.env:get_node(np)
            if nn.name == node.name then
                minetest.node_dig(np, nn, digger)
            end
        end

minetest.register_node("scaffolding:wood", {
        description = "scaffolding",
        drawtype = "nodebox",
        tiles = {"scaffolding_wood_top.png", "scaffolding_wood_top.png", "scaffolding_wood.png",
        "scaffolding_wood.png", "scaffolding_wood.png", "scaffolding_wood.png"},
        paramtype = "light",
        climbable = true,
        walkable = false,
        is_ground_content = true,
        after_dig_node = function(pos, node, metadata, digger)
            dig_up(pos, node, metadata, digger)
        end,
        groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
        sounds = default.node_sound_wood_defaults(),
    })
    
minetest.register_node("scaffolding:iron", {
        description = "scaffolding",
        drawtype = "nodebox",
        tiles = {"scaffolding_iron_top.png", "scaffolding_iron_top.png", "scaffolding_iron.png",
        "scaffolding_iron.png", "scaffolding_iron.png", "scaffolding_iron.png"},
        paramtype = "light",
        climbable = true,
        walkable = true,
        is_ground_content = true,
        after_dig_node = function(pos, node, metadata, digger)
            dig_up(pos, node, metadata, digger)
        end,
        groups = {snappy=2,cracky=3},
        sounds = default.node_sound_wood_defaults(),
    })

minetest.register_craft({
    output = 'scaffolding:wood 6',
    recipe = {
        {'default:wood', 'default:wood', 'default:wood'},
        {'default:stick', '', 'default:stick'},
        {'default:wood', 'default:wood', 'default:wood'},
    }
})

minetest.register_craft({
    output = 'scaffolding:iron 6',
    recipe = {
        {'default:wood', 'default:wood', 'default:wood'},
        {'default:steel_ingot', '', 'default:steel_ingot'},
        {'default:wood', 'default:wood', 'default:wood'},
    }
})
There is no need for facedir, you don't need to define a nodebox. I dropped the dependence on darkage and made the names more clear. Using only one function. No drop.

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

Aww, dangit, I was going to make a mod exactly like this. Oh well, great mod anyway. :P
Back from the dead!

User avatar
Semmett9
Member
Posts: 157
Joined: Sun Oct 07, 2012 13:48
Location: Gallifrey
Contact:

by Semmett9 » Post

nextmissinglink wrote;
1: PICS DO NOT work
2: from what youve told me every thing is a block you should use selection box or something like that so steel scaffolding should be simialer to vanessas pipes and wooden scaffolding should be like snow but still good job
It seems the the image only works in Firefox. hopefully its working now.
Casimir wrote;
(A license would be good.)
I like that there are two different types, and the way they look.There is no need for facedir, you don't need to define a nodebox. I dropped the dependence on darkage and made the names more clear. Using only one function. No drop.
thanks for the help i may use this as well as taking your advice. thanks again for the help
Last edited by Semmett9 on Tue May 21, 2013 08:50, edited 1 time in total.
Infinatum minetest has moved to Minetest.ThatRsPiServer.co.uk and now uses HTTPS

You might like to try some of my Mods and Texture packs.
Find all of the latest things on my website-Infinatum Minetest

User avatar
webdesigner97
Member
Posts: 1328
Joined: Mon Jul 30, 2012 19:16
GitHub: webD97
IRC: webdesigner97
In-game: webdesigner97
Location: Cologne, Germany
Contact:

by webdesigner97 » Post

Ah, this sounds interesting! I'll try it out!

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

by Sokomine » Post

Useful mod. It would be great if it where actually possible to download it (JavaScript + Flash needed -> no download possible).
A list of my mods can be found here.

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

Sokomine wrote:Useful mod. It would be great if it where actually possible to download it (JavaScript + Flash needed -> no download possible).
Here is the link from my dropbox. I think it will work for you. https://dl.dropboxusercontent.com/s/nx7 ... B_w1Q&dl=1
Back from the dead!

User avatar
Semmett9
Member
Posts: 157
Joined: Sun Oct 07, 2012 13:48
Location: Gallifrey
Contact:

by Semmett9 » Post

Sokomine wrote;
Useful mod. It would be great if it where actually possible to download it (JavaScript + Flash needed -> no download possible).
I don't understand what you mean by java and flash is needed for the download.
I use Firefox as my web browser and i have just disabled all of my add-ons and plugins and the download still worked. If the is a problem with the download link for anyone please report it.

Thanks

link to Firefox
http://www.mozilla.org/en-US/
Last edited by Semmett9 on Thu May 23, 2013 16:28, edited 1 time in total.
Infinatum minetest has moved to Minetest.ThatRsPiServer.co.uk and now uses HTTPS

You might like to try some of my Mods and Texture packs.
Find all of the latest things on my website-Infinatum Minetest

User avatar
addi
Member
Posts: 666
Joined: Thu Sep 20, 2012 03:16
GitHub: adrido
Location: Black-Forest, Germany

by addi » Post

Sokomine wrote:Useful mod. It would be great if it where actually possible to download it (JavaScript + Flash needed -> no download possible).
I Agree with disabling Flash
Flash is just a really big, much cpu using, unstable, and unsafe, plugin. (i have it disabled too)

But Javascript ist not Java! Javascript ist not Microsofts JScript
Javascript is nothing evil! (if you use a modern Browser)
why you have it disabled?

But in this point i agree: downloads and webpages must be accessible without Flash and Javascript

@ Semmett9 : Go in Firefox to Settings -> content -> Activate Javascript
Last edited by sfan5 on Sat May 25, 2013 15:29, edited 1 time in total.

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

by Sokomine » Post

addi wrote: Javascript is nothing evil! (if you use a modern Browser) why you have it disabled?
For what I want of web pages - information, text, sometimes images - JavaScript plain simply is not required and just a security hole. That download site most likely needs it to present advertisement. Advertisement, tracking sites (facebook, google analytics etc.), exitedly flashing content, menus made especially annoying - that's what JavaScript is used for. Since I want none of that, I disabled it. Sites that have good reason to use JavaScript (i.e. have to do calculations client-side) and an excellent reputation may get whitelisted in my NoScript config.
A list of my mods can be found here.

User avatar
Zeg9
Member
Posts: 608
Joined: Fri Sep 21, 2012 11:02
Location: France

by Zeg9 » Post

Javascript is nothing evil if it is used the way it is ment to. I don't think javascript was originally made for tracking people and advertising.
Also download should have a direct link so it can be downloaded from command line, most servers don't have a GUI.
edit: oh, and good mod. Forgot the essential ;)
Last edited by Zeg9 on Sat May 25, 2013 16:39, edited 1 time in total.
I made a few (a lot of?) mods for minetest: here is a list.
See also the MT-Faithful texture pack (work in progress).

User avatar
Semmett9
Member
Posts: 157
Joined: Sun Oct 07, 2012 13:48
Location: Gallifrey
Contact:

by Semmett9 » Post

if anyone dose not like add-fly or don't like the way add-fly uses flash or java just use the Direct link, which skips add-fly.

however you just have to wait 5 seconds, then you can skip the add. (the flash/java used dose not affect the download)

Direct
https://sites.google.com/site/infinatum ... caffolding
Last edited by Semmett9 on Fri May 31, 2013 09:08, edited 1 time in total.
Infinatum minetest has moved to Minetest.ThatRsPiServer.co.uk and now uses HTTPS

You might like to try some of my Mods and Texture packs.
Find all of the latest things on my website-Infinatum Minetest

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

by Jordach » Post

Semmett9 wrote:if anyone dose not like add-fly or don't like the way add-fly uses flash or java just use the Direct link, which skips add-fly.

however you just have to wait 5 seconds, then you can skip the add. (the flash/java used dose not affect the download)

Direct
https://sites.google.com/site/infinatum ... caffolding
Quite a few people have AdBlock you know, so AdFly and YOU lose money.

The destruction works really neatly.
Last edited by Jordach on Fri May 31, 2013 14:44, edited 1 time in total.

Tim790
Member
Posts: 124
Joined: Mon May 31, 2021 23:32
GitHub: Tim79000
In-game: Tim7
Location: Land of the Midnight Sun

Re: scaffolding - say goodbye to dirt scaffolding

by Tim790 » Post

Hehe, Minecraft.
Yeet.

Post Reply

Who is online

Users browsing this forum: No registered users and 30 guests