[MOD 0.12.x] Treefarm REDUX (DISCONTINUED)

Looking for a mod? Have a review on a mod you'd like to share?
Rensiur
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Sat May 17, 2014 2:41 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by Rensiur »

Is it intended that the Treefarm accepts logistics bots but no construction bots now?

Dofolo
Burner Inserter
Burner Inserter
Posts: 12
Joined: Fri Feb 14, 2014 8:44 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by Dofolo »

Link to the new version? :)

Rensiur
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Sat May 17, 2014 2:41 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by Rensiur »

New Versions are always found via the links in the first Post ^^

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by drs9999 »

Rensiur wrote:New Versions are always found via the links in the first Post ^^
But I forgot to update the version number directly above the download-link :oops:
Rensiur wrote:Is it intended that the Treefarm accepts logistics bots but no construction bots now?
No it is not. I guess you did not noticed that I recommended to not connect/place the mk2 field inside any logistic network.
The field can store only 1 stacks of robots, so in your case this space is possibly occupied by some log robots.

Rensiur
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Sat May 17, 2014 2:41 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by Rensiur »

Ah ok, yeah in my try I first released a couple of Log Bots before I tried to give it Construction bots.

Rseding91
Factorio Staff
Factorio Staff
Posts: 13209
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by Rseding91 »

There's a bug with the harvesting code - it won't mark trees for deconstruction until you fill the storage to at least half of the requested amount.

I traced the bug to line 477 of the control.lua file: "if (requestStack ~= nil) and (woodCount <= (requestStack.count / 2)) then". It should be: "if (requestStack ~= nil) and (woodCount >= (requestStack.count / 2)) then". Note the ">" vs "<". It's checking if the storage is half full before it allows any trees to be marked for deconstruction where it should be the other way around.
If you want to get ahold of me I'm almost always on Discord.

User avatar
SuperSandro2000
Filter Inserter
Filter Inserter
Posts: 741
Joined: Sun Jan 12, 2014 3:54 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by SuperSandro2000 »

Rseding91 wrote:There's a bug with the harvesting code - it won't mark trees for deconstruction until you fill the storage to at least half of the requested amount.

I traced the bug to line 477 of the control.lua file: "if (requestStack ~= nil) and (woodCount <= (requestStack.count / 2)) then". It should be: "if (requestStack ~= nil) and (woodCount >= (requestStack.count / 2)) then". Note the ">" vs "<". It's checking if the storage is half full before it allows any trees to be marked for deconstruction where it should be the other way around.
Post in Bug Reports.

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.2

Post by drs9999 »

In the howTo-Thread drs9999 wrote: [...]
Step 3:
- set the wood threshold via the requestslot of the requester-chest
- if the amount of wood inside the chest reaches the set limit the field is deactivated,
which means no more harvesting
- the default value is 1k, so if the amount of raw-wood inside the chest is greater or equal 1k the field stops to assign new trees that are ready to harvest
- after a field was deactivated the field will be automatically reactivated if the amount of wood in the chest is lower than the half of the set limit
- to extract the wood (from the requester-chest), again use inserter + transport-belt
[...]
So, not a bug...

Rseding91
Factorio Staff
Factorio Staff
Posts: 13209
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.3

Post by Rseding91 »

SuperSandro2000 wrote: Post in Bug Reports.
Will do.

drs9999 wrote:
In the howTo-Thread drs9999 wrote: So, not a bug...
It currently does the opposite - it only begins harvesting after the chest is half full and doesn't stop until you remove the wood from the chest (below the half full point).
If you want to get ahold of me I'm almost always on Discord.

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by drs9999 »

Uploaded new version. I reverted all field mk2 related stuff back to pre factorio 0.10.0 state. In the end it created more problems than it solved. On the other hand that means all points mentioned here:
https://forums.factorio.com/forum/vie ... 814#p21665 apply (again).

That being said, I still do not recommend to use it, though, because of the given points.

P.S I also updated the add-ons

User avatar
SuperSandro2000
Filter Inserter
Filter Inserter
Posts: 741
Joined: Sun Jan 12, 2014 3:54 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by SuperSandro2000 »

I still don't like your AlienSeed version. I modified it a little bit and now I like it. Can I share that version with the community?

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by drs9999 »

SuperSandro2000 wrote:I still don't like your AlienSeed version. I modified it a little bit and now I like it. Can I share that version with the community?
Again, the purpose of this addon is that it serves as an example how the basic-addon structure has to look. It was NEVER designed/balanced for in-game use...

And yes of course you can share it, I mean that was the point for implementing the whole interface, that others can submit new seeds and stuff related to it. The alien-seed addon was ONLY developed to show how to use it.
It would be great if you create a new thread (in the treefarm sub-forum) in which you describe and publish your add-on.

User avatar
SuperSandro2000
Filter Inserter
Filter Inserter
Posts: 741
Joined: Sun Jan 12, 2014 3:54 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by SuperSandro2000 »

Ok, Thanks. I customize and optimize it a little bit more and than I want to publish it.

Vitduo
Fast Inserter
Fast Inserter
Posts: 182
Joined: Sun Nov 17, 2013 7:28 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by Vitduo »

If you not afraid of adfly, you can press here and get Russian translate for 1.1.4
PrEcessing is fixed, thanks to Natalia Soldatenko from vk.com

User avatar
SuperSandro2000
Filter Inserter
Filter Inserter
Posts: 741
Joined: Sun Jan 12, 2014 3:54 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by SuperSandro2000 »

drs can you please write in your treefarm post AlienSeed and not AlienPlant.

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by drs9999 »

Sorry for the late reply. Thanks for the translation it will be included in the next release.
SuperSandro2000 wrote:drs can you please write in your treefarm post AlienSeed and not AlienPlant.
done ;)

PrometheusX
Burner Inserter
Burner Inserter
Posts: 7
Joined: Sun Jun 08, 2014 12:14 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by PrometheusX »

Im new to the mod.

Waited for like 30 days/night for trees to pop out of the farm, but nothing happens. I put in coal to the farm to fuel it.

What I am doing wrong?

Colombo
Long Handed Inserter
Long Handed Inserter
Posts: 76
Joined: Mon May 19, 2014 11:25 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by Colombo »

You need to insert seeds there.

drs9999
Filter Inserter
Filter Inserter
Posts: 831
Joined: Wed Mar 06, 2013 11:16 pm
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by drs9999 »

Yes, you have to insert seeds/germlings.

Also have a look @ https://forums.factorio.com/forum/vie ... =44&t=4119

PrometheusX
Burner Inserter
Burner Inserter
Posts: 7
Joined: Sun Jun 08, 2014 12:14 am
Contact:

Re: [MOD 0.10.0] Treefarm v1.1.4

Post by PrometheusX »

Where can I find seeds?

PS: I followed your link - cant find my answer there =(

EDIT: Seed = Dünger I guess? In this case -> question answered! Thanks guys.

EDIT2: Seed = Samen (not Dünger). Finally!

Post Reply

Return to “Questions, reviews and ratings”