powpowitsme
Steampunker
It's having some problems at the moment. Leave it there for a while, it might load.I have an issue when i try the mod browser it just keeps loading does anyone know why?
It's having some problems at the moment. Leave it there for a while, it might load.I have an issue when i try the mod browser it just keeps loading does anyone know why?
You were right good man thank youIt's having some problems at the moment. Leave it there for a while, it might load.
They will, but you can wait, they will gonna released some daysNeed tmodloader 0.8.3.5 for Terraria 1.3.3.3. Please fix the mod browser in this update.
Need tmodloader 0.8.3.5 for Terraria 1.3.3.3. Please fix the mod browser in this update.
If you overwrote your Terraria.exe with the tModLoader one, from what i know, you have to verify the itegrity of the terraria game cache (if you're using steam.)How would I revert tmodloader back to vanilla terraria after I installed it?
Yeah. That'll work. You could also rename the tModLoader exe to "tModLoader.exe", leave it in the terraria folder, and just create a shortcut for it.Could I leave the original terraria.exe on the desktop and download the tmodloader version, then replace them if I want to play vanilla or modded?
I would also reccomend backing up your worlds and players, just in case.Could I leave the original terraria.exe on the desktop and download the tmodloader version, then replace them if I want to play vanilla or modded?
It's MUCH quicker to download from calamity's homepage and install it manually.True. Takes like 5 fing hours and Calamity Mod's update progress is still 1/5.
nvm just magic-ed it to workNot sure then. Did you do the manual? It's just drag and drop.
"c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\Demon's True Bane.cs(6,20) : error CS1010: Newline in constant"
"c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\Demon's True Bane.cs(6,20) : error CS1012: Too many characters in character literal"
"c:\Users\Notmynamegtfo\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\Demon's True Bane.cs(6,20) : error CS1514: { expected"
"c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\Demon's True Bane.cs(6,20) : error CS1519: Invalid token ''\u0073'' in class, struct, or interface member declaration"
HELP ME!
I have an issue when i try the mod browser it just keeps loading does anyone know why?
https://github.com/bluemagic123/tModLoader/blob/master/ExampleMod/Items/Weapons/ExampleGun.cs#L97How would I make my character hold a gun with a stock by its handle? my character always ends up holding the stock or the empty space below the stock.
Looks like a simple syntax error. We can't help you with that unless you post your code, like Jeckel asked you to before.Getting more errors...
c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\TheTrueBaneOfDemons.cs(30,34) : error CS1026: ) expected
c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\TheTrueBaneOfDemons.cs(30,39) : error CS1002: ; expected
c:\Users\Demon\Documents\My Games\Terraria\ModLoader\Mod Sources\Curse\Items\TheTrueBaneOfDemons.cs(30,39) : error CS1525: Invalid expression term ')'
Should I just give up?
Same error as before, you can't use whitespaces in identifiers.using Terraria.ID;
using Terraria.ModLoader;
namespace Curse.Items
{
public class TheTrueBaneOfDemons : ModItem
{
public override void SetDefaults()
{
item.name = "The True Bane Of Demons";
item.damage = 4280;
item.melee = true;
item.width = 40;
item.height = 40;
item.toolTip = "May you be defended by the Demon himself.";
item.useTime = 2;
item.useAnimation = 2;
item.useStyle = 1;
item.knockBack = 4280;
item.value = 1000000;
item.rare = 3;
item.useSound = 1;
item.autoReuse = true;
}
public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(ItemID.Chlorophyte, 12);
recipe.AddTile(TileID.Mythril Anvil);
recipe.SetResult(this);
recipe.AddRecipe();
}
}
}