View Single Post
04-29-16, 01:05 AM   #5
Gethe
RealUI Developer
 
Gethe's Avatar
Premium Member
Featured
Join Date: Sep 2008
Posts: 942
Rogues in Legion have two talents that increase their max combo points, both on the same tier.

One is Deeper Stratagem, which increases the max to 6. The other is Anticipation, which was modified from it's live form of using charges, to in Legion, increasing your max CP to 8 not 9.

I have confirmed this on alpha that if I do
Code:
/dump UnitPowerMax("player", SPELL_POWER_COMBO_POINTS)
the result will be 6 with Deeper Stratagem and 8 with Anticipation


It's possible that there is another way of getting that one additional CP, but honestly I think this is just a miscommunication between the class team and the UI team.


edit: In Blizzard_NamePlates/Blizzard_ClassNameplateBar_RogueDruid.lua they have this:
Lua Code:
  1. if (maxComboPoints == 6) then
  2.     self.maxUsablePoints = 6;
  3.     self.Combo6:SetSize(self.comboPointSize, self.comboPointSize);
  4.     self.Combo6.Point:SetSize(self.comboPointSize, self.comboPointSize);
  5.     self.Combo6:ClearAllPoints();
  6.     self.Combo6:SetPoint("LEFT", self.ComboPoints[5], "RIGHT", 4, 0);
  7.     self:SetHeight(self.comboPointSize);
  8.     self.Combo6.Background:Show();
  9. elseif (maxComboPoints == 8) then
  10.     self.Combo6:SetSize(self.bonusPointSize, self.bonusPointSize);
  11.     self.Combo6.Point:SetSize(self.bonusPointSize, self.bonusPointSize);
  12.     self.Combo6:ClearAllPoints();
  13.     self.Combo6:SetPoint("BOTTOM", -14, -2);
  14.     self:SetHeight(22);
  15. end
The accompanying xml file has 8 combo point widgets. It's very likely that your example is just a typo
__________________
Knowledge = Power; Be OP


Last edited by Gethe : 04-29-16 at 01:13 AM.