WoW:API UnitPowerMax: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Reformatted page and changed to reference the powerType page)
m (Move page script moved page API UnitPowerMax to API UnitPowerMax without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:
== Usage ==
== Usage ==


  local maxpower = UnitPowerMax(UnitID [, powerType]);
  local maxpower = UnitPowerMax(UnitID , powerType);


== Arguments ==
== Arguments ==

Latest revision as of 04:47, 15 August 2023

WoW API < UnitPowerMax

Returns the maximum power level of the specified unit. As of 3.0, this function has replaced UnitManaMax as the preferred method of obtaining maximum unit power.

Usage[edit]

local maxpower = UnitPowerMax(UnitID , powerType);

Arguments[edit]

UnitId
String - The UnitID of the unit whose maximum power should be returned
powerType
Number (optional) - The power type of the unit whose maximum power should be returned

Returns[edit]

maxpower
Number - the unit's maximum power level

Details[edit]

If no type is specified, UnitPowerMax returns the current primary type, e.g., energy for a druid in cat form. You can determine the current power type via UnitPowerType. However, values for all power types are available in any form.