I use mine all the time. All of the effects only work if you can see it on your back though!
You can either make this happen by casting Fish for a split second, taking off and putting back on your angler (in the fishing journal), or using a macro like this twice (which does that, kinda):
#showtooltip Underlight Angler
/run PickupInventoryItem(28) did=0 for b=0,4 do if C_Container.GetContainerNumFreeSlots(b) > 0 then PutItemInBag(CONTAINER_BAG_OFFSET+b) did=1 end end if not did then PutItemInBackpack() end
/equip Underlight Angler
I have this on my bar and I press it twice (when not in combat) to turn the effects on. It even works while I’m underwater (I instantly turn into a fish).
As for “the Artifact UI has no choices”, its just busted right now, unfortunately. Luckily if you have the (blank) UI up, you can still use /run
commands to pretend to click on the invisible buttons and it works!
I did something like this first (WHILE THE BLANK ARTIFACT UI IS UP):
/run for i,powerid in pairs(C_ArtifactUI.GetPowers()) do sid=C_ArtifactUI.GetPowerInfo(powerid) print(""..powerid.." - "..sid.spellID) end
and it dumped something like:
1022 - 201880
1023 - 201881
1024 - 201882
1025 - 201883
1026 - 201884
1027 - 201887
1029 - 201944
1030 - 201945
1032 - 201948
This is showing you a mapping from power ID to spell ID. If you use this as your guide …
https://www.wowdb.com/artifact-calculator#9AAAAAAAAAAAAAAAA
You will see that you can middle click on any of those bubbles to be taken to a spell page, like:
https://www.wowdb.com/spells/201945-bloodfishing
Note the spell ID in the URL! 201945
maps to power ID 1030
from our dump earlier, so with the blank artifact UI up, we can do:
/run C_ArtifactUI.AddPower(1030)
and that effectively “clicks” on the (invisible) Bloodfishing icon in the UI. You have to use the website calculator and some “blind” clicking (/run
commands), but you can see when you successfully spend AP in the UI, and you can buy your way all the way through the tree.
Anyway, good luck to a fellow angler owner. I have one on every alt and I did all of this stuff so I can waterwalk+swim on all of em, including an alt which did this entirely in TWW. Enjoy!