promotional bannermobile promotional banner

XP Tracker+

The only XP, Gold, Rep and Honor tracker you will ever need!

File Details

XP Tracker+ 3.2.1

  • R
  • Feb 22, 2026
  • 1.76 MB
  • 70
  • 2.5.5+1
  • Classic + 1

File Name

XPTracker-3.0.zip

Supported Versions

  • 2.5.5
  • 1.15.8

Bug Fix: Honor Per Hour tracking always showing 0

  • Issue: Honor Per Hour displayed 0 even when earning honor from PvP kills. Kill count tracked correctly but HonorRecorded never accumulated, so the rate calculation had nothing to work with.
  • Cause: The honor OnUpdate relied on a GetHonorCurrency() delta to detect gains. When CHAT_MSG_COMBAT_HONOR_GAIN fired, the API hadn't updated yet, so the delta was always 0 and the function returned early.
  • Fix: Parse the honor amount directly from the CHAT_MSG_COMBAT_HONOR_GAIN event message text (which is immediately available) instead of depending on the lagging GetHonorCurrency() delta.
  • Files changed:
    • modules/Events.lua — CHAT_MSG_COMBAT_HONOR_GAIN now captures the msg arg and parses the honor value via pattern match
    • modules/ModeHandlers.lua — Honor OnUpdate reads the parsed _lastHonorGain value instead of computing a GetHonorCurrency() delta; GetHonorCurrency() is still used for the display total