Thread Tools Display Modes
06-28-17, 07:04 PM   #1
hasnogaems
A Flamescale Wyrmkin
 
hasnogaems's Avatar
Join Date: Apr 2016
Posts: 109
Copy blacklisted battletag.

There is a trick how to get battletag of the player with whom you played. You need to blacklist him, and then in wow you can see his btag. But i have huge problem with people whose btags use non english but lookalike letters. The easiest way is to copy btag directly from blacklist but with defaut interface i can't.
Is there any addon that can allow me to copy names from blacklist?
  Reply With Quote
06-30-17, 07:42 AM   #2
Xardir
A Kobold Labourer
Join Date: Jun 2017
Posts: 1
Do you mean something like this?
Code:
/script print(GetIgnoreName(GetSelectedIgnore()));
If you are able to copy text out of the chatbox, you can use this script. Just select a player on your ignorelist and use this script.

EDIT:
i wrote a very short addon:

1. Select ignored player
2. Type "/igname get" or "/ign get"
3. Select the name in the EditBox and copy it with Ctrl + C



main.lua
Lua Code:
  1. SLASH_IGNAME1, SLASH_IGNAME2 = '/igname', '/ign';
  2. local function handler(msg, editbox)
  3.     if msg == 'get' then
  4.         StaticPopup_Show("IGNORE_NAME")
  5.     end
  6. end
  7. SlashCmdList["IGNAME"] = handler;
  8.  
  9.  
  10. StaticPopupDialogs["IGNORE_NAME"] = {
  11.     text = "",
  12.     button1 = "Close",
  13.     OnShow = function (self, data)
  14.     self.editBox:SetText(GetIgnoreName(GetSelectedIgnore()))
  15.     end,
  16.     timeout = 0,
  17.     whileDead = true,
  18.     hideOnEscape = true,
  19.     preferredIndex = 3,
  20.     hasEditBox = true
  21. }

GetIGName.toc
Code:
## Interface: 70200
## Title: GetIGName
## Notes: Puts the name of selected ignored player in an editbox.
## Author: Xardir-Blackmoore
## Version: v0.1

main.lua

Last edited by Xardir : 06-30-17 at 09:14 AM.
  Reply With Quote
11-18-19, 10:16 PM   #3
hasnogaems
A Flamescale Wyrmkin
 
hasnogaems's Avatar
Join Date: Apr 2016
Posts: 109
Wow this community is amazing. Thank you!
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Copy blacklisted battletag.

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off