MineTweaker/ModTweaker - A help and suggestions thread.

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
Ok, so you you might be helping other people right now, but if not... I'm having trouble with Minetweaker and Modtweaker. This is just a placeholder recipe, but it's still not working. I'm using 1.7.10. I'm trying to use thermal expansion. My mods that are involved with the recipe:

FML v7.10.103.1352
COFHcore 3.0.2-262
TabulaRasa 1.0.1-3
Thermal Foundation 1.0.0-81
Thermal Dynamics 1.0.0RC8-105
Thermal Expansion 4.0.1-182

My code in Modtweaker.zs:

Code:
//Values
val wool = <minecraft:wool>;
val stone = <minecraft:stone>;
val diamond = <minecraft:diamond>;
val emerald = <minecraft:emerald>;
val lava = <liquid:lava>;
val liquidIron = <liquid:iron.molten>;
val liquidCoal = <liquid:coal>;
val coal = <minecraft:coal>;

mods.thermalexpansion.Pulverizer.addRecipe(100, emerald, diamond);
 

goreae

Ultimate Murderous Fiend
Nov 27, 2012
1,784
2,649
273
Raxacoricofallapatorius
Ok, so you you might be helping other people right now, but if not... I'm having trouble with Minetweaker and Modtweaker. This is just a placeholder recipe, but it's still not working. I'm using 1.7.10. I'm trying to use thermal expansion. My mods that are involved with the recipe:

FML v7.10.103.1352
COFHcore 3.0.2-262
TabulaRasa 1.0.1-3
Thermal Foundation 1.0.0-81
Thermal Dynamics 1.0.0RC8-105
Thermal Expansion 4.0.1-182

My code in Modtweaker.zs:

Code:
//Values
val wool = <minecraft:wool>;
val stone = <minecraft:stone>;
val diamond = <minecraft:diamond>;
val emerald = <minecraft:emerald>;
val lava = <liquid:lava>;
val liquidIron = <liquid:iron.molten>;
val liquidCoal = <liquid:coal>;
val coal = <minecraft:coal>;

mods.thermalexpansion.Pulverizer.addRecipe(100, emerald, diamond);
You need an import statement, like "import mods.thermalexpansion.Pulverizer;"
 

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
You need an import statement, like "import mods.thermalexpansion.Pulverizer;"

Thanks for the super quick reply! I have this now, but it still doesn't seem to be working:

Code:
import mods.thermalexpansion.Pulverizer;

//Values
val wool = <minecraft:wool>;
val stone = <minecraft:stone>;
val diamond = <minecraft:diamond>;
val emerald = <minecraft:emerald>;
val lava = <liquid:lava>;
val liquidIron = <liquid:iron.molten>;
val liquidCoal = <liquid:coal>;
val coal = <minecraft:coal>;

mods.thermalexpansion.Pulverizer.addRecipe(100, emerald, diamond);

EDIT: Would this be a problem with my mod versions? I'm not using the absolute latest because I want to include railcraft
 

goreae

Ultimate Murderous Fiend
Nov 27, 2012
1,784
2,649
273
Raxacoricofallapatorius
Thanks for the super quick reply! I have this now, but it still doesn't seem to be working:

Code:
import mods.thermalexpansion.Pulverizer;

//Values
val wool = <minecraft:wool>;
val stone = <minecraft:stone>;
val diamond = <minecraft:diamond>;
val emerald = <minecraft:emerald>;
val lava = <liquid:lava>;
val liquidIron = <liquid:iron.molten>;
val liquidCoal = <liquid:coal>;
val coal = <minecraft:coal>;

mods.thermalexpansion.Pulverizer.addRecipe(100, emerald, diamond);

EDIT: Would this be a problem with my mod versions? I'm not using the absolute latest because I want to include railcraft
what modtweaker version? What does the minetweaker.log have to say on the matter?
 

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
Sorry, I forgot to include the minetweaker version. Anyways its:
MineTweaker3-1.7.10-3.0.9C
ModTweaker 2-0.8.1

The log is here. It doesn't seem to contain much information... and also, the line 4 error was fixed by me, so I imagine it wouldn't be important:
ERROR: system: AutoSpawner is already defined in that package
ERROR: system: AutoSpawner is already defined in that package
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
ERROR: Error parsing Modtweaker.zs:4 -- ; expected
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
ERROR: Error parsing Modtweaker.zs:4 -- ; expected
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
 

Yulife

New Member
Jul 29, 2019
889
-4
0
Sorry, I forgot to include the minetweaker version. Anyways its:
MineTweaker3-1.7.10-3.0.9C
ModTweaker 2-0.8.1

The log is here. It doesn't seem to contain much information... and also, the line 4 error was fixed by me, so I imagine it wouldn't be important:
ERROR: system: AutoSpawner is already defined in that package
ERROR: system: AutoSpawner is already defined in that package
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
ERROR: Error parsing Modtweaker.zs:4 -- ; expected
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
ERROR: Error parsing Modtweaker.zs:4 -- ; expected
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
INFO: Removing minetweaker command mfr
INFO: Removing minetweaker command materials
INFO: Removing minetweaker command entities
INFO: Removing minetweaker command tooltips
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Adding minetweaker command tooltips
INFO: Adding minetweaker command entities
INFO: Adding minetweaker command materials
INFO: Adding minetweaker command mfr
Delete the import if you use mods.thermalexpansion.Pulveizer infront of your recipe execution.
 

Mrazomor

New Member
Jul 29, 2019
13
0
0
me again, got a question here:

mods.tconstruct.ToolStats.setStyle("Wood", "???");
mods.tconstruct.ToolStats.setAbility("Wood", "???");

^ copied from the modtweaker wiki, any idea what does this relate to? i thought it was connected to adding abilities to tconstruct tools like writable, thaumic, wither, slowness, etc (like the ones that metallurgy and thaumcraft materials have), but i cant get it to do anything no matter what i write in there.
 

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
Delete the import if you use mods.thermalexpansion.Pulveizer infront of your recipe execution.

So, like this?

Code:
//Values
val wool = <minecraft:wool>;
val stone = <minecraft:stone>;
val diamond = <minecraft:diamond>;
val emerald = <minecraft:emerald>;
val lava = <liquid:lava>;
val liquidIron = <liquid:iron.molten>;
val liquidCoal = <liquid:coal>;
val coal = <minecraft:coal>;

mods.thermalexpansion.Pulverizer.addRecipe(100, emerald, diamond);

Because that's the script I was having problems with in the first place...

EDIT: I think I may have some sort of incompatibility error. I'm going to check all my mods...
 
Last edited:

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
Ok, so I don't think another mod is causing it, but something besides my script is wrong. I copied this from the wiki, so it should work:
Code:
mods.thermalexpansion.Pulverizer.addRecipe(3000, <minecraft:flint_and_steel>, <minecraft:flint>, <minecraft:iron_ingot>, 80);

That's my entire minetweaker file. My mods are in the uploaded file. Is there any known broken versions I'm using?
 

Attachments

  • Capture.PNG
    Capture.PNG
    28 KB · Views: 48

Wolfie_Waffle

New Member
Jul 29, 2019
45
0
0
UPDATE: I fixed it! Turns out the version of minetweaker I was using didn't work. Here are the correct versions if someone is having the same problem:

MineTweaker3-1.7.10-3.0.9C
ModTweaker 2-0.7.5
 
  • Like
Reactions: Yulife

jdog1408

New Member
Jul 29, 2019
958
-11
0
me again, got a question here:

mods.tconstruct.ToolStats.setStyle("Wood", "???");
mods.tconstruct.ToolStats.setAbility("Wood", "???");

^ copied from the modtweaker wiki, any idea what does this relate to? i thought it was connected to adding abilities to tconstruct tools like writable, thaumic, wither, slowness, etc (like the ones that metallurgy and thaumcraft materials have), but i cant get it to do anything no matter what i write in there.
Metallurgy doesn't say that it has material abilities, but they still apply. I have a sword that causes poison and slowness to my enemies and then I regenerate health quickly. And I don't know what Style is, but Ability is for "Writable" "Reinforced" etc.
 

Mrazomor

New Member
Jul 29, 2019
13
0
0
Metallurgy doesn't say that it has material abilities, but they still apply. I have a sword that causes poison and slowness to my enemies and then I regenerate health quickly. And I don't know what Style is, but Ability is for "Writable" "Reinforced" etc.

there is another parameter for reinforced and stonebound/jagged share a different one, i tried adding Writable before and now again to toolstats.setability and it does nothing.
 

epidemia78

New Member
Jul 29, 2019
1,810
-4
0
I just wanted to post about some of the cool changes I made to enhance the way I like to play. I added an alternative thaumcraft crucible recipe for the top tier Thermal Foundation ingots. Bronze + potentia = Signalum, Platinum + alienis = enderium etc. I really like the crucible so I also made an early game option to craft ender pearls, it requires one diamond and the exact essentia that one would find on 8 pieces of obsidian. The cool thing about this recipe is that its actually harder with the upgraded crucible and by then you should be thinking about a spawner.

Ive added Galacticraft to my pack because I feel that is a much more interesting way to gate high end gear. Simply jetpacks and its incredibly boring and tedious recipes for example. Ive renamed Desh ore to be called Inobtanium. Ive also increased the fuel requirement for the rocket by 20. I havent even tried it yet but I have a feeling its not that much because I did the same for my Big reactor and its just as easy as ever.

Im thinking a recipe to mix fuel with XP juice to produce mob essence would be neat. I also want to add MoCreatures to my game, disable all the natural spawning of the annoying beasts and add recipes for the spawn eggs so I can build a zoo. The recipes for the eggs might require mass quantities of Growthcraft booze, because I want there to be an actual reason to make the stuff. Maybe leave in a few of the MoCreatures as natural spawns just to liven up the farming experience, make their drops as important as wool and leather.

Oh and I recently tweaked the MFR laser focuses so they dont pick up annoying garbage like railcraft sulfur and stuff it shouldnt like moon ore. This only accounts for a small part of what ive done and I am always making changes. Eventually I might make it a public pack, because I think these are good ideas, better than the average minetweaking Ive seen.
 
Last edited:
  • Like
Reactions: goreae and Padfoote

Mrazomor

New Member
Jul 29, 2019
13
0
0
so, can anyone explain to me how a script can work when i test it first, then i add some more scripts and they all work fine, and then suddenly, the one i added in a long time ago is not working and gives me that ERROR null thing. i copied the template from wiki so the error is not caused by that. i simply fail to see where the error is coming from. checked all the spelling multiple times so far and i have no clue still.

this is the script that causing the problem from what i have gathered.

mods.tconstruct.Casting.addBasinRecipe(<TwilightForest:tile.KnightmetalBlock>, <liquid:haderoth.molten> * 1296, null, false, 150);
mods.tconstruct.Casting.removeBasinRecipe(<Metallurgy:fantasy.block:10>);

EDIT

something about removing recipes from tconstruct basin/table is the problem from what i can gather.

EDIT

then the game crashes and everything is fine...
guess ignore this post entirely then...
 
Last edited:

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
Trying to remove the MFR Raw Rubber and Sulfur recipe from the induction smelter in TE4 but keep being told:
a method available but none matches the parameters (minetweaker.item.IItemStack)

using

mods.thermalexpansion.Smelter.removeRecipe(<MineFactoryReloaded:rubber.raw>*2);

Changing how you process rubber, so having this option remaining will slightly break what I'm trying to do.
 

Yulife

New Member
Jul 29, 2019
889
-4
0
Trying to remove the MFR Raw Rubber and Sulfur recipe from the induction smelter in TE4 but keep being told:
a method available but none matches the parameters (minetweaker.item.IItemStack)

using

mods.thermalexpansion.Smelter.removeRecipe(<MineFactoryReloaded:rubber.raw>*2);

Changing how you process rubber, so having this option remaining will slightly break what I'm trying to do.
Thermal Expansion removal is buggy. Did you try to restart the game?
 

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
Thermal Expansion removal is buggy. Did you try to restart the game?
I know TE is buggy and you don't see changes until you restart, but the actual script fails, so a restart won't help in this situation.
 

jdog1408

New Member
Jul 29, 2019
958
-11
0
I just discovered /mt reload yesterday, along with every other useful command
I am so dumb. How did I not know about this? So. Many. Re-launches. I always wondered how so many people used it. *Ultimate Facepalm*