m
Move page script moved page API GetLootRollItemInfo to WoW:API GetLootRollItemInfo without leaving a redirect
No edit summary |
m (Move page script moved page API GetLootRollItemInfo to WoW:API GetLootRollItemInfo without leaving a redirect) |
||
| (3 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | |||
GetLootRollItemInfo(RollID); | GetLootRollItemInfo(RollID); | ||
== Parameters == | |||
=== Arguments === | |||
:( rollId ) | |||
:;rollid : Number - The number increments by 1 for each new roll. The count is not reset by reloading your UI with ReloadUI() or /console reloadui | |||
:; | |||
=== Returns === | |||
:texture (string) | :texture (string) | ||
| Line 16: | Line 15: | ||
:count (integer) | :count (integer) | ||
:quality (integer) | :quality (integer) | ||
:bindOnPickUp (boolean) | |||
:canNeed (boolean) | |||
:canGreed (boolean) | |||
:canDisenchant (boolean) | |||
== Example == | |||
:GroupLootFrame_OnShow | :GroupLootFrame_OnShow | ||
function GroupLootFrame_OnShow() | function GroupLootFrame_OnShow() | ||
local texture, name, count, quality = GetLootRollItemInfo(this.rollID); | |||
getglobal("GroupLootFrame"..this:GetID().."IconFrameIcon"):SetTexture(texture); | |||
getglobal("GroupLootFrame"..this:GetID().."Name"):SetText(name); | |||
local color = ITEM_QUALITY_COLORS[quality]; | |||
getglobal("GroupLootFrame"..this:GetID().."Name"):SetVertexColor(color.r, color.g, color.b); | |||
end | end | ||
== Details == | |||
* ''bindOnPickUp'' was added in 1.11. | |||