@ firepong what you think how long to work for finished?
@ firepong what you think how long to work for finished?
@Xelper
I'm still running into a problem of PQR, after a while, it freezes my game up. Sometimes, I can just do /console reload and it will work, but most of the times, I have to physically log out to fix the problem. Have any ideas on whats happening even though I'm not getting any LUA errors? Could PQR be injecting some jumbled up code in there to make it happen?
Boomkin Profile 2.0 W/Focus DoT Support
Changelog:
- Added Moonfire/Sunfire and DoTs on Focus. If no focus, it will still apply DoT's
- Added Insect Swarm DoTs on focuse. Same as above about if no Focus.
- Think thats it? Not sure.
Instructions:
- Set focus if you want it to DoT up focus targets with Insect Swarm and Moonfire/Sunfire (respectively in which eclipe you are in).
- Hold Left Shift to Use Starfall and Wild Mushrooms for AoE.
- Force of Nature will be used if the target that you are fighting has more than 10x your max health (Same as before)
Soon to be added:
- Typhoon support (you will need to have it glyphed)
- Anything else need to be added? Let me know
LINK IS IN SIGNATURE
Last edited by firepong; 03-13-2012 at 06:40 PM.
Hello,
many thanks for PQR, nice work, well done, but please
- put all in one maximized window with tabs (settings, abilities, rotations)
- make abilities list in "abilities tab" resizeable or auto adjust
- save window position and size
Last edited by osbornx22; 03-13-2012 at 07:31 PM.
made a few quick updates to the wiki, that need to be adhered to , to better structure content presented to the user
- a navigation menu has been added for all classes rotation lists
- a menu has been setup for quick access to various PQR related content
- a table has been implemented in each classes rotations page, use this to add your roation to the wiki (instructions follow on usage)
rotation field: use this field to link to either a page about your profile, a download link on the forums or on the web
version: use this field to add a version number if you so desire
Author: self exlpanitory
PQR Version: use this field to inform users what version of PQR your rotation was meant for
updated: use this this field to post the date you last updated the rotation
notes: use this this field for any short notes about your rotation (please dont fill this full of shit, if you have alot of notes create a new page for your rotation and link to it from the rotation field)
to add another row to the table right click the table and choose insert row from the context menu()
this will also allow uses to keep there rotation grouped up by author simply add another row after your last rotation entry
please update your rotations on the wiki with the relevant information, I've done a basic dump of all rotations into their proper tables, to get the ball rollling....
I was having a similar issue, and found that it was my addon SexyCooldown. Once i turned it off, PQR has run beautifully since. I do have one question in regards to trinket usage. Is there anyway to ONLY use my trinkets if I am in melee range of a boss? I have incorporatedinto your Firekitteh profile, but it is annoying when it uses trinkets while away from boss, like hiding behind the boulders on Morchok lollocal _,cd,havecd = GetInventoryItemCooldown("player",13)
if cd == 0 and havecd == 1
and UnitChannelInfo("player") == nil
then
UseInventoryItem(13)
return true
end
So it would look like this
and TYVM for this!!!Code:if IsSpellInRange("Claw","target") ~= 1 then return false end local _,cd,havecd = GetInventoryItemCooldown("player",13) if cd == 0 and havecd == 1 and UnitChannelInfo("player") == nil then UseInventoryItem(13) return true end
Didn't work diesall :confused: it sill used trinks out of range. But on the other hand Firepong, making that latency change got me up to 99% on WoL, almost ranked! MUCH MUCH better!!
EDIT: apparently it didnt save >.> I will try again and report back
i
Not that I know of. I have not added in any other changes to pop trinkets/racials in my rotations. what he wants is this:
Name: Trinket
SpellID: 0
Delay: 0
Tell me how that works. If your mangle spell is within range of being used, then it will cast this trinket. Truthfully, I like to use my trinkets manually instead of auto.Code:local _,cd,havecd = GetInventoryItemCooldown("player",13) if cd == 0 and havecd == 1 and UnitChannelInfo("player") == nil and IsSpellInRange(33876, "Target") == 1 then UseInventoryItem(13) end
Last edited by firepong; 03-13-2012 at 09:15 PM.