Minetweaker help

psp

New Member
Jul 29, 2019
617
-9
1
Yea, ive never used minetweaker before and i need some help. I read the lesson 1 and 2 tutorials on there website.
Im using the minetweaker3 1.6.4 3.0.3 version

OK, so what im trying to do is a simple i guess, all i want to do is remove the all crafting recipes for 36 items that break the game progression in my modpack.

So, after i downloaded and put minetweaker in the mod folders and ran mc i went into the script folder in the .minecraft folder and created a Test.zs folder (a text doccument) and in the text doccument i put

recipes.remove(<item.pickaxeCoral>);
and then i tried
recipes.remove(<item.CoralPickaxe>):


Can anyone help me? Thx ~psp
 

Rhenomaster

New Member
Jul 29, 2019
12
0
0
recipes.remove(<itemID>);
should work i think
if not could you tell me the mod that adds Coral Pickaxe?
 

psp

New Member
Jul 29, 2019
617
-9
1
OK i tried this and it doesn't work, (i got all of the these items from doing the command /minetweaker names)
Im going to try the item ids now but shouldn't this work?
recipes.remove(<item.CoralAxe>);
recipes.remove(<item.CoralBody>);
recipes.remove(<item.CoralBoots>);
recipes.remove(<item.CoralHelmet>);
recipes.remove(<item.CoralHoe>);
recipes.remove(<item.CoralPants>);
recipes.remove(<item.CoralPickaxe>);
recipes.remove(<item.CoralShovel>);
recipes.remove(<item.CoralSword>);

recipes.remove(<item.mnc_gAxe>);
recipes.remove(<item.mnc_gBoots>);
recipes.remove(<item.mnc_gHelmet>);
recipes.remove(<item.mnc_gHoe>);
recipes.remove(<item.mnc_gLeg>);
recipes.remove(<item.mnc_gPickaxe>);
recipes.remove(<item.mnc_gPlate>);
recipes.remove(<item.mnc_gShoevel>);
recipes.remove(<item.mnc_gSword>);

recipes.remove(<item.mnc_nBoots>);
recipes.remove(<item.mnc_nHelmet>);
recipes.remove(<item.mnc_nHoe>);
recipes.remove(<item.mnc_nLeg>);
recipes.remove(<item.mnc_nPickaxe>);
recipes.remove(<item.mnc_nPlate>);
recipes.remove(<item.mnc_nShoevel>);
recipes.remove(<item.mnc_nSword>);

recipes.remove(<item.railcraft.armor.steel.boots>);
recipes.remove(<item.railcraft.armor.steel.helmet>);
recipes.remove(<item.railcraft.armor.steel.legs>);
recipes.remove(<item.railcraft.armor.steel.plate>);
recipes.remove(<item.railcraft.tool.steel.axe>);
recipes.remove(<item.railcraft.tool.steel.hoe>);
recipes.remove(<item.railcraft.tool.steel.pickaxe>);
recipes.remove(<item.railcraft.tool.steel.shears>);
recipes.remove(<item.railcraft.tool.steel.shovel>);
recipes.remove(<item.railcraft.tool.steel.sword>);
 

psp

New Member
Jul 29, 2019
617
-9
1
item ids dont work either.
I know im just doing some stupid derpy thing that is messing everything up.

Also here is the minetweaker log

INFO: Adding command minetweaker
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Removing command minetweaker
INFO: Adding command minetweaker
INFO: Removing command minetweaker
INFO: Adding command minetweaker
 
Last edited:

psp

New Member
Jul 29, 2019
617
-9
1
Now i tried just having
railcraft
minetweaker
in my mods section and used this
recipes.remove(<item.railcraft.armor.steel.boots>);
recipes.remove(<item.railcraft.armor.steel.helmet>);
recipes.remove(<item.railcraft.armor.steel.legs>);
recipes.remove(<item.railcraft.armor.steel.plate>);
recipes.remove(<item.railcraft.tool.steel.axe>);
recipes.remove(<item.railcraft.tool.steel.hoe>);
recipes.remove(<item.railcraft.tool.steel.pickaxe>);
recipes.remove(<item.railcraft.tool.steel.shears>);
recipes.remove(<item.railcraft.tool.steel.shovel>);
recipes.remove(<item.railcraft.tool.steel.sword>);
and it doesn't work
 

psp

New Member
Jul 29, 2019
617
-9
1
I defined variables now and use the recipes.removedShaped it didn't work
recipes.removeShaped(<item.sb>);
recipes.removeShaped(<item.sh>);
recipes.removeShaped(<item.sl>);
recipes.removeShaped(<item.sp>);
recipes.removeShaped(<item.sa>);
recipes.removeShaped(<item.sshoe>);
recipes.removeShaped(<item.spick>);
recipes.removeShaped(<item.ss>);
recipes.removeShaped(<item.sshovel>);
recipes.removeShaped(<item.ssword>);

var sb = <item.railcraft.armor.steel.boots>;
var sh = <item.railcraft.armor.steel.helmet>;
var sl = <item.railcraft.armor.steel.legs>;
var sp = <item.railcraft.armor.steel.plate>;
var sa = <item.railcraft.tool.steel.axe>;
var sshoe = <item.railcraft.tool.steel.hoe>;
var spick = <item.railcraft.tool.steel.pickaxe>;
var ss = <item.railcraft.tool.steel.shears>;
var sshovel = <item.railcraft.tool.steel.shovel>;
var ssword = <item.railcraft.tool.steel.sword>;
pls help!
 

psp

New Member
Jul 29, 2019
617
-9
1
I know its something thats absurdly stupid that im doing.
im back to fuck this shit
 
Last edited:

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
Try downgrading to Version 2, see if that works better for you. V3 may still be quite buggy being a new release. Can't help about V3, haven't looked at it yet (V2 works fine for me at the mo :D)
 

pizzawolf14

New Member
Jul 29, 2019
566
0
0
Also, if you are not using item ID's, then you do not need the <> tags.

EDIT: I'm having a problem of my own and don't want to make a new thread about it.
I'm using the modtweaker addon by @joshie and I'm trying to add some blood magic recipes. My script is
mods.bloodmagic.alchemy.addRecipe(<23406>, <25356:15><23406:6><23406:6><23406:7><23406:7><25356:15>, 4, 10000);

The console is returning 2014-07-09 16:30:14 [SEVERE] [MineTweaker] /main.cfg:132 ) expected (Yes, that is line 132.)
 

Golrith

Over-Achiever
Trusted User
Nov 11, 2012
3,834
2,137
248
Comparing to the config in Arg Skies, shows you have [ ] missing around the crafting recipe and a ton of commas.

mods.bloodmagic.alchemy.addRecipe(SpawnSquid, [Fish, FishingRod, Fish], 2, 2);


So you want mods.bloodmagic.alchemy.addRecipe(<23406>, [<25356:15>,<23406:6>,<23406:6>,<23406:7>,<23406:7>,<25356:15>], 4, 10000);