Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestions & Compatablity? #1

Open
InkDragon opened this issue Jun 22, 2017 · 3 comments
Open

Suggestions & Compatablity? #1

InkDragon opened this issue Jun 22, 2017 · 3 comments

Comments

@InkDragon
Copy link

I'd love to see a block that can be used with horses to generate RF, be it a treadmill or otherwise.

Also would be amazing if there was compatibility for Wings Horns & Hooves, the Ultimate Unicorn Mod if there isn't already.

@GoryMoon
Copy link
Owner

Have been thinking about a RF generation, just thinking on how it would work.
It already works with Wings Horns & Hooves, the Ultimate Unicorn Mod, if there is an animal you want to add you can add them in the config, not all animals work, only leadable

@royalcw
Copy link

royalcw commented Nov 10, 2017

Would like to see example crafttweaker scripts in the wiki for each available script. I'm trying to add iron ore and keep getting errors. Examples would be nice in that they show what format each part should be. This is what I was trying: mods.horsepower.Grindstone.add(ore:oreIron, ore:dustIron, 80); but getting errors.

Thank you @GoryMoon for the correction. Below are the lines I added for my CraftTweaker file for Horse Power. Maybe you can add these as examples to the wiki or make a repository that others can see. Of note: The CraftTweaker standard format seems to be (output, input). For your grindstone, the order is (Input, Output). Also, what is the standard grind time you programmed in for the default recipes...80 seemed long to me. I am trying 40 for the soft metals (located below), and it feels more natural. Long enough to make me want to upgrade my stuff but not too long to be annoying.

// Hand Grinder to Stage 2
recipes.remove(horsepower:hand_grindstone);
mods.recipestages.Recipes.addShaped("two", horsepower:hand_grindstone,[[null, null, calculator:crankhandle],[extrautils2:compressedcobblestone:1, teslacorelib:gear_stone, extrautils2:compressedcobblestone:1],[extrautils2:compressedcobblestone:1, minecraft:flint, extrautils2:compressedcobblestone:1]]);
horsepower:hand_grindstone.addTooltip(format.gray("(Unlocks in the Copper Age)"));

// Horse Powered Grinder to Stage 2
recipes.remove(horsepower:grindstone);
mods.recipestages.Recipes.addShaped("two", horsepower:grindstone,[[minecraft:lead, tconstruct:tough_tool_rod.withTag({Material: "iron"}), minecraft:lead],[immersiveengineering:wooden_decoration:1, horsepower:hand_grindstone, immersiveengineering:wooden_decoration:1],[extrautils2:compressedcobblestone:2, extrautils2:compressedcobblestone:2, extrautils2:compressedcobblestone:2]]);
horsepower:grindstone.addTooltip(format.gray("(Unlocks in the Copper Age)"));

// Add Grinder Recipes for soft metals
mods.horsepower.Grindstone.add(ore:oreCopper, thermalfoundation:material:64*2, 40);
mods.horsepower.Grindstone.add(ore:oreTin, thermalfoundation:material:65*2, 40);
mods.horsepower.Grindstone.add(ore:oreAluminum, thermalfoundation:material:68*2, 40);
mods.horsepower.Grindstone.add(ore:oreGold, thermalfoundation:material:1*2, 40);

@GoryMoon
Copy link
Owner

First of the inputs of items in CraftTweaker needs to have <> surrounding them, secondly the output can't be a OreDict item, you need to set it as a specific item.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants