Mod/config help

  • Tech Support section is for getting help with FTB related problems. If there's a repeatable issue that can be labeled as a bug, then please use the issue tracker for the pack or the app at GitHub issue trackers - If there's no repository for a pack that means that the pack is old and/or will not be updated. Bugs for older packs will not be fixed, unless they are critical.
  • 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

Robslash

New Member
Feb 25, 2020
2
1
4
I just made a new server for friends in my discord server using mods that I grabbed from stoneblock 2 and I have some kinks that I need to work through, but don't know how.
  1. In-game, you can smelt redstone dust and blocks into flux in flux networks. What allows this to be done, and what gives the flux items their emc value?
  2. When using emeralds to make armor/tools, the game defaults the results to the Tiny Progressions versions. My server is defaulting it to Actually Additions, how do i change this?
 

GamerwithnoGame

Over-Achiever
Jan 29, 2015
2,808
1,507
224
I just made a new server for friends in my discord server using mods that I grabbed from stoneblock 2 and I have some kinks that I need to work through, but don't know how.
  1. In-game, you can smelt redstone dust and blocks into flux in flux networks. What allows this to be done, and what gives the flux items their emc value?
  2. When using emeralds to make armor/tools, the game defaults the results to the Tiny Progressions versions. My server is defaulting it to Actually Additions, how do i change this?
OK, so EMC I'm not sure about unfortunately, but in terms of smelting are we talking about like in a normal furnace?

As for the Emeralds, am I correct in thinking you want the Tiny Progressions versions and not the Actually Additions ones? If so, about halfway down the Actually Additions config file there is a line:

Code:
  # This will disable the Emerald Boots. It will not be registered. [default: false]
  B:"Disable: Emerald Boots"=false

In your config, that needs to be changed to =true for all the armour pieces.
 
Last edited:

Robslash

New Member
Feb 25, 2020
2
1
4
I probably should have edited this thread earlier, I did find that line with the emerald gear, so that's done.

As for the smelting, the recipe is in any furnace, input redstone dust, result is flux dust. I looked in the config of flux networks, but saw nothing pertaining to furnaces even though the recipe did exist since I could do it in Stoneblock 2.
 
  • Like
Reactions: GamerwithnoGame

GamerwithnoGame

Over-Achiever
Jan 29, 2015
2,808
1,507
224
That sounds like a custom recipe; previously it was the case that redstone was thrown into fire to turn it into flux, and I think that was replaced but I'm not sure what with. You've got CraftTweaker in there right? There should be a way to add the recipe in theory.

If needs be you can create or modify an existing script so that it has the following:
Code:
furnace.addRecipe(<minecraft:golden_apple>, <minecraft:apple>);
Where the golden apple is the output and the apple is the input; you'll need the item IDs for minecraft redstone dust and flux networks flux; you can find these by holding the item in your hand and typingin the command line
Code:
/ct hand
 
Last edited: