[Classic] 1.13.2.32600
How to obtain my threat value to the unit ?
I would appreciate if anyone can help me.
Thank you for your time.
[Classic] 1.13.2.32600
How to obtain my threat value to the unit ?
I would appreciate if anyone can help me.
Thank you for your time.
You cannot, packets that send threat values were deleted from its bfa-base code, you need to estimate threat based on damage/healing, just like addons did way back in past
What you are asking is only doable through GitHub - EsreverWoW/LibThreatClassic: A library for multi-target threat tracking in WoW Classic (1.13.2).
you will need to get the libraries required elsewhere though since the repo does not provide them (they are referenced inside embeds.xml)
Then
local threatlib = LibStub("ThreatClassic-1.0")
threadlib:UnitDetailedThreatSituation(unit, target)
should work.
or
local tanking = UnitIsUnit('player','targettarget')
is another way but not that much guaranteed to get results.