Recent content by Argentum

  1. Argentum

    tModLoader Snowball Cannon Overhaul

    That might be true, but im balancing this out with short durations and long cooldowns, that way it shouldnt be too op.
  2. Argentum

    tModLoader Snowball Cannon Overhaul

    Well hello there, and welcome to the WIP page of the mod. The title already indicates that this mod overhauls the Snowball Cannons. This mod will add more Snowball Cannons with a unique (at least in vanilla) mechanic. [/SPOILER] More Weapons have been added and im currently working on...
  3. Argentum

    tModLoader Official tModLoader Help Thread

    ExampleMod has a worm npc file that might help you.
  4. Argentum

    tModLoader [Tutorial] TModLoader: Projectile Help

    @Codename_Ps your error is fairly simple. Just add the following lines at the top of your file(Also its not needed to use the additional code from the multiple prjectile shooting to make multiple projectiles rain from the sky): using Microsoft.Xna.Framework; using Terraria; using AurumMod.Items...
  5. Argentum

    tModLoader Official tModLoader Help Thread

    Then I cant really help you, like I said I havent tested this before and Im not all knowing either The example mod has a very good example for something like this or you could just look through the terraria code. If you were to look through the code of terrria i still recommend looking at the...
  6. Argentum

    tModLoader Official tModLoader Help Thread

    Your file has no reference to the mod projectile. Use using Beskil.Projectiles; at the top and/or write ModContent.ProjectileType <CreeperBand> ()
  7. Argentum

    tModLoader Official tModLoader Help Thread

    You are still missing a bool in the player file. Put this in the raw player file: public bool BrainBand; Now put this in the player file: public override void ResetEffects() { BrainBand = false } Note that the way Im doing it here at all will (with...
  8. Argentum

    tModLoader Official tModLoader Help Thread

    What do you use to refer to the accesory? A bool or the item name? Using an item name is the wrong way to refer to a item in the player file. Instead use a bool to refer to it. Then put a reference in the accesory file. I can provide an example for a accesory that uses the player file if you want.
  9. Argentum

    tModLoader Official tModLoader Help Thread

    My mistake, the code belongs in the part of the player file where you determine stat changes and similiar, in the 'UpdateBadLifeRegen' part. If you have done this I recommend looking in Example mod Edit:If you dont have Example mod i will show you example mods example.
  10. Argentum

    tModLoader Official tModLoader Help Thread

    It should be enough to do this in your player file: if (Your accesory){ Projectile.NewProjectile(player.Center.X, player.Center.Y, 0f, 0f, ProjectileType<Your projectile>(); } If you want a max projectile cap, you can look into ExampleMods Elemental shield.
  11. Argentum

    tModLoader Official tModLoader Help Thread

    the Steam cloud sometimes messes things up and causes Tmodloader to crash. Are there problems with any other games too? Edit:I'll have to read your stuff later since I'll be offline for now. I hope someone else can fix it while I'm gone Good luck ;)
  12. Argentum

    tModLoader Official tModLoader Help Thread

    Are you running the game per Steam?
  13. Argentum

    tModLoader Official tModLoader Help Thread

    @Astro. what exactly happens when you try to run the game?
  14. Argentum

    tModLoader Official tModLoader Help Thread

    Im not sure if its possible but I doubt it. Many of the achievments did not exist i 1.3.5.3 and Im not even sure if Tmodloader is compatible with achievments. There is probably a way to download Terraria 1.3.5.3 but that is probably on an other side of the Internet. Maybe I missed something but...
  15. Argentum

    tModLoader Daybreak-like item help?

    The problem is that your Javelin projectile either has a different name than 'ExampleJavelinProjectile' or that it doesnt exist. If you would want the projectile to act like the daybreak you will have to code something yourself. But you can just insert this in your projectile code (In the...
Back
Top Bottom