View Single Post
01/20/19, 04:43 PM   #13
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Just found a better way to make the icon increase and lower in size animated. Try this script:
Lua Code:
  1. /script local myPin = ZO_WorldMap_GetPinManager():GetPlayerPin():GetControl() if myPin then local scaling=25 local animation, timeline = CreateSimpleAnimation(ANIMATION_SCALE, myPin, 150) animation:SetScaleValues(1, scaling) animation:SetDuration(150) timeline:SetPlaybackType(ANIMATION_PLAYBACK_PING_PONG, 3) timeline:PlayFromStart() end

As I find the time I'll add this to my addon FCOChangeStuff for the map hacks and see if a keybind will work and/or automatically upon opening the map is possible.
Works on Votans Minimap as well but need to adjust the scaling factor from 25 to 2 or the icon will cover the hole minimap^^

Edit:
Ok done, updating FCOChangeStuff now. Keybind and map open auto pingpong was added. Should be on esoui and Minion for download soon.

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