SilverDragon - Rare Scanner
SilverDragon
SilverDragon tracks rares in World of Warcraft. It will try everything possible to notice them and tell you about them.
How does it search?
Vignettes
Those little skull icons you see on the minimap. If one of them is a rare SilverDragon knows about, it'll yell at you.
Targets
If you mouse over or target a rare mob, SilverDragon will notice it.
Nameplates
If you have enemy nameplates turned on, SilverDragon will keep an eye on them to look for the names of known rares.
Macro
SilverDragon can also create a macro to target any rares that are known in the current zone. You can stick this on your actionbars as a button to spam while chasing after a rare, or bind it to a key. This is sort of a last resort.
Chat
Some rares yell in zone chat. If SilverDragon notices those yells, it'll alert you.
Dark Magic
This abuses detection of when Blizzard blocks attempts to call a protected function (TargetUnit
) to work out when you're in targetting range of a unit with a given name
This inherently causes in-game errors, so it is disabled by default. Enable in the addon config under Scanning / Dark Magic
.
By default it's less-aggressive, scanning through rares in the zone without known vignettes at a rate of 1/second. However, you can turn that rate way up if you'd like. You can also turn on an option to automatically hide the error messages it causes, but beware that this will potentially cause taint issues that'll leave you needing to /reload
eventually.
How will I know when a rare is seen?
Frame
When a rare appears, SilverDragon will pop up a frame that you can click on to target it.
Warning: If you're in combat, secure action restrictions mean that it won't show up until combat finishes.
Sounds
You can choose from assorted sounds to play when a rare is seen. The sound can loop for a while, to make sure you don't miss it.
There's special settings for rares that drop mounts and world boss rares which you might want to call up a group for. If you're sitting mostly-AFK on a Time-Lost Proto Drake spawn, you probably want the sound that plays to be utterly ridiculous and go on for a good long while, to make sure you don't miss that sucker.
Messages
A notice can be sent to a number of places:
- your scrolling combat text
- your chat frame
- a channel in your chat frame (announcing it to your party, for instance)
- a popup window
- etc
History
A log of seen rares will be shown in a window, so you can easily glance over spawn times.
Other useful things?
Custom mobs
In SilverDragon's options you'll find a "Mobs" section. In the "Always" section, you can add any mob you want to be scanned for. All you need to know is the mob id.
So, let's say you wanted to keep an eye out for Lil Timmy in Stormwind, to buy the kitten he sells. You would...
- Go to his wowhead page.
- Grab his id from the URL. It's
8666
. - Enter
8666
into the "add" field, and click "okay". - Play with your new kitten.
Yes, this example dates me.
Ignoring mobs
If there's some mob you don't want to hear about for whatever reason, just go to the "Ignore" section of the options. Again, enter the mob's id into the "add" box, then click okay. Bam! You will never again be told that Vern is up.
(Actually, Vern is ignored by default. But you get the idea.)
Alternately, right-click the close button for the popup and that'll ignore it as well.
Syncs
SilverDragon will talk to itself. It can communicate with other copies of itself run by people in your party / guild, and tell you when they see a rare mob. (If there's a group of you camping all the Time-Lost Proto Drake spawns, say...)
You can turn this off completely, if you want to be private about it.
Tooltips
Some rares are part of an achievement. When you mouse over a rare mob, SilverDragon will add to the tooltip whether you've already killed it, so you know whether you need to rush for it.
Broker
SilverDragon includes a Broker plugin. It'll attach itself to the addon compartment and also your minimap, or a Broker container you have installed, and show you a list of the mobs it knows about in the current zone.
Other addons you may find useful
- AppearanceTooltip: integrates with the SilverDragon loot popups and shows transmog-known status.
- ServerRestartSound: plays a sound when the server's about to restart. If you're AFK-camping for a rare spawn, you probably want to know about this.
- ObjectScanner: A few rares are hidden away behind interacting with world-objects like the Edge of Reality. These have to be localized individually, so you need to work out what they're called in your language and set up a watch for tooltips mentioning them. This addon does that bit.
- ButtonBin: a broker display. SilverDragon's minimap icon will show up on it (or any other addon like it) instead of cluttering up your minimap, if you have it installed.
Hello, I can not see rare mobs in my map. Someone has an idea? Before the update I could see... Thanks
I'm having this issue myself. I'm hoping for a fix - when it happened before reinstalling Silver Dragon completely seemed to work but it no longer does.
Could you tell me some things, like: what version of SD you're using right now, and what map addon you're using for notes.
Handynotes was the addon that showed the icons on our minimap, but it has not been updated and is giving lots of errors when you try to use it. I used that one a lot and am missing it since it also let you add your own icons to the minimap. Hopefully someone will adopt it and update it.
My friend has the same problem with SD v. 3.01.
I am using SD V. 2.6.3 together with HandyNotes 1.2.0 and have no issues at all.
you can have it in Italian?
I noticed in my Uldum cache there's nothing for either the figurine or crumbled remnants anymore - do we have to import this separately, and if so, how?
This is an unfortunate side-effect of my having re-run the dataminer, and wowhead having decided to lose all zone information for those. http://www.wowhead.com/npc=50410
I'll get a fix out. In the meantime, you could use the SilverDragon_Data from an earlier release.
To fix the error on login simply edit the following file:
./lib/LitTourist-3.0/LibTourist-3.0.lua
Change the following code at line 4550:
local continentNames = { GetMapContinents() }
local doneZones = {}
local zoneIDs = {}
To the following code:
local continentNames = { GetMapContinents() }
table.remove(continentNames) -- Remove Pandaria
local doneZones = {}
local zoneIDs = {}
GetMapContinents is returning a value for Pandaria, however, there is no code in SilverDragon yet to handle that, hence the error that occurs on login. This adjustment simply removes Pandaria from the list of continents SilverDragon is trying to process.
This should work until Pandaria is actually availalbe and the addon can be properly updated.
looking at line 4550 I don't see the code you do..
line 4550 shows - local scansDone = 0
A search revels no such code you reference to change at all in the LibTourist-3.0.lua
hrmm
Do you have the latest version?
Make sure you have this version of SilverDragon from the Project Site: v2.6.2-3-g27e95c1
The edit I posted above works, I just double checked it. :o)
Also, I downloaded the version linked here on curse... the line number in that version of LibTourist is 4436. Make sure you search both Up and Down if using Notepad to search a text file! ;o)
The version I had was 2.6.2 from here. I use Notepad+ so searching isn't an issue. I usually don't use alpha/beta versions.
No worries now as there is an update.. let's hope all is well now
Need update for 5.0.4 patch please. This addon is so useful, please keep up on development of this wonderful addon!
Needs an update for 5.0.3
http://www.wowace.com/addons/silver-dragon/tickets/98-minor-bug-not-addon-breaking-as-far-as-i-can-tell/
See my post above for a temporary fix for the login error until the AddOn is fully updated for Pandaria :o)
What is the scan frequency setting that allows the addon to scan most often? 0.1 or the highest setting?
can u add a feature that would allow u to say right click the target button that pops up so that is will make a tomtom waypoint at the location it spotted the rare mob?
Is there a way i can input a custom mob for it to scan for besides editing the files themself?
or at least plz add http://www.wowhead.com/npc=48448
Hola alguien podria decirme x q deci q no me deja y q me ponga en contacto con el creador?
Okay, first, LOVE this addon, thank-you much.
But I have a sort of a strange problem. Installed and have been using this on my Hunter for a while, works great. Finds lots of rares. I also changed the "announce" sound and was able to select from a LOT of different sounds including some "Blizzard" sounds. I chose one called "Blizzard: Simon says" (I think it was listed like that), it's a soft high pitched ding/chime sound that doesn't freak me out like NPC_Scan. There are maybe 30 or more sounds to choose from and has a slider bar on the right to slide down the list.
Okay so I started playing an alt Mage again recently and decided to enable Silver Dragon for the Mage too. Been playing for about 4 days and it's yet to find a single rare anywhere even when NPC_Scan goes off (usually both went off in Northrend on Hunter). And I have a significantly smaller list of sounds to choose from, maybe 12 - 15 with no scroll bar on the right. I think I have all the same options enabled on both toons, but they're operating quite differently. Any idea why?
Does not find rares on alt, announce sounds list is different. Why? Any way to fix this?