Yeah I know but I never used it cause I didnt know what it was, I will now though.
Yeah I know but I never used it cause I didnt know what it was, I will now though.
Molten Feather stacks up to 3, increasing your run speed by up to 100%(i think it was) and allowing you to cast while moving, when you get 3 stacks you also get a second buff which lasts for 20 seconds that allows you to fly. The Molten Feathers buff lasts for around 20min or untill the end of burn phase. (the flying buff does not remove molten feathers)
Ha, I figured something out! So yeah, you can just use the actual name of the debuff for the debuff ID, that makes things easier. =)
googlebee:
Heres something you can add to ur abilitys:
Spell Name: Bear Form
Spell ID: 5487
Target: Player
Lua:I use this for pvp purposes, but you can lower the 35% to something lower to be used on raids so u dont die so fast!Code:local _, _, _, Br = UnitBuffID("player", 5487) local bhealth = 100 * UnitHealth("player") / UnitHealthMax("player") if Br ~= nil then return false end if bhealth <= 35 then return true end
Also you can add more lua code to be used on raids, like checking if tanks are alive, if not turn bear and cast taunt on target.
Heres other for pvp purposes.
Spell Name: Maim
Spell ID: 22570
Target: target
Lua:Enjoy,Code:local mCP = GetComboPoints("player", "target") local MMstart, MMduration = GetSpellCooldown(22570) local MMcooldown = (MMstart + MMduration - GetTime()) if MMcooldown > 0 then return false else if mCP == 5 then return true end end
Best regards![]()
It took quite a while to write all the code and learn what I needed to get it to work, but I finally did it! I made a profile for my warrior that pauses the bot whenever any modifier is pressed, shift/alt/ctrl, so now I can access my other abilities when I need to in PVP.
Done code for hunter trap but have some limitations. The trap ll be launched when mouse is not over any unit, to avoid unwanted target switch (PQR mass click area to place spell).
- Hold down RIGHT SHIFT to launch Ice Trap
- Hold down RIGHT CONTROL to launch Freezing Trap
- Hold down RIGHT ALT to launch Explosive Trap
- Done cleanup on code to avoid warning spam, the rotation is now usable disabling the setting "Require Combat for Auto Mode" but is not advisable (dps as soon you target any enemy)
Done changes on Holy Priest code to avoid conflic with default PQR hotkeys:
- Hold down RIGHT SHIFT to place Lightwell at mouse location
- Hold down RIGHT CONTROL to place AoE heal at mouse location if Chakra Sanctuary is active
The package includes all my profiles with latest fixes:
xeron300811bPQRProfiles.zip
Im still having troubles with spells that have an alternative SpellID when spell glow highlighting like Pyroblast, Aimed Shot, Traps, Impact, etc... dont seem to work with the build in CastSpellByID (tried all spellid) but works using CastSpellByName. Any idea Xelper?
---------- Post added at 11:34 PM ---------- Previous post was at 11:10 PM ----------
Got more fun this week programming rotations than playing the game itself, gona have a heartattack when patch 4.2.2 is released and PQR stop working.
Last edited by sheuron; 08-29-2011 at 11:16 PM.
lol i'm with u sheuron, out of every program and macro i've come across, this is the only program that ever sparked my intensity to learn LUA so much haha. I've been slowly editting and changign the profiles to my own perferences and have been loving it!
gonna be sad when next patch comes out :'( my free interrupts will be gone![]()
@ Xelper - is there a way to share variables between abilities...
PS. Thankyou for the spammable hot key implementation in 1.0.9 tis a godsend when shit hits the fan
New patch, new PQR is needed. Should get an updated version out today.
@diesall: I want to say that you can just create a variable without the "local" infront of it and it should be a global... but it might only be relevant in the scope that it was declared due to how this works... I will come up with something that will allow you to create global variables if this doesn't work, just let me know.
i cant wait for the new version =P. Thx for such an amazing tool