File Details
InterruptTrack.zip
- R
- Jun 9, 2026
- 326.93 KB
- 1.3K
- 12.0.5
- Retail
File Name
InterruptTrack.zip
Supported Versions
- 12.0.5
v3.6.0
🇫🇷 Français
IT_Trinket.lua — Tracker de bijoux personnel
Fix : barre des effets on-use
- Correction d’un problème où la barre affichait le cooldown de l’objet au lieu de la durée réelle du buff.
- Suppression du fallback
GetItemCooldown, qui renvoyait le temps de recharge de l’objet (90s+) en Mythique+. - Nouveau fallback Mythique+ :
- durée apprise via
LearnedDBlors d’une première utilisation hors M+ ; - durée définie dans
TRINKET_ONUSE_DURATIONSselon l’itemID; - valeur par défaut de 20 secondes.
- durée apprise via
- La barre affiche désormais toujours la durée du buff d’activation, jamais le cooldown de l’objet.
Ajout : détection des procs via poller OnUpdate
GetPlayerAuraBySpellID()peut retournernilen combat Mythique+, même avec un SpellID valide, à cause d’un problème de taint Blizzard affectant le résultat.- Ajout d’un poller
OnUpdateexécuté environ toutes les secondes et appelantCheckPlayerTrinketProcs(). - En raid (sans taint) : les procs sont détectés dans la seconde suivant leur apparition.
- En Mythique+ : les procs sont récupérés dès qu’ils redeviennent lisibles (hors combat ou entre les packs).
- Le scan
UNIT_AURAexistant est conservé comme système complémentaire afin de maximiser la fiabilité de détection.
Ajout : table TRINKET_ONUSE_DURATIONS
- Nouvelle table indexée par
itemIDcontenant les durées connues des buffs de bijoux on-use. - Utilisée comme fallback en Mythique+ lorsque
LearnedDBest vide (première utilisation directement en M+).
Fix : Regard du Prophète d'Aln
- Correction du SpellID du proc Essence rejetée d'Aln.
- Nouvel ID :
1266687(durée : 12 secondes). - Ancien ID :
1266686, qui correspondait à un trigger interne non exposé au joueur.
🇬🇧 English
IT_Trinket.lua — Personal Trinket Tracker
Fix: On-use buff bar
- Fixed an issue where the bar displayed the item cooldown instead of the actual buff duration.
- Removed the
GetItemCooldownfallback, which returned the item cooldown (90s+) in Mythic+. - New Mythic+ fallback order:
- duration learned through
LearnedDBfrom a previous use outside Mythic+; - duration defined in
TRINKET_ONUSE_DURATIONSfor the correspondingitemID; - default value of 20 seconds.
- duration learned through
- The bar now always displays the on-use buff duration, never the item's cooldown.
Added: Proc detection via OnUpdate poller
GetPlayerAuraBySpellID()may returnnilduring Mythic+ combat, even when provided with a valid SpellID, due to an unavoidable Blizzard taint issue affecting the result.- Added an
OnUpdatepoller running approximately once per second and callingCheckPlayerTrinketProcs(). - In raids (no taint): procs are detected within one second of appearing.
- In Mythic+: procs are captured as soon as they become readable again (out of combat or between pulls).
- The existing
UNIT_AURAscan remains active as an additional detection layer for maximum reliability.
Added: TRINKET_ONUSE_DURATIONS table
- New
itemID-based table storing known on-use trinket buff durations. - Used as a Mythic+ fallback when
LearnedDBis empty (first use occurs directly in Mythic+).
Fix: Aln's Prophet's Gaze proc ID
- Corrected the SpellID for the Rejected Essence of Aln proc.
- New ID:
1266687(12-second duration). - Previous ID:
1266686, which was an internal trigger spell not exposed to players.

