Multiple AV’s today where someone just spam pinged the minimap for 10 minutes straight. Could you add a feature to disable mini map pings, so we can counter this without muting the entire game? Thanks.
i asked a friend of mine who makes addons if he knew of a way to do just this the other day, and he gave me a fix. you need to create a new folder in your classic directory and put a sound file in it. so the folder location will end up being [worldofwarcraft/_classic/sound/interface] then you put the file in the interface folder. heres a link for the sound file if you want it.
just restart your game after doing that and ping the map to test if you hear it or not.
This was driving me nuts also, so I just wrote a simple script to mute/unmute the map ping sound so that I can toggle it whenever I run into the spamming trolls.
Just create a macro with this as the contents, and then use the macro to toggle between having the ping sound muted or enabled.
/run if(isPingMuted) then UnmuteSoundFile(567416); isPingMuted=false; print("Ping Unmuted"); else MuteSoundFile(567416); isPingMuted=true; print("Ping Muted"); end
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.