tModLoader Dust and Sound Catalogue 2

Updated, also check out Modder's Toolkit for dusts as well as other useful things, it's really good.
 
Hey, anyone know what the dust for the starfury projectile is? I'd really love to know.
 
how do i change the style of sound?
 
I believe that NPCDeath43 is the granite golem's death sound
 
Anyone know which dust is cursed flames?
 
Is there anyway to spawn dust when an NPC dies?
 
Is there anyway to spawn dust when an NPC dies?
C#:
 public override void HitEffect(int hitDirection, double damage)
        {
            if (npc.life <= 0)     
            {
                //DUST CODE HERE
            }
         }
Try that, you also spawn gores from there as well.
 
this mod is AWESOME
<ERROR>
<UNDESCRIBED SYNTAX>
 
A little thing: dust 179 is for shadowflame (for anyone that was trying to find it)
 
Last edited:
I know this thread is old, but how do I use the gun sound? Do I just type item.UseSound = 2:11?
I really couldn't find anything online.
 
I know this thread is old, but how do I use the gun sound? Do I just type item.UseSound = 2:11?
I really couldn't find anything online.
You can use item.UseSound = SoundID.Item11;. (Of course, make sure to add using Terraria.ID; if you haven't already)

By the way, I recommend you check out the tModLoader wiki, there's a lot of useful guides and documentation around there. Here's the basic sounds guide, just for the record :)
 
Back
Top Bottom