Moderator: MacroQuest Developers


Do you want it to display that each time you level?No_Idea_At_All wrote:Nice little macro, I've been looking for something like this.
A feature I would love, if you feel so inclined is like a timer, that could track different things. 1 section to track how long it takes to get a level/AA/GLP/RLP ( eg. /echo Last Level took 1hr 14min to obtain.) Also another section that shows how fast you get XP from starting the macro, like a XP/min calc.
BTW Thanks for the work done so far.


Well it doesn't take long these days to get an AA level. I guess the use is mainly for soloing. Someone tells me of a new soloing ground and I think I'll go check it out, but after many forgetting to check times etc etc I can never really tell whether the place is better or worse. Also with PLing (which I do from time to time) it would help in deciding if it is time to go somewhere else.Kambic wrote: Do you want it to display that each time you level?
The main problem I see with this (because I'm doing everything within the macro, and not using .ini files) is that unless you are really low level, being powerleveled, or just on a serious xp grind for hours, you won't be running this macro long enough to gain two levels (would have to gain two in order to calculate time). I'm not saying it can't be done, it just seems like there is not a lot of practicality.
There are a lot of things I know I could add (ie, every kill it calculates how many more of those you'd have to kill to ding, etc.) but it just seems like spam every time you kill something. I trimmed it down a lot, just to make the output easily readable (quick glance every kill).
It would not be hard to for me to change this into an #include file though, if there is interest. I know in the snippets section though someone has already put one together similar to that (with .ini implementation, and some other stuff I'm really not interested in).


Try looking for this code and make sure the /varcalc is all on one line, it jumps out at me on my resolution as a possibility for word wrapping to mess up a copy/paste job.Tried running this yesterday, and when I got experience it showed me how much I gained but then gave a bunch of errors about group, raid, solo experience numbers. Used it "Out of the Box" with no modifications. With my limited understanding, it's growing at its own pace, looking through I did not find anything for an INI, or where a character specific change was reqired.
Code: Select all
Sub AddSoloGroupRaidStandardExp
/varcalc TotalStandardAbsoluteGainedExp
({TotalStandardSoloGainedExp}+${TotalStandardGroupGainedExp}+${TotalStandardRaidGainedExp})
/return
Code: Select all
Sub AddSoloGroupRaidStandardExp
/varcalc TotalStandardAbsoluteGainedExp (${TotalStandardSoloGainedExp}+${TotalStandardGroupGainedExp}+${TotalStandardRaidGainedExp})
/return

