View Single Post
08/01/19, 01:42 PM   #5
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,973
Download and enable LibMapPing and try this in the chat if the blue player map pings are shown again (or maybe even before to never see them again):

Code:
/script LibMapPing:SuppressPing(MAP_PIN_TYPE_PING)
If you want to see them again use:
Code:
/script LibMapPing:UnsuppressPing(MAP_PIN_TYPE_PING)
You could try to add this to the small addon with the /slash command I had created for you.
Just define something like this:

Lua Code:
  1. local function togglePlayerMapPings(onOrOff)
  2.  if not LibMapPing then return end
  3.  if onOrOff then
  4.    LibMapPing:SuppressPing(MAP_PIN_TYPE_PING)
  5.  else
  6.    LibMapPing:UnsuppressPing(MAP_PIN_TYPE_PING)
  7.  end
  8. end

Then add something to the slash commands like a new line with your own / command you'd like to use for on and one for off.
Maybe /pmpon and /pmpoff
And for /pmpon use the function togglePlayerMapPings(true) and for the other one togglePlayerMapPings(false)

Last edited by Baertram : 08/01/19 at 02:27 PM.
  Reply With Quote