Search results for query: *

  1. T

    Standalone [1.3] tModLoader - A Modding API

    it doesnt work its giving me the errors c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod Sources\ultsword\core.cs(19,24) : error CS0118: 'ultsword' is a 'namespace' but is used like a 'type' c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod...
  2. T

    Standalone [1.3] tModLoader - A Modding API

    what am i supposed to name it heres my main code using System; using Microsoft.Xna.Framework; using Terraria; using Terraria.ID; using Terraria.ModLoader; using core; namespace core{ public class Core : Mod { public override void SetModInfo(out string name, ref ModProperties properties) { name...
  3. T

    Standalone [1.3] tModLoader - A Modding API

    now it says c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod Sources\ultsword\ultsword.cs(38,1) : error CS0116: A namespace cannot directly contain members such as fields or methods c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod Sources\ultsword\ultsword.cs(78,2) : error...
  4. T

    Standalone [1.3] tModLoader - A Modding API

    sorry im new and whenever i try to correct errors it gives me a new one
  5. T

    Standalone [1.3] tModLoader - A Modding API

    how do i make them the same
  6. T

    Standalone [1.3] tModLoader - A Modding API

    do they both have to be the same?
  7. T

    Standalone [1.3] tModLoader - A Modding API

    i already have a } in my 34 line using System; using Microsoft.Xna.Framework; using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace core.Items { public class ultsword : ModItem { public override void SetDefaults() { item.name = "ultsword"; item.damage = 500; item.melee = true...
  8. T

    Standalone [1.3] tModLoader - A Modding API

    now its giving me the error c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod Sources\ultsword\ultsword.cs(34,2) : error CS1513: } expected
  9. T

    Standalone [1.3] tModLoader - A Modding API

    it gives me these error when i try to build it c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod Sources\ultsword\core.cs(19,25) : error CS0118: 'ultsword' is a 'namespace' but is used like a 'type' c:\Users\joshuaho\Documents\My Games\Terraria\ModLoader\Mod...
  10. T

    Standalone [1.3] tModLoader - A Modding API

    I recently tried to create a weapon but when I try to craft it the weapon isn't there using System; using Microsoft.Xna.Framework; using Terraria; using Terraria.ModLoader; namespace ultsword.Items { public class ultsword : ModItem { public override void SetDefaults() { item.name =...
Back
Top Bottom