The ret paladin rotation changes slightly with tier 13 2 piece. I have tried (hopefully correctly) to write something that deals with judgement now generating HoPo.
Rotation:
Code:
<Rotation>
<RotationName>Ret PVE T13 2pc</RotationName>
<RotationDefault>false</RotationDefault>
<RotationList>Seal of Truth|Inquisition|Crusader Strike|Judgement (No Zealotry)|Hammer of Wrath|Exorcism if Art of War|Templar's Verdict|Judgement (Zealotry)|Holy Wrath|Consecration</RotationList>
<RequireCombat>true</RequireCombat>
<RotationNotes>Profile written by Xelper @ OwnedCore. This profile does not manage cooldowns for you, you should use your trinkets, Avenging Wrath and Zealotry manually!</RotationNotes>
</Rotation>
Judgement Abilities:
Code:
<Ability>
<Name>Judgement (No Zealotry)</Name>
<Default>false</Default>
<SpellID>20271</SpellID>
<Actions>/startattack</Actions>
<Lua>sSoR = UnitBuffID("player", 20154) sSoT = UnitBuffID("player", 31801) sSoJ = UnitBuffID("player", 20164) sSoI = UnitBuffID("player", 20165) sZeal = UnitBuffID("player", 85696) if sZeal == nil and (sSoR ~= nil or sSoT ~= nil or sSoJ ~= nil or sSoI ~= nil) then return true end</Lua>
<RecastDelay>0</RecastDelay>
<Target>Target</Target>
<CancelChannel>False</CancelChannel>
<LuaBefore />
<LuaAfter />
</Ability>
Code:
<Ability>
<Name>Judgement (Zealotry)</Name>
<Default>false</Default>
<SpellID>20271</SpellID>
<Actions>/startattack</Actions>
<Lua>sSoR = UnitBuffID("player", 20154) sSoT = UnitBuffID("player", 31801) sSoJ = UnitBuffID("player", 20164) sSoI = UnitBuffID("player", 20165) sZeal = UnitBuffID("player", 85696) if sZeal ~= nil and UnitPower("player", 9) ~= 3 and (sSoR ~= nil or sSoT ~= nil or sSoJ ~= nil or sSoI ~= nil) then return true end</Lua>
<RecastDelay>0</RecastDelay>
<Target>Target</Target>
<CancelChannel>False</CancelChannel>
<LuaBefore />
<LuaAfter />
</Ability>