sorry for the lack of updates on my part. My wife's dad passed yesterday on the 22nd so we are dealing with that. I'm going to be taking a break from this project until things settle down. I'll post again with any updates.
sorry for the lack of updates on my part. My wife's dad passed yesterday on the 22nd so we are dealing with that. I'm going to be taking a break from this project until things settle down. I'll post again with any updates.
Please if someone helped you donate rep to them.
Message: [string "function IsInRange(u1,u2) ..."]:5: attempt to compare nil with number
Time: 05/23/12 22:37:47
Count: 2169
Stack: [string "function IsInRange(u1,u2) ..."]:5: in function `IsInRange'
[string "function IsInRange(u1,u2) ..."]:53: in function `getnexthop'
[string "function IsInRange(u1,u2) ..."]:79: in function `findGoodTarget'
[string "function IsInRange(u1,u2) ..."]:101: in function `?'
[string "if PQR_Addon_Loaded == nil then..."]:759: in function `PQR_NextAbility'
[string "if PQR_Addon_Loaded == nil then..."]:532: in function `PQR_ExecuteRotation'
[string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
Locals: u1 = 5
u2 = 3
range = nil
(*temporary) = "raid5"
(*temporary) = "raid3"
(*temporary) = "attempt to compare nil with number"
ONYA Restor profile error :\
whats wrong?
is it possible to add a dispell check for cleanse on holy pala profile so it will dispell only the bad debuff on spine hc and leave the other one up ?
For myself I just use this.
I could do something more elegant but I'm too lazy to.Code:Spell ID 0 Recast Delay 4000 Actions : /cast Disenchant|/use item:52306|/use item:52307|/use item:52308|/use item:52309|/use Carnelian Spikes|/use Lesser Celestial Essence Code: return true
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
Looks like Blizzard is pushing 15726 beta. Any chance for offsetes?
is there a way to find the pqr for 4.0.6? i want to pwn in pserver too with some non retail friends
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
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
Is sheuron's Fire mage PvP profile the best out?
That's why I do this (From my [Blinded] Enhancement Updated Rotation):
Notice the first Spell Delay up thereCode:if PQR_RotationStarted == true then PQR_RotationStarted = false PQR_AddToSpellDelayList(0, 0, 1) --All Spell's Without ID's PQR_AddToSpellDelayList(8024, 0, 1) --Flametongue Enchant PQR_AddToSpellDelayList(8232, 0, 1) --Windfury Enchant PQR_AddToSpellDelayList(77472, 0, .75) --Greater Healing Wave PQR_AddToSpellDelayList(60103, 0, .3) --Lava Lash PQR_AddToSpellDelayList(1535, 0, .3) --Fire Nova end
It goes with this:
Name Weapon Enchants
SpellID: 0
Delay: 750 (Jus=t in case, not being used since no SpellID is specifically being used.
With the above code + the second code box, it work's a charm and 99% of the time never applies the same Weapon chant twice.Code:local hwv, hwd = GetWeaponEnchantInfo() if hwv ~= 1 then CastSpellByID(8232) -- CastSpellByName(GetSpellinfo(8232)) return true end local _,_,_,nwv,nwd,_ = GetWeaponEnchantInfo() if nwv ~= 1 then CastSpellByID(8024) -- CastSpellByName(GetSpellInfo(8024)) return true end
Have CastSpellByName in there in case I see the rotation locking up. But since it's only using those spells a hand full of times, it should rarely, if ever, happen.