mentally huge fan of yours are you going to work on affliction warlock profile, right now affliction is the highest raid dps in mop.
I am trying to make a Resto shaman Profile and im looking at Sheuron's resto profile for some sort of a starting place and i see this array called members (or atleast i think this is an array) do i have to initialize this array or is it build into PQR/Wow for players in a raid/group. is there any resources i could read about this.
Thanks a bunch!
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
I've been doing everything I can to see if I can figure out why some rotations just quit working on some bosses or if this is talent related or what the issue is. The debug mode option can that be logged with chat logging turned on or does it log automatically in PQR?
Would anyone know how to write a function for a mage so that if insta pyro comes up, It will cast POM if it is up, Alter time if POM Goes up, and then spam the living shit out of Pyroblasts?
Granted im rather sure that would be multiple functions.
So far i have...
Alter Time:
POM:Code:if UnitBuffID("player",48108) and UnitBuffID("player",12043) then return true end
Code:if UnitBuffID("player",48108) then return true
Last edited by kabman; 11-06-2012 at 03:53 PM.
anyone have a link for updated rogue profs?
@Kinkeh
Sometimes your DW frost rotation locks up saying "not fully depleted runes" and just spams plague leech until the dots tick off. Is there any way to fix this?
@Xelper: It's something similar to what I coded. (Only that mine was a lot less in-depth like that) By the looks of it, it should work perfectly.
@tigole1: I already have a pretty decent Affliction profile I created solely for my Herald of the Titans alt character, but I'm pretty sure I can update it to level 90 standards as soon as my Demonology profile is done.
Only missing the AoE rotation guys, and it should be close to perfect.
One thing I noticed while testing it out is that after a minute or two, it completely stops, until you move for a second or two. I tried stopping the profile and casting a spell manually, and similar things, but, the entire WoW Client was un-responsive. Abilities couldn't be triggered or even forced, until you had moved for 1-2 seconds. I'm not sure what the cause of that is. It shouldn't be morphed spells or the UnitPower that is behind it. (I only experience this on Demonology: Make a basic profile to spam cast Shadowbolt, it will stop the rotation -- and your client at 1000 Demonic Energy.) -- Not sure if this is something you can look into, Xelper?
@derfred
From simulationcraft : plague_leech,if=talent.plague_leech.enabled&(dot.blood_plague.remains<3|dot.fros t_fever.remains<3):
SpellID=0
------------------------------------
local start, duration, runeReady1 = GetRuneCooldown(1)
local start, duration, runeReady2 = GetRuneCooldown(2)
local start, duration, runeReady3 = GetRuneCooldown(3)
local start, duration, runeReady4 = GetRuneCooldown(4)
local start, duration, runeReady5 = GetRuneCooldown(5)
local start, duration, runeReady6 = GetRuneCooldown(6)
local FF,_,_,_,_,_,FFtimer = UnitDebuffID("target",55095,"player")
local BP,_,_,_,_,_,BPtimer = UnitDebuffID("target",55078,"player")
if PQR_SpellAvailable(123693) then
if ((runeReady1==false and runeReady2==false)
or (runeReady3==false and runeReady4==false)
or (runeReady5==false and runeReady6==false)) then
if (FF and FFtimer - GetTime() < 3) or (BP and BPtimer - GetTime() < 3) then
SpellCancelQueuedSpell() CastSpellByName(GetSpellInfo(123693),nil) return true end end end
local start, duration, runeReady1 = GetRuneCooldown(1)
local start, duration, runeReady2 = GetRuneCooldown(2)
local start, duration, runeReady3 = GetRuneCooldown(3)
local start, duration, runeReady4 = GetRuneCooldown(4)
local start, duration, runeReady5 = GetRuneCooldown(5)
local start, duration, runeReady6 = GetRuneCooldown(6)
local FF,_,_,_,_,_,FFtimer = UnitDebuffID("target",55095,"player")
local BP,_,_,_,_,_,BPtimer = UnitDebuffID("target",55078,"player")
if PQR_SpellAvailable(123693) then
if ((runeReady1==false and runeReady2==false)
or (runeReady3==false and runeReady4==false)
or (runeReady5==false and runeReady6==false)) then
if (FF and FFtimer - GetTime() < 3) or (BP and BPtimer - GetTime() < 3) then
SpellCancelQueuedSpell() CastSpellByName(GetSpellInfo(123693),nil) return true end end end[
Awesome thanks!
Last edited by derfred; 11-06-2012 at 10:13 PM.
@cpowroks take a look at sheepmoon's resto profile as well, maybe his might help. from what i know, he used some of sheurons code as well.
http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] MOP profiles)
anyone have a good mage pvp profiles, frost and fire? plz!
anyone know why i encounter this error ?
the rotation works fine for awhile, and then it spits out GetSpellBookItemName() error
PHP Code:
local Immolate = UnitDebuffID("target",348,"PLAYER")
if select(5, NUI("player")) >= 1 and Immolate == nil then
RunMacro("aoe")
end
Last edited by momo1029; 11-07-2012 at 02:57 AM.