Tidy Research Tabs

Tidy Research Tabs

1.2k Downloads

Tidy Research Tabs

It can be quite incovenient for a user to be flooded by TC4 research tabs that are added by mods when they just add a single or a few research/es! Using this script the few researches will be moved to the fitting native Thaumcraft 4 tabs. Their prerequesits were allocated sensibly but make sure to check over them if you disagree with a prerequesit for a research. Use and modify the script however you want!

If you have a suggestion for a mod that should be modified to fit into the native TC4 research, make sure to tell me =)

Please comment about any problems about the script.

Requires Minetweaker 3 and Modtweaker. Incase you have issues, try updating both mods.

Currently supported:

  • AOBD
  • Railcraft
  • Rotarycraft
AOBD:

//Modifying AOBD research
 //Ore Purification
 mods.thaumcraft.Research.moveResearch("PUREORE", "ALCHEMY", -6, 7);
 mods.thaumcraft.Research.clearPrereqs("PUREORE");
 mods.thaumcraft.Research.addPrereq("PUREORE", "PUREGOLD", false);
  //mods.thaumcraft.Research.addPrereq("PUREORE", "PURECOPPER", false); //Delete "//" before "mods.thaumcraft" if you have this metal in your pack - Copper
  //mods.thaumcraft.Research.addPrereq("PUREORE", "PURETIN", false); //Delete "//" before "mods.thaumcraft" if you have this metal in your pack - Tin
  //mods.thaumcraft.Research.addPrereq("PUREORE", "PURESILVER", false); //Delete "//" before "mods.thaumcraft" if you have this metal in your pack - Silver
  //mods.thaumcraft.Research.addPrereq("PUREORE", "PURELEAD", false); //Delete "//" before "mods.thaumcraft" if you have this metal in your pack - Lead
 //Tab Removal
 mods.thaumcraft.Research.removeTab("AOBD");

Railcraft:

//Modifying Railcraft research
 //Thaumium Crowbar
 mods.thaumcraft.Research.moveResearch("RC_Crowbar", "ARTIFICE", 0, -4);
 mods.thaumcraft.Research.clearPrereqs("RC_Crowbar");
 mods.thaumcraft.Research.addPrereq("RC_Crowbar", "THAUMIUM", false);
 //Void metal Crowbar
 mods.thaumcraft.Research.moveResearch("RC_Crowbar_Void", "ELDRITCH", 2, -4);
 mods.thaumcraft.Research.clearPrereqs("RC_Crowbar_Void");
 mods.thaumcraft.Research.addPrereq("RC_Crowbar_Void", "VOIDMETAL", false);
 mods.thaumcraft.Research.addPrereq("RC_Crowbar_Void", "RC_Crowbar", false);
 //Tab Removal
 mods.thaumcraft.Research.removeTab("RAILCRAFT");

Rotarycraft:

(If you use this, please do not report any bugs to Reika that the research conflicts or any other problem regarding it)

//Modifying Rotarycraft research
 //Bedrock Helmet of Revealing
 mods.thaumcraft.Research.moveResearch("BEDREVEAL", "ARTIFICE", 4, -1);
 mods.thaumcraft.Research.clearPrereqs("BEDREVEAL");
 mods.thaumcraft.Research.addPrereq("BEDREVEAL", "GOGGLES", false);
 //Tab Removal
 mods.thaumcraft.Research.removeTab("rotarycraft");

Credits to Azanor for the Base Icon of the Project Icon! :)