Done a new profile (Priest Discipline PvP), seem working fine, but tips from experienced pvp players are welcome.
Package includes:
Mage (Frost PvP, Fire PvE, Arcane PvE)
Priest (Holy PvE, Discipline PvP)
Hunter (MM PvE)
Warrior (Protection PvE, Fury PvE)
Rogue (Combat PvE, Subtlely PvP)
Death Knight (Frost PvP)
- New Priest Discipline PvP profile
- Rewrote trick of the trade to take advantage from tier 12/13 bonus set
xeron221211PQRProfiles.zip
---------- Post added at 01:01 AM ---------- Previous post was at 12:10 AM ----------
Was tthinking on another good thing if we could write common code for all profiles. The idea is to make a library of boss fights to track some event.
Example function names:
PQR_Defensive_Cooldown
PQR_DamageDealer_Cooldown
PQR_Healer_Cooldown
Example trigger:
function PQR_DamageDealer_Cooldown {
if unit target is "Burning Tendon" return true
if unit target is "Exposed Head of Magmaw"
if Warlord Zon'ozz for extra damage debuff return true
if Alyzrazor for Burnout debuff (phase 3) return true
if target is boss level and target hp < 25%
...
}
Example ability code:
Ability Rapid Fire
if PQR_DamageDealer_Cooldown == true then
return true
end
Ability Shield Wall
if PQR_Defensive_Cooldown == true then
return true
end
Ability Divine Hym
if PQR_Healer_Cooldown == true then
return true
end