• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Is there a mod to increase honey found in trees

I can go through 500 tress ans never get a jar of honey. It seems so much worse that the eggs in nests.

Is there a mod or simple script to increase this?

Thank you.

Oh, and Happy New Year.

 
Last edited by a moderator:
Trees don't drop honey unless you found the right book.

Tree stumps in the wild drop at a 20% rate

Tree stumps as part of POIs drop honey at a 40% rate.

If you still want to change it though,

in the blocks xml file, set up a modlet that includes the following two lines

<set xpath="/blocks/block[@name='treeStump']/drop[@name='foodHoney']/@prob">X</set>

<set xpath="/blocks/block[@name='treeStumpPOI']/drop[@name='foodHoney']/@prob">X</set>




where X is the probability of the drop you want (from 0 to 1).  Currently 0.2 and 0.4 are the values

 
IF you want to change the probabilities in trees overall (after finding the wasteland treasures book), you would use the following code.  Right now X is set at 0.05 on vanilla.

Code:
[COLOR=#e8bd89]<set[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]xpath[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"/blocks/block[@name='treeMaster']/drop[@name='foodHoney']/@prob"[/COLOR][COLOR=#e8bd89]>[/COLOR][COLOR=#ebe7e3]X[/COLOR][COLOR=#e8bd89]</set>[/COLOR]
 
Trees don't drop honey unless you found the right book.

Tree stumps in the wild drop at a 20% rate

Tree stumps as part of POIs drop honey at a 40% rate.

If you still want to change it though,

in the blocks xml file, set up a modlet that includes the following two lines

<set xpath="/blocks/block[@name='treeStump']/drop[@name='foodHoney']/@prob">X</set>

<set xpath="/blocks/block[@name='treeStumpPOI']/drop[@name='foodHoney']/@prob">X</set>




where X is the probability of the drop you want (from 0 to 1).  Currently 0.2 and 0.4 are the values
Well I found the book a while ago and once I went out looking for honey it seemed that out of 50 trees I get one honey (more or less - mainly less). Oddly enough after posting this, I went out and got 3 honeys at around 30 trees, which it should be.

Its good to know that stumps produce more honey and POI stumps even more honey. If would have known this earlier I would not have wasted a thread on it. Out of my impatience and impulsiveness I start a thread right after a simple problem comes up. I just have to be more patient I guess.

Again I thank you.

 
Back
Top