• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

Prayer of Mending Tracker

  Download the Curse Client

Project Updated:
Files Updated: Thu, Apr 16 2009
Supports Game Version: 3.1.0
Category: Buffs & Debuffs, and Priest
Tags:

, , , , and [Edit Tags]

Project Manager: elidion
Additional Authors: No additional authors
Current Version: PoM Tracker 2.61
License: All Rights Reserved
Avg Daily DL (last 30 days): 83
Downloads Total: 98,136
Favorites: 433
Comments: 130
  • Contests
  • About Prayer of Mending Tracker
  •  

A mod that tracks who Prayer of Mending is jumping to and how many charges you have left. Displaying it in a small movable window frame.

/pom for all command line options

New Features in 2.6:

  • Now supports proper cooldown of Divine Providence Talent
  • Tested in PTR for 3.1

  • /pom options

- Lock Position: Hides the Title Bar and anchors the window in place
- Fade When Not Active: When you don't have a PoM going, the frame fades out
- Enable Sound: Makes a sound when your PoM dies
- Reset Healing Each Cast: Healing is Reset to 0 every time you cast PoM
- Enable Healing Totals: Displays the healing totals frame
- Enable Tier-7 bonus: Adds an extra charge for T7 bonus

If you are upgrading from an older version and having issues, try deleting the saved variables file in your WTF\Account\username\server\playername\Saved Variables\PoMtracker.lua

  • Downloads (4)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  Prayer of Mending Tracker PoM Tracker 2.61 Release 3.1.0 9,658 4/16/2009
  Prayer of Mending Tracker PoM Tracker 2.6 Release 3.0.9 7,333 3/9/2009
  Prayer of Mending Tracker Pom Tracker 2.51 Release 3.0.3 12,598 12/18/2008
  Prayer of Mending Tracker PoM tracker 2.5 Release 3.0.2 8,495 10/14/2008
  • 1 page(s)
Advertisement
  • Screenshots (1)
  •  
  • Comments

Add Comment

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • cpxgreg said 

    Quick Question -- How do you move the gui? I don't like it smack dab in the middle of my screen? I did use the /pom gui unlock to try to move it, but when I grab it with my mouse, only my direction of where my toon looks moves, not the actual pom gui?

    Any suggestions would be appreciated?

    Reply Report Permalink
  • elidion said 

    You click the title bar to move it. If it's unlocked it should show the "PoM Tracker 2.61"...click on that text to move it. Once you have it where you want, you can lock it and that will disappear.

    Reply Report Permalink
  • cpxgreg said 

    Thank you very much.
    That did the trick! :)

    Reply Report Permalink
  • This addon seems no function with Traditional Chinese version.
    Is there any way to solve?
    I really like the design of this UI.
    It's such a sad thing that it cannot work in TWOW.

    Reply Report Permalink
  • auxabois said 

    I would like this to work with the T7 bonus, right now it still starts at 5.

    Reply Report Permalink
  • elidion said 

    Seriously? I'll get right on that then...let me close my eyes....yeah....okay I think I got something...right...just a second...there it is...ahhhhhh

    All fixed, type /pom options and check "Enable Tier-7 bonus".

    Reply Report Permalink
  • Win. =)

    Reply Report Permalink
  • Zair said 

    Any chance of adding an option to change the color of the frame when PoM dies? I would like to have the frame turn red or something when PoM dies to really remind you to recast.

    Reply Report Permalink
  • Any chance this will work on ruRU locale?

    Reply Report Permalink
  • http://www.mediafire.com/?wmvi1maj2na

    Reply Report Permalink
  • elidion said 

    Cooldown Reduction of Divine Providence is in version 2.6, should be up shortly.

    Reply Report Permalink
  • Rudyolph said 

    Does this addon account for the cooldown reduction with Divine Providence? I seem to be able to cast my POM's much sooner than what the little timer bar is showing? And I'm talking about the portion where it goes from blue to red showing you that you can cast it again...not the full 30 second countdown.

    Reply Report Permalink
  • elidion said 

    No it doesn't I didn't even know that existed, so I'll try to get it added. Since I don't play a priest anymore the only way I know if something is wrong is if people let me know here.

    Thanks for the info, i'll see to this, fortunately since it's a talent I can spec into it with my 70 priest to test it, unlike the T7.

    Reply Report Permalink
  • farkus3 said 

    Great mod, very useful. Couple ideas, would it be possible to add a small indicator to the frame show the CD of PoM? Also, anyway to remove the text from the frame and possibly make the size adjustable?

    Reply Report Permalink
  • Distomos said 

    HOW TO FIX FOR T7 BONUS:

    1. Open PoMTracker.lua

    Find: pomcharges = 5
    Replace with: pomcharges = 6

    Find: pomcharges == 5
    Replace with: pomcharges == 6

    Find: ("5: "..pomname)
    Replace with: ("6: "..pomname)

    *** If you lose the T7 bonus, go back to the original version posted here.

    Reply Report Permalink
  • Great mod but would love an update to include T7 2pc set bonus.

    Reply Report Permalink
  • elidion said 

    I will try to get an update for this, the problem is I don't have T7 to test it out because I don't play my priest anymore :( yeah shoot me

    Reply Report Permalink
  • Distomos said 

    Yes. I am definitely missing this. :(

    Reply Report Permalink
  • Distomos said 

    This add-on does not work with the T7 set bonus ("your POM will jump an additional time"). If you have the T7 bonus, it will simply stop calculating entirely and remain blank.

    Reply Report Permalink
  • The initialization of pomtracker_settings creates redundant copies of settings which are never used again. (Pull up a PoMTracker.lua out of the SavedVariables folder to see what's being created.) The code that goes

    pomtracker_settings = {
    { gui = "show" },
    { hide = "unlock" },
    { fade = "disabled" },
    { sound = "enabled" },
    { total = "enabled" },
    { heal = "enabled" }
    }

    is the buggy part. It's immediately followed by the init code which creates keys that *do* get used everywhere else. The nested tables above are never touched, can't be changed, and don't need to be there. You can replace that whole thing with "pomtracker_settings = {}" and then let the existing code after that point do the setup.

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 8,518 HealBot Continued Buffs & Debuffs, Unit Frames...
  2. 5,844 Decursive PvP, Buffs & Debuffs, and...
  3. 2,482 PallyPower Buffs & Debuffs, and Paladin
  4. 1,919 Skada Damage Meter Buffs & Debuffs, Boss Encounters...
  5. 1,212 EventAlert Buffs & Debuffs