MineTweaker/ModTweaker - A help and suggestions thread.

R

Ravin8901

Guest
Discovered the way to do what i asked, so ignore this...
 
Last edited:
I

itsjustaprankbro

Guest
I've tried to add more items to Ex Nihilo's compost-compatible list but they don't seem to want to work

//Composting
//InputStack, FillAmount, HexColor
mods.exnihilo.compost.addRecipe(<minecraft:hay_bale>, 0.72, "E3E162");
mods.exnihilo.compost.addRecipe(<minecraft:skull:2>, 0.50, "C45631" );
 

jordsta95

New Member
Jul 29, 2019
5,056
-4
1
I've tried to add more items to Ex Nihilo's compost-compatible list but they don't seem to want to work

//Composting
//InputStack, FillAmount, HexColor
mods.exnihilo.Composting.addRecipe(<minecraft:hay_bale>, 0.72, "E3E162");
mods.exnihilo.Composting.addRecipe(<minecraft:skull:2>, 0.50, "C45631" );
Coloured in red what needed to be changed
 
  • Like
Reactions: goreae

goreae

Ultimate Murderous Fiend
Nov 27, 2012
1,784
2,649
273
Raxacoricofallapatorius
What should I change it to?
Exactly what it said in jordsta's post?

To be perfectly clear, your scipt is this:
mods.exnihilo.compost.addRecipe(<minecraft:hay_bale>, 0.72, "E3E162");
mods.exnihilo.compost.addRecipe(<minecraft:skull:2>, 0.50, "C45631" );

However, "mods.exnihilo.compost" is not correct. "mods.exnihilo.Composting" is correct. So the corrected version of it would be

mods.exnihilo.Composting.addRecipe(<minecraft:hay_bale>, 0.72, "E3E162");
mods.exnihilo.Composting.addRecipe(<minecraft:skull:2>, 0.50, "C45631" );

Replace your current scipt with that and you should be golden.
 
I

itsjustaprankbro

Guest
Oh crap I didn't even notice that "compost" was changed mb
EDIT: It still won't add the two items to the barrel
 
Last edited:

jordsta95

New Member
Jul 29, 2019
5,056
-4
1
Forge: 10.13.4.1614
MC: 1.7.10
Modtweaker: 0.9.5
Minetweaker: 3.0.10B
Ex Nihilo: 1.38-52
Could you show us the minetweaker log, as I feel it may not be the composting recipe which is the issue. As none of the mod versions listed, should, have any sway in the results.
 
I

itsjustaprankbro

Guest
Could you show us the minetweaker log, as I feel it may not be the composting recipe which is the issue. As none of the mod versions listed, should, have any sway in the results.
I'm not entirely sure if these are the logs, but I can't find minetweaker.log in my directory:
ERROR: system: Crucible is already defined in that package
ERROR: system: Crop is already defined in that package
ERROR: system: AutoSpawner is already defined in that package
INFO: MineTweaker: Building registry
INFO: MineTweaker: Sucessfully built item registry
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command appeng
INFO: Adding minetweaker command chiselGroups
INFO: Adding minetweaker command chiselVariations
INFO: Adding minetweaker command exnihilo
INFO: Adding minetweaker command gases
INFO: Adding minetweaker command mekanism
INFO: Adding minetweaker command railcraft
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command modifiers
INFO: Adding minetweaker command tconstruct
INFO: Adding minetweaker command thermalexpansion
INFO: Adding minetweaker command mfr
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command appeng
INFO: Adding minetweaker command chiselGroups
INFO: Adding minetweaker command chiselVariations
INFO: Adding minetweaker command exnihilo
INFO: Adding minetweaker command gases
INFO: Adding minetweaker command mekanism
INFO: Adding minetweaker command railcraft
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command modifiers
INFO: Adding minetweaker command tconstruct
INFO: Adding minetweaker command thermalexpansion
 

jordsta95

New Member
Jul 29, 2019
5,056
-4
1
No, there should be a file called minetweaker.log (somewhere, I forget where - not at my PC right now, so can't check)

But the Minetweaker.log will generally say something like "loading script.zs" or something
 
I

itsjustaprankbro

Guest

RavynousHunter

New Member
Jul 29, 2019
2,784
-3
1
I spot a "minetweaker" text file in there, I think that's what they want. You seem to have "hide known extensions" on, which is probably why the .log is hard to find.
 
I

itsjustaprankbro

Guest
I spot a "minetweaker" text file in there, I think that's what they want. You seem to have "hide known extensions" on, which is probably why the .log is hard to find.
That file is what i said above, i honestly have no idea where that file went, or even if i have it
 

RavynousHunter

New Member
Jul 29, 2019
2,784
-3
1
Ohhhhhh. Huh...that's queer, then. Maybe do a blanket search in your /minecraft/ folder for anything ending in .log? Its kinda blunt-force, but it'd do the trick...though, you've prolly done that already.
 

jordsta95

New Member
Jul 29, 2019
5,056
-4
1
If that Minetweaker file is the one you copy/pasted from before, then it may be something in your scripts. A missing ; or misspelled var, etc.