View Single Post
01/20/19, 04:09 PM   #11
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Oh sorry, I had changed it with some intel from Votan and forgot to test it. Have changed the script so it should work again now:

Lua Code:
  1. /script local delay, delay2=0 for i=1, 5 do delay = i*350 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

If you want to have the icon resize to another size change the values 350, 350 to new values like e.g. 200, 200.
If you want to have it blinkk only 3 times change the value for i=1, 5 to for i=1, 3.
If you want to blink faster chnage the values delay = i*350 delay2=75 to e.g. delay = i*250 delay2=50

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:25 PM.
  Reply With Quote