WoW:API GetLootMethod: Difference between revisions
Jump to navigation
Jump to search
m (→Returns) |
(bp) |
||
| Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} | ||
Retrieves the Loot Method and (if applicable) Master Looter idenity. | Retrieves the Loot Method and (if applicable) Master Looter idenity. | ||
lootmethod, masterlooterPartyID, masterlooterRaidID = GetLootMethod() | lootmethod, masterlooterPartyID, masterlooterRaidID = GetLootMethod() | ||
---- | == Returns == | ||
;lootmethod : String ([[LootMethod]]) - One of 'freeforall', 'roundrobin', 'master', 'group', 'needbeforegreed'. Appears to be 'freeforall' if you are not grouped. | |||
;masterlooterPartyID : Number - Returns 0 if player is the mater looter, 1-4 if party member is master looter (corresponding to party1-4) and nil if the master looter isn't in the player's party or master looting is not used. | |||
;masterlooterRaidID : Number - Returns index of the master looter in the raid (corresponding to a raidX unit), or nil if the player is not in a raid or master looting is not used. | |||
Revision as of 23:33, 5 June 2010
← WoW API < GetLootMethod
Retrieves the Loot Method and (if applicable) Master Looter idenity.
lootmethod, masterlooterPartyID, masterlooterRaidID = GetLootMethod()
Returns
- lootmethod
- String (LootMethod) - One of 'freeforall', 'roundrobin', 'master', 'group', 'needbeforegreed'. Appears to be 'freeforall' if you are not grouped.
- masterlooterPartyID
- Number - Returns 0 if player is the mater looter, 1-4 if party member is master looter (corresponding to party1-4) and nil if the master looter isn't in the player's party or master looting is not used.
- masterlooterRaidID
- Number - Returns index of the master looter in the raid (corresponding to a raidX unit), or nil if the player is not in a raid or master looting is not used.