Wrote a macro to track the moment when Scourge Invasions start throughout the world. Use the macro, and it will tell you where invasions are happening the moment they start. It's useful for when all invasion points have been cleared and you're doing something else to pass the time.
Code:
/run Minimap:SetScript("OnUpdate",function(s)for c=1,select("#",GetMapContinents())do SetMapZoom(c)for i=1,GetNumMapLandmarks()do local n,d,x=GetMapLandmarkInfo(i)if(x==41)then print(d.." is under attack!")s:SetScript("OnUpdate",nil)end end end end)
Once an invasion is detected, the macro will turn itself off. Run it again to track the next invasions.
Note: This will probably interfere with Carbonite or other minimap mods.