Masawesome
Terrarian
So there isn't a fix for compatibility with 1.3.5 on mac yet?
No, unfortunately not. Hopefully they will update tModLoader soon. You should enjoy vanilla Terraria for a while.So there isn't a fix for compatibility with 1.3.5 on mac yet?
The item ID for stone block is just "Stone". If it still does not work after you fix that, try use these lines of code and edit them to your liking. I already made changes to fit the recipe you have attempted to make.have an error this code:
using System;
using System.Collections.Generic;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
public class CustomRecipe : ModRecipe
{
public void AddRecipes() //How to craft this item
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(ItemID.StoneBlock, 10); //you need 10 Wood
recipe.SetResult(ItemID.IronAnvil);
recipe.AddRecipe();
}
}
this is error
btw im trying to add a custom recipe to a vanilla item:
c:\Users\aforsyth\Documents\My Games\Terraria\ModLoader\Mod Sources\TheCrack\CustomRecipes.cs(7,14) : error CS1729: 'Terraria.ModLoader.ModRecipe' does not contain a constructor that takes 0 arguments
Do you have the Recipe Browser mod? If so, it might be conflicting with a mod, so you should disable it and use Cheat Sheet instead.https://gyazo.com/2e255f6350f75cfde12c6139dcfeff8f I'm sure its a mod that causing this, but I don't know which one. Every time I go to pick up a item it sticks to me and i cant move, any suggestions?
I'm not using either of those mods this is what is haveDo you have the Recipe Browser mod? If so, it might be conflicting with a mod, so you should disable it and use Cheat Sheet instead.
I see, then I'm not sure what's going on, but I highly believe that it's a mod that's conflicting with somethingI'm not using either of those mods this is what is have
https://gyazo.com/e6c3f170b0383a430e04fb39ee737aae
https://gyazo.com/606999e0083be7601b48e4f684e0937a
https://gyazo.com/862020e01b443f3e93d81eafb66a10e2
do your item/armor have a labeled "no item" when you open your inventory? an if you can please if possible provide a screen shot to make things faster not only for you but also the rest of the forum to provide a quick answer-suggestionAnybody?
Me tooOh... I'il wait for full 1.3.5 tmodloader update![]()
Um, Sorry but i wanted to create a CUSTOM RECIPE for a VANILLA ITEMNo, unfortunately not. Hopefully they will update tModLoader soon. You should enjoy vanilla Terraria for a while.
[doublepost=1493576556,1493576104][/doublepost]
The item ID for stone block is just "Stone". If it still does not work after you fix that, try use these lines of code and edit them to your liking. I already made changes to fit the recipe you have attempted to make.
public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(null, "Stone", 10);
recipe.AddTile(null, "IronAnvil");
recipe.SetResult(this);
recipe.AddRecipe();
}
Good luck! Hope I helped.