My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Do or Die
[PQR] Monk Mistweaver
im looking for a ret pally pvp profile plzzzzzzzzzzzzzzzzzz
Not sure if I missed an answer but I've seen this posted a few times, has anyone been able to fix this? I update my Addon and my Profiles via the SVN and unless I should be moving files somewhere else I can't seem to fix it. Any help appreciated.Date: 2013-03-17 20:44:15
ID: 1
Error occured in: Global
Count: 1
Message: [string "-- PQR_PQI.lua --..."] line 439:
bad argument #1 to 'loadstring' (string expected, got nil)
Debug:
[C]: ?
[C]: loadstring()
[string "-- PQR_PQI.lua --..."]:439: Deserialize()
[string "-- PQR_PQI.lua --..."]:302:
[string "-- PQR_PQI.lua --..."]:301
[string "-- PQR_PQI.lua --..."]:332:
[string "-- PQR_PQI.lua --..."]:324
Locals:
there is not a working updated one: http://www.ownedcore.com/forums/worl...1252013-a.html
i would suggest converting a PVE one over or see how old Dominium's is.
Alpha Profiles: - All profiles with PQInterface support!
Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI
my guess is that you are using the NOVA data file for PQI, that one is way OUTDATED! you need to go and update PQI: PQInterface - PQRotation Wiki
make sure you follow the instructions at the bottom of the page for installing!
diesall you should add a check in the addon making sure that they are using the right version of the data file, this is around the 4th case of using a bad version or not having the data file i have ran into. =O
Alpha Profiles: - All profiles with PQInterface support!
Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI
Updated profiles on svn, small update to prot. Don't remember lol!
Update to ret pvp, will be another really soon that includes hands/healing on party! Almost have all the code worked out. Pve will be reworked soon if I find a gain in the new simcraft code.
Update for holy, bunch of changes to healing, should use holy power more, better ef blanketing. Please give me more feedback on this profile. I want to make it better =).
Will be an update for holy soon, still working out better aoe healing, it will pick the group of people that will give the most healing. Will try to work tank/healer/low dps prioritization into healing as well.
I would really like help gathering ids for movement impairing effects! I have added a few more through personal arenas, but if people help I'm sure we can complete it and no time!
I really appreciate feedback, two seconds of your time really helps me make the profiles better.
edit: forgot, added a new rotation to ret that cleanses. Was helpful on horridon.
edit2: would people like pqi integrated into the paladin rotations? You will be able to change modifiers and healing and more at your request.
Last edited by averykey; 03-23-2013 at 02:32 AM.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
sweet! will have to check out the ret when you update it!
Here is a list that might help out:
also dont know how much this will help but here is what i have for using hands / cleanses for horridon.
also PQI is a big plus! if you want I can do/help with the PQI menu, i have done a couple by now =DPHP Code:
function cooperate(t)
if UnitInRange(t) and UnitCanCooperate("player",t) and not UnitIsEnemy("player",t)
and not UnitIsCharmed(t) and not UnitIsDeadOrGhost(t) and not PQR_IsOutOfSight(t)
and UnitExists(t)
then return true end
end
function CalculateHP(t)
incomingheals = UnitGetIncomingHeals(t) or 0
return 100 * ( UnitHealth(t) + incomingheals ) / UnitHealthMax(t)
end
function Hands(t)
HoFee = UnitBuffID(t, 1044, "PLAYER")
HoPro = UnitBuffID(t, 1022, "PLAYER")
HoSac = UnitBuffID(t, 6940, "PLAYER")
HoSal = UnitBuffID(t, 1038, "PLAYER")
HoPur = UnitBuffID(t, 114039, "PLAYER")
if HoFee or HoPro or HoSac or HoSal or HoPur then
return false
else
return true
end
end
function Help_Self()
local customTarget = "player"
--HoF Entrapped for Council of Elders
local Entrapped = UnitDebuffID(customTarget,136857)
if PQR_SpellAvailable(1044) and Entrapped and Hands(customTarget) then
CastSpellByID(1044, customTarget)
end
--Cleanse Venom Bolt Volley for Horridon
local Venom_Bolt_Volley = UnitDebuffID(customTarget,136587)
if PQR_SpellAvailable(4987) and Venom_Bolt_Volley then
CastSpellByID(4987, customTarget)
end
--Cleanse Deadly Plague for Horridon
local Deadly_Plague = UnitDebuffID(customTarget,136710)
if PQR_SpellAvailable(4987) and Deadly_Plague then
CastSpellByID(4987, customTarget)
end
--Hand of Purity Pheromones
local Pheromones = UnitDebuff(customTarget,"Pheromones")
if Pheromones and PQR_SpellAvailable(114039) and Hands(customTarget) then
CastSpellByID(114039, customTarget)
end
--Hand of Salvation
local isTanking, status, threatpct, rawthreatpct, threatvalue = UnitDetailedThreatSituation("player", "target")
if (status == 3 or status == 2 or status == 1) and PQR_SpellAvailable(1038) and Hands(customTarget) then
CastSpellByID(1038, customTarget)
end
--Hand of Purity
if PlayerHP <= 60 and PQR_SpellAvailable(114039) and Hands(customTarget) then
CastSpellByID(114039, customTarget)
end
end
local members = GetNumGroupMembers()
for i=1,members do
local customTarget
if IsInRaid() then
customTarget = "raid"..i
Help_run = true
elseif IsInGroup() then
customTarget = "party"..i
Help_run = true
else
Help_run = false
end
--Help Self 1st
Help_Self()
if Help_run then
local PlayerHP = (100 * (UnitHealth("player") + UnitGetIncomingHeals("player")) / UnitHealthMax("player"))
local Forbearance = UnitDebuffID(customTarget, 25771)
--HoF Entrapped party members for Council of Elders
local Entrapped = UnitDebuffID(customTarget,136857)
if cooperate(customTarget) and PQR_SpellAvailable(1044) and Entrapped and Hands(customTarget) then
CastSpellByID(1044, customTarget)
end
--Cleanse Venom Bolt Volley party members for Horridon
local Venom_Bolt_Volley = UnitDebuffID(customTarget,136587)
if cooperate(customTarget) and PQR_SpellAvailable(4987) and Venom_Bolt_Volley then
CastSpellByID(4987, customTarget)
end
--Cleanse Deadly Plague party members for Horridon
local Deadly_Plague = UnitDebuffID(customTarget,136710)
if cooperate(customTarget) and PQR_SpellAvailable(4987) and Deadly_Plague then
CastSpellByID(4987, customTarget)
end
--Hand of Purity party members
if CalculateHP(customTarget) <= 75 and cooperate(customTarget) and PQR_SpellAvailable(114039) and Hands(customTarget) then
CastSpellByID(114039, customTarget)
end
--Hand of Sacrifice party members
if CalculateHP(customTarget) <= 50 and PlayerHP > 50 and cooperate(customTarget) and PQR_SpellAvailable(6940) and Hands(customTarget) then
CastSpellByID(6940, customTarget)
--Divine Protection
if PQR_SpellAvailable(498) then
CastSpellByID(498,"player")
end
end
--Lay on Hand party members
if CalculateHP(customTarget) <= 10 and PlayerHP > 30 and cooperate(customTarget) and PQR_SpellAvailable(633) and not Forbearance then
CastSpellByID(633, customTarget)
end
--Pheromones Help
local Pheromones = UnitDebuff(customTarget,"Pheromones")
if cooperate(customTarget) and Pheromones then
--Hand of Purity
if PQR_SpellAvailable(114039) and Hands(customTarget) then
CastSpellByID(114039, customTarget)
end
--Hand of Sacrifice
if PQR_SpellAvailable(6940) and Hands(customTarget) then
CastSpellByID(6940, customTarget)
--Divine Protection
local Help_HoSac = UnitBuffID(customTarget, 6940, "PLAYER")
if PQR_SpellAvailable(498) and Help_HoSac then
CastSpellByID(498,"player")
end
end
end
end
end
Last edited by paintpauller; 03-23-2013 at 06:01 AM.
Alpha Profiles: - All profiles with PQInterface support!
Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI
Thank you so much, I have been updating from NOVA profiles from the SVN. The SVN has a newer version of the file PQR_PQI.lua than the file included in PQInstallation.7z. Do you know if we should be using the one from SVN or sticking with the older version packaged in the 7z?
Thanks again!
Hunter Profile update.
KMD_All_Hunter_Rotations_v21.zip
I've updated it with the following changes.
- All profiles should have a Kiting profile with concussive shot baked in so that you can kite stuff to death.
- Using the code provided by "deadpanstiffy" for Tranquilising Shot. This should now automatically dispel magic (was doing that before) and dispel enrage on your target.
- MM rapid fire (pushdown) has been fixed to stop it overwriting rapid fire, when used after readiness.
Using the MM code I was easily outdpsing my whole raid on Doromu by a wide margin, A fight that is pretty good for hunters. Then again I was out dpsing them as SV, and I could see BM doing even better. Either way the MM code is good.
As usual message me if you have any problems or have a suggestion on how to improve it.
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
Ive been working on a ret PvP profile my self. Ill probably release it after im finished with it.
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
Do or Die
[PQR] Monk Mistweaver
Without listing a load of debuffs, can I stop stealth from being cast if I have a damaging debuff?