I've been updating Pointwatch on -dev all day. It now looks like Attainment and has most of the same functionality, but will probably never break. It also tracks CP/hr, current CP, and current number of job points. Also, it lets you format the values as you like for display and hide what you don't like by loading user code to determine what is put out. For instance, this is the default outside of Dynamis:
Code:
xp.current..'/'..xp.tnl..'XP '..lp.current..'/'..lp.tnm..'LP ['..lp.number_of_merits..'] XP/hr:'..string.format('%.1f',math.floor(xp.rate/100)/10)..'k '..cp.current..'/'..cp.tnjp..'CP ['..cp.number_of_job_points..'] CP/hr:'..string.format('%.1f',math.floor(cp.rate/100)/10)..'k'
I personally will be using this, because I'm xp capped on every job and give zero shits about how far into my current merit point I am:
Code:
'XP/hr:'..string.format('%.1f',math.floor(xp.rate/100)/10)..'k ['..lp.number_of_merits..'] '..string.format('%.1f',math.floor(cp.current/100)/10)..'/30kCP ['..cp.number_of_job_points..'] CP/hr:'..string.format('%.1f',math.floor(cp.rate/100)/10)..'k'
There are more variable options than the ones used in the above code. You can format it however you want, as far as I know. It's all documented.
Currently this addon is on -dev, but it looks like we're getting close to merging the two branches again. It should work on either version of Windower, but it's just only in the -dev addon repository right now. Let me know if you find problems with it.