LordVGames
Skeletron Prime
I'm trying to update my mod in the mod browser, but it keeps saying that the version number in build.txt needs to be changed (I have changed it multiple times, still gives the error)
Any help?
Any help?
Did you build after changing the version and saving? post the file if so.I'm trying to update my mod in the mod browser, but it keeps saying that the version number in build.txt needs to be changed (I have changed it multiple times, still gives the error)
Any help?
Your own RAM doesn't matter, Terraria itself has quite a low limit due to it being 32 bit. For now, your best bet is to enable/disable mods you want in the menu, and then restart Terraria. If that doesn't work, you will have to disable some mods and try again. Unfortunately it is what it is for now.Please i don't know where to go with this problem so please help! i finally figured out that errors that i get are because i "Don't Have enough memory" but when i go to task manager only 54% is used and i don't know what to do because i have a big amount of mods and i wanted to make a BIG modpack and mods like Calamity Thorium Tremor etc. disable so please if someone has a solution please tell me
Thanks, Oh i wish Terraria had a 64 bit versionYour own RAM doesn't matter, Terraria itself has quite a low limit due to it being 32 bit. For now, your best bet is to enable/disable mods you want in the menu, and then restart Terraria. If that doesn't work, you will have to disable some mods and try again. Unfortunately it is what it is for now.
That bug is known. Here's some known bugs:for some reason when i try to run modded terraria, it doesn't respond after it says "relogic" and i have to force quit... normal terraria works just fine..
- Head & Body accessories aren't rendered with custom animations.
- There might be small desync when non-local players fire reloadable guns.
- Rendering of falling jungle trees is a bit broken
- It's possible to clip through a 1 tile wide wall when climbing with climbing claws
Currently Incompatible With Duel Wielding
Currently Incompatible With Spirit
Did you build after changing the version and saving? post the file if so.
Missing mod: YourModName/Items/PickaxeName
at Terraria.ModLoader.ModLoader.GetTexture(String name)
at Terraria.ModLoader.ModItem.AutoStaticDefaults()
at Terraria.ModLoader.Mod.SetupContent()
at Terraria.ModLoader.ModLoader.do_Load(Object threadContext)
using Microsoft.Xna.Framework;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace YourModName.Items
{
public class PickaxeName : ModItem
{
public override void SetStaticDefaults()
{
DisplayName.SetDefault("Wood Pickaxe-");
Tooltip.SetDefault("pickaxe-Line1"+ "\npickaxe-Line2");
}
public override void SetDefaults()
{
item.damage = 2;
item.melee = true;
item.width = 32;
item.height = 32;
item.useTime = 20;
item.useAnimation = 20;
item.pick = 40; //pickaxe power
item.useStyle = 1;
item.knockBack = 6;
item.value = 10;
item.rare = 2;
item.UseSound = SoundID.Item1;
item.autoReuse = true;
item.useTurn = true;
}
public override void AddRecipes() //How to craft this item
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(ItemID.Wood, 10); //you need 10 Wood
recipe.AddTile(TileID.WorkBenches); //at work bench
recipe.SetResult(this);
recipe.AddRecipe();
}
}
}
Consult the Migration Guide.i have not been playing terraria for some time and my mod is out of date but i dont understand the changes thats been made to update to new version
The Host and Play option has been a bit buggy in the past. Try manually starting a server then connecting to that.I'm trying to play multiplayer tmodloader, but I'm having a lot of problems. I clicked on Host and Play and it said connecting to server for a few seconds and then Requesting world information, and then nothing, just stuck with that sentence on the screen. I then tried going into the files and starting Tmod server with the console/text thing. It worked, but when I tried to join with the right ip, same problem with the Requesting world information. I kept on trying and it finally worked, but my friend couldn't join with the right ip, he had the requesting world problem too. We tried doing the same thing on my friends account, same problem with the Requesting world information. Don't know what to do, help would be appreciated!
If you mean pressing on Tmodloader server, where a bunch of text comes up and you choose which world, how many players, and password, I already did that and it had the same problem, I put in the 127.0.0.1 ip and it said requesting world information and just lasted like that forever. My friend tried using my ip to get in too and same problem.Consult the Migration Guide.
The Host and Play option has been a bit buggy in the past. Try manually starting a server then connecting to that.