View Single Post
01/20/19, 12:22 PM   #5
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Try this script while the map is opened (paste into chat and press return key):


Lua Code:
  1. /script local delay=0 delay2=0 for i=1, 5 do delay = i*400 delay2=75 local myPin = ZO_WorldMap_GetPinManager():GetPlayerPin():GetControl() zo_callLater(function()  myPin:SetDimensions(350, 350) zo_callLater(function() myPin:SetDimensions(18, 18) end, delay2) end, delay) end

It should change your own map pin to the bigger size 5 times, making it blink for you.

If you like this idea I could add it as keybind to the game or as a function if you open the map (if this would work).
But I'm not going tochange the icon's color, etc. and fullfill other requests as it would take too much time to check all the map stuff. As you can see the map will automatically change the size and everything back to normal so this is the only thing I can help with.

Btw: If you use Votans Minimap it wil leven work to blink on the minimap as it uses the base gaem map (in a smaller window).
So you do not need to open the map but just have the minimap opened is enough.
Sometimes it does not work in Cyrodiil (on the minimap) though.

Last edited by Baertram : 01/20/19 at 04:19 PM.
  Reply With Quote