@Mentally
What is Sanctum [Shadow] ?
@Mentally
What is Sanctum [Shadow] ?
@Everyone: The Data file should be updated now, along with the Demonology Warlock that was causing an issue where the Data file wouldn't load! New Demonology Profile should automagically determine the difference between Normal and Heroic dungeon bosses as well as Raid bosses so that you can use the profiles even on trash -- without worrying about cooldowns being wasted.![]()
Can someone add Holy Prism and Light's Hammer to nova's or sheepmoons PvE Holy Paladin profiles please ?
is there any sort of solution for bubbas disc profile ie:- in 25man raids fps drops to 3 5mans is fine only large groups cause it
hi bubba, any news for our Boomkin profile?![]()
on the demonology AoE profile it doesn't seem to be performing well. How do you use it? I noticed there is harvest life in the rotation yet it never uses it
I must say your new data file with the SpecialTarget function is AWESOME.
As i said earier, i was using a retarded code to check if the name matches, but with your function made it easier for people like me.
Awesome features:PHP Code:
boss = { "Training Dummy", "Raider's Training Dummy", "Highlord's Nemesis Trainer", "Twisted Spirit", "Amaniรยดshi Hatcher",
"Hakkar's Chains", "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat",
"Right Foot", "Left Foot", "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons",
"Wing Tentacle", "Arm Tentacle", "Twilight Assault Drake", "Goriona", "Ice Tomb",
"Twilight Sapper", "Dreadlord Debilitator", "Blistering Tentacle", "Raigon", "Elegon",
"Saboteur Kip'tilak", "Strike Ga'Dok", "Commander Ri'mok", "Raigonn", "Kuai the Brute",
"Ming the Cunning", "Haiyan the Unstoppable", "Gekkan", "Xin the Weaponmaster",
"Houndmaster Braun", "Armsmaster Harlan", "Flameweaver Koegler", "Thalnos the Soulrender", "Brother Korloff", "Commander Durand",
"High Inquisitor Whitemane", "Instructor Chillheart", "Jandice Barov", "Rattlegore", "Lilian Voss", "Darkmaster Grandling",
"Gu Cloudstrike", "Master Snowdrift", "Sha of Violence", "Taran Zhu", "Vizier Jin'bak", "Commander Vo'jak", "General Pa'valak",
"Wing Leader Ner'onok", "Ook-Ook", "Hoptallus", "Yan-Zhu the Uncasked", "Wise Mari", "Lorewalker Stonestep", "Liu Flameheart",
"Sha of Doubt", "Imperial Vizier Zor'lok", "Blade Lord Ta'yak", "Garalon", "Garalon's Legs", "Wind Lord Mel'jarak",
"Amber-Shaper Un'sok", "Grand Empress Shek'zeer", "Amethyst Guardian", "Cobalt Guardian",
"Jade Guardian", "Jasper Guardian", "Feng the Accursed", "Weak Spot", "Yu'Lon"
}
- GlyphCheck solved my problem with Guard from Monks.
- Your new TargetValidation with Nova_Spells is ****en awesome.
- PQ_AuraInfo, i could use GetRaidBuffTrayAuraInfo, but meh.
- Nova_UnitInfo...
And the Lua file is all documented, anyone can read and understand what everything is doing.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
@eggman689: You have to actually spec into Harvest Life for the profile to use it, otherwise it won't use it and default to Hellfire. If you're going to be doing AoE at any point during an encounter or a dungeon, you should choose the Harvest Life talent!
@Rubim: Yeah.. :P The problem with the function that you pasted is that, on any non-english client, you'll be screwed because you have to translate the names and create different functions depending on what localization the end-user have. The function I created does this internally through the WoW client, checking Unit ID's against the table rather than names. It's more reliable and faster.I'm going to be adding more content to the SpecialTarget function as time progresses, to support Vanilla dungeons, TBC Normal/Heroic Dungeons and WoTLK Normal/Heroic Dungeons.
Yes but the profile also stalls if you don't have the dark regeneration talent. I know I can remove it it's just a heads up.
Any way to add another Holy Paladin profile that spams Eternal Flame on raid, spam crusader strike to build Holy Power/Holy Shock/Holy Radiance and dont use Light of Dawn at all?
Basically you would use Eternal Flame on people who dont have it and are below 85% or something, this combined with 4 pc set PVP is incredibely overpowered as you can see on world of logs.
I'm trying this for Eternal Flame yet it is not doing anything
Code:if PQR_SpellAvailable(114163) then for i=1, #members do if not UnitBuffID(members[i].Unit, 114163) and select(5, Nova_UnitInfo("player")) >= 3 and members[i].HP < 90 then PQR_CustomTarget = members[i].Unit return true end end end
Are all your rotation for PvE or are there any of them intended for PvP?
Sent from my iPad using Tapatalk HD
Fixed :
Eternal Flame with Custom as target
Code:if PQR_SpellAvailable(85673) then for i=1, #members do if not UnitBuffID(members[i].Unit, 114163) and select(5, Nova_UnitInfo("player")) >= 3 and members[i].HP < 90 then PQR_CustomTarget = members[i].Unit CastSpellByName(GetSpellInfo(85673), members[i].Unit) return true end end end