Minetest Gameplay EP278 Completed Penthouse
Quick Glass Mod – rblok3
I referenced creating a quick glass block mod where the nodes may be cut in the Moreblocks circular saw mod. There may be a better way to write the code below. I am still learning how mods and graphics work in Minetest. The mod is free to do anything you want to it.
There are 5 files in the “rblok3” folder. One just needs to move the rblok3 folder to the mods folder in the game and activate it.
To get the mod go to , http://www.mediafire.com/file/igm4g9gf3arttvt/rblok3.zip/file
Here is the main code in the “init.lua”
minetest.register_node(“rblok3:glassblk”, {
description = “Tinted Glass”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass.png”},
paramtype = “light”,
paramtype2 = “facedir”,
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
minetest.register_node(“rblok3:glassblk1”, {
description = “Tinted Glass1”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass1.png”},
paramtype = “light”,
paramtype2 = “facedir”,
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
–stairsplus registration
if minetest.get_modpath(“moreblocks”) then
stairsplus:register_all(“rblok3”, “Tinted_Glass”, “rblok3:glassblk”, {
description = “Tinted_Glass”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass.png”},
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
stairsplus:register_all(“rblok3”, “Tinted_Glass1”, “rblok3:glassblk1”, {
description = “Tinted_Glass1”,
drawtype = “glasslike_framed_optional”,
tiles = {“rgs_black_glass1.png”},
groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3},
sounds = sound_glass,
use_texture_alpha = true,
})
end
Enjoy 🙂
Minetest Gameplay EP277 New Office Building
Today’s episode covers
A new Office building in the modern world
Mods List – https://wp.me/P8vQfT-6x
Minetest Game http://www.minetest.net/
Official Minetest Android app,
https://play.google.com/store/apps/details?id=net.minetest.minetest&hl=en
Minetest license information and description from the official Minetest site,
“Minetest is a near-infinite-world block sandbox game and a game engine, inspired by InfiniMiner, Minecraft, and the like.
Minetest is available natively for Windows, OS X, GNU/Linux, Android, and FreeBSD. It is Free/Libre and Open Source Software, released under the LGPL 2.1 or later.”
http://www.minetest.net/#about
Sounds and Music
Intro and Outro – Apple Loops
Intro Video – Intromate – IOS App Store
Check out my new website at https://rgsproductions2005.com
Thanks for Watching!