Mine is almost like this, but it takes from my mouseover and converts it into spellid. If there was no mouseover it just returned nil and 0 for name and spellid. Ill have to try this out though.
Does it show the spellid with the tooltip like the adding or is it printed in chat?
Sent from my MB860 using Tapatalk
Still working on v2.2 of my Unholy DK profile. Several tweaks have been made to the Scourge Strike build to more closely replicate arena play.
Next version will likely have PQInterface notifications and the affectionately-named "nuke" function, and possibly triggers based on events read from the combat log.
Please PM me with suggestions. I did RBGs with a team kind enough to bring an Unholy DK, and did excellent damage. Healers melt ^^
@Bubba
i have tried to fix bubbas holy pala profile for 2.1 but i simply dont get it PQR crashes with my changes can someone fix this?
Look at my sig..... The answer is there!!!
Also special thanks to my Beta Account provider, leaving anonymous unless he comes forth to claim praise XD
Working on making a high quality leveling Profile for monks right now, going to be focusing on Mistweavers since some1 is already working on Windwalker![]()
i have a total of 5 accounts, so far only one beta invite which i gave to bubba. when/if i get another beta invite, i will give it out to another profile creator. we gotta keep PQR rolling ;p
These are valid points and I appreciate your concerns. Just to be clear, we would not openly express ourselves for the "purpose of cheating". Firstly, I am seeing if there is interest in forming such a team, and if so, then we would take it offline to form. The guild wouldn't be publicly advertised on these boards. It wouldn't be an open guild for all PQR users to join and get assistance. Ideally, we will form with board users that can be trusted. Again, at this stage I'm strictly taking names to see if it's doable.
On a personal level, I would rather play with fellow players that take the same approach to the game that I do.
If Xelper is against the idea of this then by all means I will remove my posts to protect the integrity of his work.
There's really nothing stopping anyone from mentioning PQR in any guild, trade chat, forums, etc... I've seen posts come up on MMO-champion about it (that's actually how I heard about PQR). There's no telling when it may get into the wrong hands. The most that one can do is put controls in place to help prevent it from being placed in the wrong hands. Obviously, we would not condone speaking about PQR in Guild chat. And you're right, there are forces outside of your control. Someone could still slip up and do it. Just like anyone could still report this page to Blizzard or post about it on MMO-champion. Any program that gets popular will naturally become riskier to use. We've seen it before with other programs as you mentioned.
Works great! Makes focusing on the tactics to the fights much easyer! +rep
All it takes, is one person to invite a buddy who knows nothing about PQR, and that entire plan backfires. It's not a good idea. I understand that you can't really control certain people mentioning it outside of this forum, but creating any sort of guild where the entirety of said guild is made up of PQR users (who will obviously mention it to their friends and possibly even invite them) is a bad idea.
That's another level of advertisement you CAN control, and the best course of control is to scrap the idea entirely. I know you're not talking about naming the thing "PQR Central" or something like that, but inviting a host of PQR users into one central community outside of these forums is just asking for trouble.
Last edited by Taran32; 04-01-2012 at 10:14 PM.
It shows in the tooltip (mousing over abilities, clicking an ability in the combat log, mousing over buffs, etc).
@bu_ba, if you're not planning to throw that up on the SVN immediately, let me know if you need a tester for Mistwalker, even if it's just low-level, bare-bones. PM or email me! Hopefully my idTip suggestion helped you out, if you hadn't already figured it out. :P
lol currently getting some errors from my data file after i added in some of the monk data..... so until i get that sorted going to keep this under wraps XD also since I have been dealing with that stopped leveling
i'm gonna be heading to bed cuz i got work in the morning, but i'll figure this out by tomorrow night i'm sure, probably typoed somewhere ;p
and ty for the idtip thing... i had worked out a work-around, but they disabled /script in game so it wouldn't have worked anyways so that did speed it up haha!!!
if there a way to check combo points on the last target i.e. checking combo points on a player you just killed so you can SR off them,
right now am thinking about a mouseover check but not sure if theres an easier way then
using faerie fire as a range check as its 35 yards and I no SR is 100 but wanted a cut off point (mainly for if I can get the target working properly any help for my noobishness would be greatCode:local ran = IsSpellInRange("Faerie Fire", "mouseover") local pCP = GetComboPoints("player", "mouseover") local sr, _, _, _, _, _, srtimer = UnitbuffID("player", 1079) local cb = UnitAffectingCombat("player") if sr and cb == nil and ran ~= nil and pCP > 0 then return true else if sr and ran ~=nil then if cb == nil then if pCP >1 then if srtimer - gettime () <9 then return true else if pCP >2 then if srtimer - gettime () <18 then return true else if pCP >3 then if srtimer - gettime () <27 then return true else if pCP >4 then if srtimer - gettime () <36 then else if pCP ==5 then if srtimer - gettime () <45 then return true end end end end end end end end end end end end end