What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

are treasure goblins considered elites?

dan991199

New Member
Joined
Jul 17, 2010
Messages
245
Reaction score
1
as the title says, i wondered if i could set the generic combat routine to pop cool downs on goblins.
 
as the title says, i wondered if i could set the generic combat routine to pop cool downs on goblins.

Not too sure to be honest, there's no monster affix for treasure goblin. Would have to check via name; next time you find one press Dump RActors and post its name and id here and ill add it in.

In generic no there probably isnt.

Code:
            if (unit.Name.StartsWith("treasureGoblin"))
            {
                Logger.WriteVerbose("Mob is a Treasure Goblin");
                return true;
            }
 
Last edited:
Back
Top