[1.7.10][Thaumcraft Addon] Witching Gadgets

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
Update 1.1.0!
The great #NotAtPax-update! :D


Changelog:
- Lapis or other gems without affinities will no longer crash the cutting table
- Only the Terrestrial Focus of Hell applies warp on crafting now
- Stone Extruder outputs to inventories above and below him
- fixed Clusters crashing when looking up their name
- nerfed Stealth enchant. Each level now gives 10%
- made Primordial Tools and Armor auto-repair, albeit slower than normal Void metal gear
- Primordial Hammer only breaks a single block when sneaking
- Improved selection gui of the Primordial Gauntlet
- fixed area of effect on Ageing Stone
- only Thaumcraft nodes will be accepted into the gauntlet now. No more Ethereal Crystals from Thaumic Horizons!
- Void metal Blocks now work as beacon bases
- rewrote entire Coremod to use obfuscated names instead of SRG. Woops.
- listed all Potion+Enchantment IDs in the config
- fixed null pointer in the Oval gem of Ordo
- added documentation to the Abacus, about the infusion enchant calculation. Also improved the info given by the Abacus

Here is a direct link because everyone at Curse is probably at PAX, so the file is not approved yet
http://addons-origin.cursecdn.com/files/2229/795/WitchingGadgets-1.7.10-1.1.0.jar

Note: Just because your suggestions are not in this update does not mean I won't add it in a later version =P
 
Last edited:
There is a way how to move research and remove tabs via Modtweaker. If you want me to get rid of a few unnecessary ones (like Railcraft, AOBD) I can move their researches into the more fitting, vanilla TC4 tabs. Just tell me which tabs have only 1-10 researches and I'll edit them so that you can use all tabs :)
AOBD's Research, Railcraft's 2 crowbars, RotaryCraft's Bedrock Helmet of Revealing, and ChromatiCraft's Charged Aura Cleanser
(Edit: I posted this here because I would have asked if I should post it here or PM, which would have been a post in of itself, so I decided, screw it.)
 
AOBD's Research, Railcraft's 2 crowbars, RotaryCraft's Bedrock Helmet of Revealing, and ChromatiCraft's Charged Aura Cleanser
(Edit: I posted this here because I would have asked if I should post it here or PM, which would have been a post in of itself, so I decided, screw it.)
Alright...the first two could be done. However, I am not sure how @Reika feels if I move his researches into other tabs and remove his tabs concludingly.
 
Alright...the first two could be done. However, I am not sure how @Reika feels if I move his researches into other tabs and remove his tabs concludingly.
I am fine with it so long as I do not get blamed for any problems it may cause (such as conflicts).

That said, I would advise against moving the ChromatiCraft research, as it is getting more fleshed out.
 
  • Like
Reactions: Yulife
I am fine with it so long as I do not get blamed for any problems it may cause (such as conflicts).

That said, I would advise against moving the ChromatiCraft research, as it is getting more fleshed out.
Alright, will give a warning in the script itself, cheers.
 
Alright...the first two could be done. However, I am not sure how @Reika feels if I move his researches into other tabs and remove his tabs concludingly.
I was wondering how he would feel...

I am fine with it so long as I do not get blamed for any problems it may cause (such as conflicts).

That said, I would advise against moving the ChromatiCraft research, as it is getting more fleshed out.
I though all of this :P
/me go back to lurking and pack dev
 
This is probably something that should be thrown over at Azanor--a built-in method for handling extra tabs needs to be done somehow.

In anycase, "Extraneous Research" tab?

Sent from my SGH-T769 using Tapatalk 2
 
I was wondering how he would feel...


I though all of this :p
/me go back to lurking and pack dev
Alright, after some testing, here we go:
AOBD2:
Code:
#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 Hashtag before "mods.thaumcraft" if you have this metal in your pack - Copper
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURETIN", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Tin
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURESILVER", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Silver
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURELEAD", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Lead
 #Tab Removal
 mods.thaumcraft.Research.removeTab("AOBD");

Railcraft:

Code:
#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:
Code:
//WARNING: IF YOU USE THIS SCRIPT, DO NOT REPORT ISSUES REGARDING THE RESEARCH ON THE ROTARYCRAFT ISSUETRACKER

#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");
 
Last edited:
Alright, after some testing, here we go:
AOBD2:
Code:
#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 Hashtag before "mods.thaumcraft" if you have this metal in your pack - Copper
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURETIN", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Tin
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURESILVER", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Silver
  #mods.thaumcraft.Research.addPrereq("PUREORE", "PURELEAD", false); //Delete Hashtag before "mods.thaumcraft" if you have this metal in your pack - Lead
#Tab Removal
mods.thaumcraft.Research.removeTab("AOBD");
Railcraft:
Code:
#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:
Code:
//WARNING: IF YOU USE THIS SCRIPT, DO NOT REPORT ISSUES REGARDING THE RESEARCH

#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");
Danke
 
  • Like
Reactions: Yulife
Hello there, I recently tried installing your mod but when I do I get a crash mentioning the thaumcraft API, which doesn't make sense since I have the most recent version, anywho heres the crash report incase you wanna take a look http://pastebin.com/Z9Pm1EVe