Recent content by aretnalP

  1. aretnalP

    Custom worm boss help

    No problem, I'm pretty inexperienced myself, my only other coding experience was with minecraft and roblox lol, but if you have any other questions im here to help
  2. aretnalP

    tModLoader How to make a second phase?

    I'm not that great with the actual coding of the arms, but I can help you detect when it's below 4k hp : In your AI, use this : if (!enraged && npc.life <= 4000) { enraged = true; //other code }
  3. aretnalP

    Custom worm boss help

    The ExampleMod is open source on github and even has a modded worm enemy. I highly reccommend using it and it's worked quite well for my boss, the Chaos Reaver. Make most of your changes to your head, like your music, boss tag, etc, this is what my worm head defaults looks like ...
  4. aretnalP

    tModLoader How do you make an NPC(s) spawn after an NPC dies?

    public override void PreNPCLoot() { NPC.NewNPC((int)npc.Center.X, (int)npc.Center.Y, (int)mod.NPCType("BanishedSlime")); NPC.NewNPC((int)npc.Center.X, (int)npc.Center.Y, (int)mod.NPCType("BanishedSlime")); } Obviously replace the NPC type with your modded...
  5. aretnalP

    hiya

    hiya
Back
Top Bottom