@buba + mentally
Excuse my dumb question: What is this custom table feature in ur profiles and how do I use it?
Thx 4 answers
@buba + mentally
Excuse my dumb question: What is this custom table feature in ur profiles and how do I use it?
Thx 4 answers
I'm trying to make a change to Boss's avoid hour of twilight for my rogue and this is my current setup:
What I want is that if I don't have Cloak of Shadows up, it clicks Heroic Will at about 1 second (due to lag) but if I have it up, it shouldn't click it.Code:-- Hour of Twilight local HoTcast,_,_,_,_,endtime = UnitCastingInfo("boss1") local HoT = {109415, 106371, 109416, 109415, 109417} for i,v in ipairs(HoT) do if HoTcast == GetSpellInfo(v) and endtime/1000 - GetTime() < 1 and UnitBuffID("player", 31224) ~= nil then RunMacroText("/click ExtraActionButton1") end end
Would this do the job? I can't really try it out at the moment but it would be awesome because at the moment, the only thing I need to do on that boring fight is click hour of twilight if I haven't clicked CoS :P
@Crystal_Tech
Been trying out your demo profile on a dummy but it doesnt seem to cast anything more than dots
Do you know what might be causing this?
with the latest build from the updater PQR_UnitFacing("target","player",true) is always returning the same angle and PQR_UnitFacing("target","player") is always returning true.
*edit*
PQR_UnitInfo seems to be returning static values too
Last edited by onya; 05-16-2012 at 04:09 AM.
Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH
Xelper, I must again give you praise for your retri-profile, it really works wonders <3
Xelper, A while back on the other thread you posted a very simple aoe switch for your profiles, I can not find it.
It was called rotation switch test, it switched between profiles when you pressed ctrl.
If someone has it or can post it; I will rep you.
Is this compatible with the Beta?
I assume you're talking about HPally?
What you do is Highlight a unit in your group and press Right-Ctrl. This will add someone to the Custom Table. Now whenever you want to enable/disable the custom table you type in. /uct or /usecustomtable. Now you'll see a chat message letting you know which Table you are using to heal. If using the Custom Table you will only heal the people you have previously selected. Now I can't say this is 100% bug free at the moment. But last I tested it in a raid it was working.
I think you might be looking for the PQR function PQR_SwapRotation(). I will be looking to this function for the "Zealot Mode" we talked about. Example code I think should look like, and thanks again bu_ba_911 for letting me know about this function![]()
Code:local zealotry = PQR_UnitBuffID("player", 85696) if zealotry ~= nil then PQR_SwapRotation("Zealot Mode (Ralphiuss)") return true end if zealotry ~= 1 then PQR_SwapRotation("PVE Retribution (Ralphiuss)") return true end
Last edited by Ralphiuss; 05-16-2012 at 10:25 AM.
@fredrik1984: Here's an example from our Shadow profile:
This then imports:Code:-- Hour of Twilight if IsLeftShiftKeyDown() and not GetCurrentKeyBoardFocus() then local PQ_Spells = PQ_PriestSpells local PQ_Disp = PQ_Disp if PQ_Spells[PQ_Disp].known and PQR_SpellAvailable(PQ_Disp) then SpellStopCasting() CastSpellByID(PQ_Disp, "player") return true end else local HourOfTwilight,_,_,_,_,endTime = UnitCastingInfo("boss1") for i=1,#PQ_HOT do if HourOfTwilight == GetSpellInfo(PQ_HOT[i]) and endTime/1000 - GetTime() < 1 then SpellStopCasting() RunMacroText("/click ExtraActionButton1") end end end
then PQ_PriestSpells (our Priest skill table) and PQ_Disp (Dispersion) from our data file.Code:PQ_HOT = {109417,109416,109415,106371}
Should be fairly easily changed to suit your own needs. What this does is that if you haven't gotten into Dispersion before it's 1 second left, it clicks Heroic Will for you, though I'm activating it through a modifier key rather than just looking for the Dispersion buff itself.
mentally, i downloaded your shadow priest pve profile and it says...
<PQR Error> You're missing PQR_Nova_Data.lua - Make sure it's in your Data folder! The Rotation has been halted.
but i can't find the anywhere, it's not in the download or on the Team Nova site =(
Last edited by Lexi777; 05-16-2012 at 02:59 PM.
code.google.com/p/bubba-pqr-profiles/source/browse/trunk/Data/PQR_Nova_Data.lua
On the right side, at the bottom of the bar is a link that says "view raw data." Right click that link and click save link as and put it in your Data Folder.
Or, if the profile has links in there for updating through PQR, just follow my guide on the first page a few posts down on how to update profiles.
Wow thank you Firepong !! =D
Adding rep to you and mentally
*Edit
=( it says i cant give rep yet
Last edited by Lexi777; 05-16-2012 at 03:48 PM.