Page 2 of 2

Re: (Addon) SilverDragon w/ Mapnotes (via cartographer)

PostPosted: Tue Dec 22, 2015 5:23 pm
by syntharis
Can any of these addons alert you with a sound when a rare is found? and can you add npc's yourself?

Re: (Addon) SilverDragon w/ Mapnotes (via cartographer)

PostPosted: Mon Dec 28, 2015 6:47 am
by boohaa
syntharis wrote:Can any of these addons alert you with a sound when a rare is found? and can you add npc's yourself?


I've done this in this way:
Open Core.lua in your Silverdragon folder and find (empty) line #204, between this part of code
Code: Select all
if self.db.profile.announce.chat then
   self:Print(string.format(L["%s seen!"], name), dead and L["(it's dead)"] or '')
end

and this one
Code: Select all
self.lastseen[name] = time()

Add this to that empty line:
Code: Select all
PlaySound("RaidWarning")

Alternativetly, add this for auto-targeting:
Code: Select all
TargetByName(name, true)

Full code will look like this:
Code: Select all
if self.db.profile.announce.chat then
   self:Print(string.format(L["%s seen!"], name), dead and L["(it's dead)"] or '')
end
PlaySound("RaidWarning")
TargetByName(name, true)
self.lastseen[name] = time()


Tested it on Sludge Beast rare mob in The Barrens: https://youtu.be/QIn1Dh9fBQw (no auto-target example)

Re: (Addon) SilverDragon w/ Mapnotes (via cartographer)

PostPosted: Sun Jan 17, 2016 7:55 pm
by syntharis
Thx alot this can help for sure :)

Re: (Addon) SilverDragon w/ Mapnotes (via cartographer)

PostPosted: Mon Dec 19, 2016 8:30 pm
by kappavanilla
hey, i know it might be an old post, but can anyone see the map markings at all ?

i started playing again a couple of days ago

Re: (Addon) SilverDragon w/ Mapnotes (via cartographer)

PostPosted: Fri Jan 06, 2017 12:07 am
by kapiw1
thanks, great addon <3