but it does run with addons disabled? i'd guess that you have an addon that is messing with the tradeskill windows then. to the other person who said disenchanting won't work, it's only going to disenchant the specific jc items it creates they're listed by itemid in the code.
i created this to automate the processing of all the ore my bot farms. it works for me. i figured other people could use it so i've released the code, but i have no interest in develping the code any further. if someone else wants to pick this up and run with it then feel free i'm sure it wouldn't be too hard to adapt to other professions and stuff.
re: my shaman profile, it can still be a bit jittery on spine/lootship but it's nowhere near as bad as it was (it would freeze the game pretty much with earlier versions). i know a lot of the code is horribly inefficient. i plan an doing an overhaul next week to parse the raid once and store a snaphot of the raid in an array (health values, curses, distance between players etc) and then have the abilities reference that instead of doing the same system calls over and over and that should make it much faster.
I have changed my ret paladin profile a bit, with my gear i pull about 37k on ultraxion right now, I know the profile can be better but i don't know lua and I need help making it better.
http://up.ht/wCrq1t
I have just been looking at the various profiles around the site to put this one together, with the lfr deathwing weapon it has no problem bursting up to 60k+ in heroics it levels out at about 50k.
If anyone can help, the changes would be when combat beings wait 10 seconds before popping GOAK- Guardian of Ancient Kings, and do not pop wings-Avenging Wrath if zealotry is not up; "3 holy power" to maximize 4 piece, maybe a whole different skill, for example 4pZealotry+wings- Just a example name so it doesn't collide with the people who have not acquired 4 piece yet.
For the ret paladins who may use this, pop the cooldowns your self until the changes above can be made.
i made the unholy one spur of the moment without even really knowing the most ideal rotation for unholy XD
if you guys could either let me know what to fix in my unholy rotation or point me towards a well written unholy rotation guide i can see about updating it XD
---------- Post added at 10:15 AM ---------- Previous post was at 10:07 AM ----------
Here's Crystal Tech's code for checking if a warlock has 4 piece or not, should look into using a check like this for your code
Code:local gloves = IsEquippedItem("Gloves of the Faceless Shroud") local hood = IsEquippedItem("Hood of the Faceless Shroud") local legs = IsEquippedItem("Leggings of the Faceless Shroud") local robes = IsEquippedItem("Robes of the Faceless Shroud") local mantle = IsEquippedItem("Mantle of the Faceless Shroud") local total = 0 local gloves1 = 1 local hood1 = 1 local legs1 = 1 local robes1 = 1 local mantle1 = 1 if gloves == nil then gloves1 = 0 end if hood == nil then hood1 = 0 end if legs == nil then legs1 = 0 end if robes == nil then robes1 = 0 end if mantle == nil then mantle1 = 0 end if gloves == nil then gloves1 = 0 end total = (gloves1 + hood1 + legs1 + robes1 + mantle1) if total >= 4 then return true end
yea that code isn't pretty at all lol. I'm workin on cleaning it up.
---------- Post added at 11:44 AM ---------- Previous post was at 11:43 AM ----------
try setting 'DangerousMagic' to a local and give it a number value. its seems its trying to do math but it can't due to it being a nil or nothing at all.
DangerousMagic is actually a function that was written into the auto target ability of the "new" targeting code
played around with it a little myself but decided that the pro's weren't worth the time it would take to get working at that point in time.... because my hpally code was getting that same error when i was trying to incorporate it XD
Im showing a pretty significant dps decrease in comparison to 5.2. Where are you seeing parses of top 10 arms warriors with heroic strike as their #2 total damage output? i just went through the world of logs rankings for normal 25man dragon soul and and 90% of top warrs for every fight except Ultraxion its always MS>OP>Slam with heroic strike coming up at about 7-8% of their total. And those are the figures im getting out of your 5.2 profile.
Yes, 2pct13 makes heroic strike much more appealing however you dont NEED to make slam less of a priority because heroic strike is off the GCD. You'll still be able to set parameters for HS without having to lose slams. Also those who are testing and showing 5.3 to be a dps increase, what weapon are you using? In order to get accurate numbers you CANNOT use Gurthalak. The proc on the sword is too RNG to provide any consistency.
Currently for my testing im using 4pt13 with a 410 Experimental Specimen Slicer with an overall gear ilvl of 399 and on multiple testing dummy tests im showing 5.2 pulling far ahead of 5.3.
Just my 2copper, hope it helps!
Hey, new to the forums and thought I would make a post regarding the PQR Profiles.
After looking through nearly 270 pages of posts, it came to my attention that there needs to be a place where profiles can be stored, as having one thread for the hundreds of the different things going on, just don't work.
Maybe someone could create new thread for each class, something along them line would do the trick, or even post profiles to the profiles section of the forum?
Also if anyone has played around with low level pvp healing profiles (level 10 - 19) I would like a chat.
Thanks.
I've cleaned up the code for the gear check and need to see if it works proper in game. I've tested it in wowlua addon and it worked so it should work for PQR
change the equip vars to match your set.
Code:local equip = { "Gloves of the Faceless Shroud", "Hood of the Faceless Shroud", "Leggings of the Faceless Shroud", "Robes of the Faceless Shroud", "Mantle of the Faceless Shroud" } --can be item ids as well local total = 0 for i,v in ipairs(equip) do if IsEquippedItem("v") == true then total = total + 1 end end if total >= 4 then print("you have 4pc") --prints if you have 4 or more pcs of tier return true end
Last edited by crystal_tech; 01-12-2012 at 12:09 PM.
Buba, welcome back and thanks for the update to the holy paladin profile. One thing I noticed is that sometimes (in a 5 man) instead of healing one of the injured dps, it just spams holy light on the healer. Did you code it to where holy light is suppose to be cast on heals if all the tank needs is holy light and its getting hung up somehow?
I haven't noticed this problem in LFR, but I've only ran it once with this profile.
EDIT: This is in the holy nomouseover profile.
Last edited by CharleyWex; 01-12-2012 at 11:29 AM.
@LtButterman & a few other posters.
I have a Balance Druid Rotation here, as far as I know it has the ideal rotation single target. If you tab target it will also throw dots up, and if you keep switching, you can effectively do aoe dmg too.
Would love to hear your feedback
Heres the link to the original post:
http://www.ownedcore.com/forums/worl...ml#post2163499 ([BETA] PQRotation - an automated ability priority queue.)
weird about the spamming holy light on heals...... have NEVER ran into that one lol
and i fixed the hangup problem.... when i updated Judgement I accidentally removed the Range Check :-/ silly little me
so when u aren't in range of a target it will continue to try and spam Judgement which locks up the profile
*Edit*
decided that problem was large enough for a reupload instead of my normal just svn update
here you go:
http://bubba-pqr-profiles.googlecode...bba_HPally.zip