Standalone [1.3] tModLoader - A Modding API

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?
 
Anyone know why my tmodloader server is stuck at "requesting world information" when attempting to join via ip? I've properly port forwarded and checked canyouseeme.org to verify if the port is forwarded.
The mods I'm running are:
Calamity
RecipeBrowser
Spirit
Thorium
Tremor
Wingslot
 
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?
Did you build after changing the version and saving? post the file if so.
 
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
 
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
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.
 
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.
Thanks, Oh i wish Terraria had a 64 bit version
 
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..
 
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..
That bug is known. Here's some known bugs:
- 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
 
I'm getting this error multiple times. What do I do?
errorlogthingreeee.PNG
 
Did you build after changing the version and saving? post the file if so.

First of all, I can't build it, it gives this error when it gets to build.txt:
"System.FormatException: Input string was not in a correct format."

I tried using a new build.txt and putting my mod info in it, still an error.

If you need me to, I can give you my build.txt.
 
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
 

Attachments

  • :red:ING PIECE OF :red:ING :red:.png
    :red:ING PIECE OF :red:ING :red:.png
    472.7 KB · Views: 274
Anyone? Cant figure out how to make my boss entity shoot projectiles
 
i keep getting this code
Code:
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)
heres my code
Code:
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();
        }
    }
}
 
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!
 
i cant seem to join the server i host, it always get stuck on requesting world information, same goes to my friends, i dont know if it the problem with my mods, i recently updated my tremor, spirit and thorium, before that it works just fine for me and my friend to play
 
I cant seem to install this in ANY way without getting the "Please launch the game from your Steam client.". I have of course tried that and everything else I and several other people can think of (Restarting my computer, restarting/relogging on steam, triple checking that I have the latest versions of everything just to name a few). Nothing seems to work, and I'm out of ways to attempt to install it "correctly".
 
where can i download the tModloader?
 
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
Consult the Migration Guide.

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!
The Host and Play option has been a bit buggy in the past. Try manually starting a server then connecting to that.
 
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.
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.
 
Back
Top Bottom