View Single Post
05-09-17, 05:00 PM   #15
krich
A Murloc Raider
Join Date: May 2017
Posts: 5
Originally Posted by p3lim View Post
If you are doing that to friendly nameplates within a dungeon you are violating the ToS of the game and this forums rules, as it is impossible without external tools (hacks).
Im not using friendly nameplates , im attaching textures to chat bubbles (drawing lines beetwen same raid markers and hiding the bubble itself)
Anyway, seems like blizz is aware if it and in latest ptr they added code referíng bubbles:
Lua Code:
  1. local ChatBubblesLua =
  2. {
  3.     Name = "ChatBubbles",
  4.     Type = "System",
  5.     Namespace = "C_ChatBubbles",
  6.  
  7.     Functions =
  8.     {
  9.         {
  10.             Name = "GetAllChatBubbles",
  11.             Type = "Function",
  12.  
  13.             Arguments =
  14.             {
  15.                 { Name = "includeForbidden", Type = "bool", Nilable = false, Default = false },
  16.             },
  17.  
  18.             Returns =
  19.             {
  20.                 { Name = "chatBubbles", Type = "table", InnerType = "ScriptObject", Nilable = false },
  21.             },
  22.         },
  23.     },
  24.  
  25.     Events =
  26.     {
  27.     },
  28.  
  29.     Tables =
  30.     {
  31.     },
  32. };
  33.  
  34. APIDocumentation:AddDocumentationTable(ChatBubblesLua);

includeForbbiden seems like they protected bubbles aswell in 7.2.5 but as i said, it works the same way it used to work with nameplates , but bubbles are limited to 28yd~
  Reply With Quote