[Mod] More Blocks [moreblocks]

sjts95
Member
Posts: 13
Joined: Sat Jul 14, 2012 22:36

by sjts95 » Post

how can i get this downloaded i tried but it didnt work on the game

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

by Topywo » Post

Did the download not work?

If it worked, make sure the map/directory/folder "moreblocks" is in the /mods/minetest folder. It will look (something) like this

Before extracting: /home/TOPYWO/celeron55-minetest-02fb912-Test 4/mods/minetest

After extracting: /home/TOPYWO/celeron55-minetest-02fb912-Test 4/mods/minetest/moreblocks

Under moreblocks are:
a textures map, containing the .png files
a depends.txt file
a init.lua file

I downloaded it and it worked fine.
Good luck!

sjts95
Member
Posts: 13
Joined: Sat Jul 14, 2012 22:36

by sjts95 » Post

thx

User avatar
Calinou
Moderator
Posts: 3169
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou
Location: Troyes, France
Contact:

by Calinou » Post

New version with better textures.

User avatar
Calinou
Moderator
Posts: 3169
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou
Location: Troyes, France
Contact:

by Calinou » Post

Now with stonebrick/stonesquare/jungle wood/circle stone brick/iron stone brick/planktstone stairs, slabs and panels!

Ancien
Member
Posts: 21
Joined: Fri Jul 06, 2012 09:05

by Ancien » Post

Good job !

MsDbird
Member
Posts: 11
Joined: Sat Aug 04, 2012 01:44

by MsDbird » Post

Awesome mod :D

User avatar
1221jr
Member
Posts: 29
Joined: Wed Aug 08, 2012 19:13

by 1221jr » Post

how do you breake coal cheaker

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

by rubenwardy » Post

Hit with pick axe? You may need a certain level of pickaxe, eg Steel or Mese
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Calinou
Moderator
Posts: 3169
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou
Location: Troyes, France
Contact:

by Calinou » Post

Just use any kind of pickaxe. ;)

User avatar
1221jr
Member
Posts: 29
Joined: Wed Aug 08, 2012 19:13

by 1221jr » Post

i tryed with cryo iron and mase but it didn't work im on the hunger games server

pagliaccio
Member
Posts: 65
Joined: Tue Jul 31, 2012 07:38
Location: italy

by pagliaccio » Post

you can add a stairs craft for the block?

m=material
m
m m
m m m
output step
and other craft...
m m m
m m
m
m
m

User avatar
Calinou
Moderator
Posts: 3169
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou
Location: Troyes, France
Contact:

by Calinou » Post

pagliaccio wrote:you can add a stairs craft for the block?

m=material
m
m m
m m m
output step
and other craft...
m m m
m m
m
m
m
What do you mean? You can craft Stone Brick, Jungle Wood, Stonesquare and Split Stonesquare slabs/stairs/panels already.

User avatar
alexcraft
Member
Posts: 66
Joined: Thu Sep 06, 2012 13:12
Location: minecraft

by alexcraft » Post

if i install the last version all blocks all unknown but the older version worked for me give the older version link please

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

by Topywo » Post

alexcraft wrote:if i install the last version all blocks all unknown but the older version worked for me give the older version link please
Could it be that you first deleted the old moreblocks mod and then didn't install the new moreblocks in the mods/minetest directory?

Check: -- try to make a stonesquare (4)
cobble, cobble
cobble, cobble

If it makes a unknown item you installed the new moreblocks in the right folder. If it doesn't make a thing, you didn't install it in the mods/minetest directory.

User avatar
alexcraft
Member
Posts: 66
Joined: Thu Sep 06, 2012 13:12
Location: minecraft

by alexcraft » Post

it dont works glow glass vines stone squares more ....

User avatar
qwrwed
Member
Posts: 326
Joined: Sun Jul 22, 2012 20:56
In-game: qwrwed or Nitro

by qwrwed » Post

Can you put a link to the GitHub repo in the first post?

BoomboomcreeperII
New member
Posts: 4
Joined: Sat Oct 13, 2012 08:46

by BoomboomcreeperII » Post

can you put all of the versions's link because the new dosent work but the older work
so you need to put like this
v1: link
v2: link
v3: link
..............................
Last edited by BoomboomcreeperII on Sat Oct 13, 2012 14:00, edited 1 time in total.

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

by Topywo » Post

To get all the recipes working (until a new update) you must (after extracting/unzipping) open the init.lua.

Search on the word "shapeless"

First hit is the cleanglass:

minetest.register_craft({
output = "moreblocks:cleanglass 1",
type = "shapeless",
recipe = {"moreblocks:sweeper", "glass"},
})

To get it working you can do 2 things:

1. take out type and place 2x {}
minetest.register_craft({
output = "moreblocks:cleanglass 1",
--type = "shapeless",
recipe = {{"moreblocks:sweeper"}, {"glass"},}
})

or

2. Put the mod name before the item name:
minetest.register_craft({
output = "moreblocks:cleanglass 1",
type = "shapeless",
recipe = {"moreblocks:sweeper", "default:glass"},
})

You need to do this (unless playing creative or using /giveme) for the cleanglass, glowglass, superglowglass, coalstone and ironstone recipes. Those are the five 'shapeless type" recipes.

Since all the ingredients (except the one that already has the mod name - moreblocks:sweeper) are from the default mod, I recommend the second method (so make them default:glass, default:torch, default:lump_of_coal, default:stone and default:lump_of_iron).

Don't forget to restart your minetest game after changing the init.lua

Edit: typo
Last edited by Topywo on Sat Oct 13, 2012 18:53, edited 1 time in total.

User avatar
GloopMaster
Member
Posts: 213
Joined: Wed Aug 01, 2012 18:03
Location: http://minetest.net/forum/

by GloopMaster » Post

Topywo: not neccessary, shapeless recipes work, and aliases are at the top of the init.
Meow.

That is all.

mike
Member
Posts: 46
Joined: Wed Sep 26, 2012 01:15

by mike » Post

Feature Suggestion:

Add ini to (partly) disable the multi-node-stairs thing.

Mossycobble Stairs are fine, but all the other types flood creative inventory.

User avatar
GloopMaster
Member
Posts: 213
Joined: Wed Aug 01, 2012 18:03
Location: http://minetest.net/forum/

by GloopMaster » Post

Isnt that a good thing? More nodes == more fun! :D
Meow.

That is all.

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

by Sokomine » Post

Only to a degree. It might be faster if the texture_atlas can remain enabled. Loading the nodes at startup costs time (even in singleplayer). A (global) way to disable parts of a mod temporarily (without having to edit it all the time) might be practical. This applies to all mods.
A list of my mods can be found here.

User avatar
GloopMaster
Member
Posts: 213
Joined: Wed Aug 01, 2012 18:03
Location: http://minetest.net/forum/

by GloopMaster » Post

*cough* singleplayer is a hacky singleplayer *cough*
Meow.

That is all.

OryHara
Member
Posts: 25
Joined: Sun May 06, 2012 04:20

by OryHara » Post

lolwut?

singleplayer is a hacky singleplayer?

Post Reply

Who is online

Users browsing this forum: No registered users and 13 guests