[Modpack] Industry Pack [0.1.1][industry_pack]

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

[Modpack] Industry Pack [0.1.1][industry_pack]

by MarkTraceur » Post

Happy Sunday to all y'all!

Here's a pack I've just completed. There are a few things about setting it up, then I'll jump into actually playing with it.

To download, you have two options: Tarballs, or git.

For the git method, cd into wherever you want to put the mods (either a game/*/mods directory or the global mods directory). Then,

Code: Select all

git clone https://git.gitorious.org/marktraceur-minetest-mods/industry_pack.git
cd industry_pack
git submodule update --init
Once that's done, you should have everything you need. If you don't have it already, you'll need the farming mod from PilzAdam. You can also get it from my gitorious repository with the following (make sure you're back in the mods directory you want):

Code: Select all

git clone https://git.gitorious.org/marktraceur-minetest-mods/farming.git
If you want to update the mod from a git checkout, run

Code: Select all

git pull origin master
git submodule update --init
To download a versioned release tarball, go to http://marktraceur.info/minetest-mods/industry_pack/ and pick your poison.

Changelog

* 0.1.0 - Finished modpack, including transactors and factories and a buttload of useful craftitems.
* 0.1.1 - Bugfix, factories would only look for one of each thing in the recipe (major bug, please update)
* 0.1.2 - Bugfix, don't allow mining the factory if there are items in the inventory
* 0.1.3 - Bugfix, don't crash if a rubber collector is the target of the transactor.

gears

Gears just adds a craftitem to the game. It can be crafted like so:

Code: Select all

            | steel ingot |
---------------------------------------
steel ingot | steel ingot | steel ingot
---------------------------------------
            | steel ingot |
rubber

Rubber is a fork from PilzAdam's farming_plus mod that only adds rubber trees. You'll find them in nature sometimes (very rarely). Use a bucket and left-click to gather rubber. You'll need it for the conveyor mod. The rubber tree's leaves will also decay into rubber tree saplings.

rubber_collector

This is a convenience thing that makes it easier to harvest rubber. You put the node somewhere, then you click on it with a bucket of rubber to deposit. The collector has a capacity that's identical to the chest, except that you can't access the inventory. Use a transactor (below) to get rubber_base out of the collector and into a chest or furnace.

Craft like so:

Code: Select all

    wood     |     wood     |     wood
------------------------------------------
rubber sheet |              | rubber sheet
------------------------------------------
rubber sheet | rubber sheet | rubber sheet
rubber_sheets

Rubber sheets are the intermediary step between rubber buckets and conveyor belts (below). Craft a bucket of rubber to get rubber base, then cook it in a furnace to get a rubber sheet.

conveyor

Conveyor belts, a new craftitem. Craft like so:

Code: Select all

rubber sheet | rubber sheet | rubber sheet
------------------------------------------
    gear     |     gear     |     gear
------------------------------------------
rubber sheet | rubber sheet | rubber sheet
mecharm

Mechanical arms, another new craftitem. Craft like so:

Code: Select all

    gear    | steel ingot | steel ingot
---------------------------------------
steel ingot |             |
---------------------------------------
    gear    |             |
transactor

A node that moves things from one node to another. Useful for assembly lines, auto-smelting, and distribution lines.

Craft like so:

Code: Select all

mechanical arm |               | mechanical arm
-----------------------------------------------
 conveyor belt | conveyor belt | conveyor belt
-----------------------------------------------
  steel ingot  |               | steel ingot
Use it by putting it between two inventory-type nodes. Chests and furnaces are the only supported things right now (and no locked chests, jointly due to laziness and retrospective security concerns), but that can be very useful.

If a chest is the source, everything is fair game. It will start at the bottom right and, until it finds something, will move left and up. The first thing it finds that is wanted by the destination node will be moved.

If a furnace is the source, only the destination inventory (i.e., the result of a smelting action) is moveable. Nothing in the fuel or src slots will be moved.

If a chest is the destination, then anything it can grab from the source will be moved.

If a furnace is the destination, fuel-type things (even if they're otherwise smeltable) will be moved into the fuel slot, and cookable things will be moved into the source slot. If neither cookable nor fuel-type items are available, no move occurs.

dumbwaiter

A craftitem used in crafting factories. Craft recipe:

Code: Select all

steel ingot |     gear    | steel ingot
---------------------------------------
steel ingot | steel ingot | steel ingot
---------------------------------------
steel ingot |     gear    | steel ingot
hopper

A craftitem used in crafting factories. Craft recipe:

Code: Select all

 steel ingot | rubber sheet |  steel ingot
------------------------------------------
 steel ingot | rubber sheet |  steel ingot
------------------------------------------
 steel ingot |  steel ingot |  steel ingot
handtools

Collection of useful craftitems, used in crafting a toolbox. Recipes:

screwdriver:

Code: Select all

steel ingot
------------
steel ingot
------------
rubber sheet
hammer:

Code: Select all

steel ingot |             |
---------------------------------------
            |    stick    |
---------------------------------------
            |             |    stick
saw:

Code: Select all

            | steel ingot |
---------------------------------------
    stick   | steel ingot | steel ingot
---------------------------------------
            | steel ingot |
toolbox

Craftitem, used in crafting craft performers. Craft recipe:

Code: Select all

steel ingot | steel ingot | steel ingot
---------------------------------------
screwdriver |   hammer    |     saw
---------------------------------------
steel ingot | steel ingot | steel ingot
factory

A node that auto-crafts based on a recipe, input items, and a fuel source. Recipes:

craft performer (a craftitem that will do the work in the factory):

Code: Select all

  steel ingot  |   steel ingot  |   steel ingot
-------------------------------------------------
mechanical arm |    toolbox     | mechanical arm
factory:

Code: Select all

craft performer | craft performer | craft performer
---------------------------------------------------
     hopper     |                 |     hopper
---------------------------------------------------
   transactor   |   dumbwaiter    |   transactor
Conclusion

Hopefully this is useful to someone, I spent enough time on it :)

Oh, and please, if you're good with textures, consider contributing CC-BY-SA textures for these things. I'm not an artist, clearly.

Thanks!
Last edited by MarkTraceur on Sun Dec 09, 2012 22:43, edited 1 time in total.
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

klunk

by klunk » Post

Hu ?? Gears, belts, arms...
That's amazing !
I hope you will be successfull !

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

by MarkTraceur » Post

Thanks!

Updating the post for the latest versions.
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

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

by MarkTraceur » Post

Note, some updates went through and now the transactors should work properly with furnaces and in all directions. I'll test more fully in the future, too, as well as come up with some more generic interfaces for the repetitive stuff (so expect to see a commit with -200 +20 or something insane).
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

markveidemanis
Member
Posts: 211
Joined: Thu Sep 27, 2012 15:41

by markveidemanis » Post

please post download, git thing too complex
just post download, make simpler
BitCoin: 1Eq4arvykGNa1YC2DbJpWcwGfMvtFGjAoR

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

by qwrwed » Post

markveidemanis wrote:please post download, git thing too complex
just post download, make simpler
+1
I couldn't find out how to download it normally until I looked it up, it would be easier to simply post a download link for those without git.
EDIT: It turns out that all of the folders are empty. Time to download them all the hard way...
EDIT2: Nope, there's no way to get the init.luas and textures of the mod, I give up.
DL please.
Last edited by qwrwed on Thu Nov 21, 2013 20:03, edited 1 time in total.

markveidemanis
Member
Posts: 211
Joined: Thu Sep 27, 2012 15:41

by markveidemanis » Post

shame no download as well, looks so amazing
BitCoin: 1Eq4arvykGNa1YC2DbJpWcwGfMvtFGjAoR

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

by MarkTraceur » Post

I'm not yet ready to release a download, but I will work on it after I write and release the factory mod as well.

Until then, your best bet is to A) download each mod separately or B) download it using git. I've given ample directions for B, and I can add the instructions for A later.

If you want to download it using git, git is available in distribution repositories very easily, and available for non-free OSes as well (though I can't help you find how to install it). I would strongly suggest installing it, as it's useful for much more than just distributing software--versioning config files is a very good way to make sure you never make a fatal mistake in a config step :)

Sorry I haven't served your needs yet, but it should be ready soon.
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

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

Some early .zip package for people who want to try it now without installing Git: http://ompldr.org/vZ2U4eQ/industry-modpack.zip

User avatar
kaeza
Moderator
Posts: 2162
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza
Location: Montevideo, Uruguay
Contact:

by kaeza » Post

Awesome mod! Now I won't have to craft tons of things myself :)
+100 my friend.
Last edited by kaeza on Mon Dec 03, 2012 00:14, edited 1 time in total.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal

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

by qwrwed » Post

Very useful mod, but when placing a transactor between a rubber collector and a chest, (after punching the collector with a stack of buckets) I got this error:

Code: Select all

16:17:02: ERROR[main]: ServerError: LuaError: error: ...netest\industry_pack\transactor/rubber_collector.lua:23: bad argument #1 to 'ipairs' (table expected, got nil)
with 0.4.4.

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

by MarkTraceur » Post

Thanks, will look into it soon. Sorry it caused you trouble!
Mods: https://gitorious.org/marktraceur-minetest-mods
IRC: marktraceur on freenode

babyface1031
Member
Posts: 51
Joined: Sat Sep 29, 2012 20:20

by babyface1031 » Post

can an electric furnace from technic be used or does it have to be a coal furnace

User avatar
sfan5-bot
Member
Posts: 34
Joined: Thu Mar 28, 2013 11:19
Location: /usr/bin/python2.7

by sfan5-bot » Post

[EE] No License found
[EE] No Dependencies found


Please fix these Mistakes and report this post, a moderator will delete it
If you believe I have made a Mistake contact sfan5

User avatar
balthazariv
Member
Posts: 214
Joined: Mon Apr 07, 2014 15:48
Contact:

Re: [Modpack] Industry Pack 0.1.1

by balthazariv » Post

Hello,

I've just rename the "factory" folder of this modpack to "factories" to use it along with the mod [Mod] Factory [0.5.0.1] [factory]

If you want to download it :
[Modpack] Industry Pack 0.1.1 changed

Post Reply

Who is online

Users browsing this forum: No registered users and 41 guests