View Single Post
01-26-20, 07:40 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
The part of the addon that drives that combat warning is almost entirely isolated from the rest of the addon.
  1. Go to https://addon.bool.no
  2. This will be a separate addon, name it what you want in the top box
  3. Open the file Interface\AddOns\Inked\Extras\CombatAlert.lua
  4. Select all and copy
  5. Paste in big box at the site above
  6. In this big box, remove the line if InkedChar.comb == false then return end
  7. Replace
    local G, F, C, L = unpack(select(2,...))
    with
    local G = CreateFrame("Frame")
  8. Replace
    G:RegisterEvent("PLAYER_LOGIN",keiFunc)
    with
    G:RegisterEvent("PLAYER_LOGIN")
    G:SetScript("OnEvent",keiFunc)
  9. Download and unzip into Interface\AddOns
If WoW was running, completely restart WoW to see what you installed.
  Reply With Quote