View Single Post
11-15-17, 10:25 AM   #3
MunkDev
A Scalebane Royal Guard
 
MunkDev's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2015
Posts: 431
Lua Code:
  1. oUF.Tags.Methods["diablo:name"] = function(unit)
  2.     local cc = ("|cff%s%%s|r"):format(oUF.Tags.Methods["diablo:color"](unit))
  3.     local unitID = IsAddOnLoaded("Totalrp3") and TRP3_API.utils.str.getUnitID(unit)
  4.     local fullName = unitID and TRP3_API.chat.getFullnameForUnitUsingChatMethod(unitID)
  5.     return cc:format(fullName or UnitName(unit) or "")
  6. end
__________________

Last edited by MunkDev : 11-15-17 at 04:03 PM.
  Reply With Quote