FDLogger
FDLogger is a simple addon that tries to track when which hunter was FD'd.
As normally FD does not generate combat log entries at all, not even for the hunter in question, this is kind of tricky.
This addon makes use of IsUnitFeignDeath() and the UNIT_HEALTH event which fires when a hunter FD's, even though his health is not changing.
For each UNIT_HEALTH event for a given unit, UnitClass() (language independent) is checked. If it's a hunter, IsUnitFeignDeath() is checked.
If that returns true, an entry is made into the table "FDLog", containing a timestamp and the name of the player that was feigning death at that time.
The timestamp is a unix timestamp style timestamp with .123 decimal places added for millisecond precision (so it can be converted to a date format like the combat log's, for relatively obvious reasons or be imported into something like Excel).
FDLog is marked as a saved variable, so after you're done raiding and yelling at hunters who claim to have FD'd but still pulled aggro, you can get all the data you need from your SavedVariables folder.
Enjoy - I know I got it into a working state ;D (our hunters didn't. heh.)
Certainly not a joke.
Do you know how Omen used to have to check to see if a hunter had successfully FD'd?
They had to check the UIErrors frame (the 'red error text' frame) because nothing else worth using was available to addons.
Because I made this addon to nail those idiots who kept pulling aggro and claiming "but I FD'd!" I had to use a method that would only give positives when the spell actually worked.
UNIT_SPELLCAST_SENT also fires for casts that are resisted afterwards.
Either something changed recently or you're just completely confused. ;)
Could you maybe post a combat log (gathered via /combatlog)?
As normally FD does not generate combat log entries at all, not even for the hunter in question, this is kind of tricky.
Is it a joke ?? Ijust tested FD on my hunter and there is events... UNIT_SPELLCAST_SENT, arg1 is the name of the caster, arg2 is the spell name. You are all wrong with this addon.