View Single Post
11/05/21, 08:36 AM   #9
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Try this:

Lua Code:
  1. RedirectTexture("EsoUI/Art/MapPins/skyshard_seen.dds", "")

it will exchange the texture with none and thus should be empty/hide it.

If this does not work try this (an empty/blank texture):
Lua Code:
  1. RedirectTexture("EsoUI/Art/MapPins/skyshard_seen.dds", "/esoui/art/icons/heraldrycrests_misc_blank_01.dds")

Add this line to any addon's EVENT_ADD_ON_LOADED callback function or call it with /script RedirectTexture... ingame in the chat (this would need to be repeated after each loading screen/zone change/logout then!)

Attention: This might only work properly if you use an addon and NOT the /script approach, because
if the textures do not update properly try to logout and delete the file live/shader_cache.cooked
It contains the cached textures and thus would show the old skyhards icon.

Last edited by Baertram : 11/05/21 at 08:42 AM.
  Reply With Quote