WoW:API GetLootMethod: Difference between revisions

m (Move page script moved page API GetLootMethod to API GetLootMethod without leaving a redirect)
 
(8 intermediate revisions by 8 users not shown)
Line 1: Line 1:
<center>'''GetLootMethod''' - ''Documentation by [[User:Kaso|Kaso]]''</center>
{{wowapi}}
Retrieves the Loot Method and (if applicable) Master Looter identity.
lootmethod, masterlooterPartyID, masterlooterRaidID = GetLootMethod()


Retrieves the Loot Method and (if applicable) Master Looter idenity.
== Returns ==
 
;lootmethod : String ([[LootMethod]]) - One of 'freeforall', 'roundrobin', 'master', 'group', 'needbeforegreed'. Appears to be 'freeforall' if you are not grouped.: At least as of 7.3 the possible return values appear to be "freeforall", "master", "group" and "personalloot". "roundrobin" and "needbeforegreed" appear to be deprecated.
lootmethod, masterlooterID = GetLootMethod()
;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.
=== Returns ===
;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.
:lootmethod, masterlooterID
 
:;lootmethod : String - One of 'freeforall', 'roundrobin', 'master', 'group', 'needbeforegreed'. Appears to be 'freeforall' if you are not grouped.
:;masterlooterID : Number - (When In 'master', nil otherwise) returns 0 if player is masterLooter, 1-4 if party memeber is masterLooter (corresponding to party1-4) and nil if masterLooter is in another Party of the raid.
 
 
----
__NOTOC__
{{Template:WoW API}}

Latest revision as of 04:46, 15 August 2023

WoW API < GetLootMethod

Retrieves the Loot Method and (if applicable) Master Looter identity.

lootmethod, masterlooterPartyID, masterlooterRaidID = GetLootMethod()

Returns

lootmethod
String (LootMethod) - One of 'freeforall', 'roundrobin', 'master', 'group', 'needbeforegreed'. Appears to be 'freeforall' if you are not grouped.: At least as of 7.3 the possible return values appear to be "freeforall", "master", "group" and "personalloot". "roundrobin" and "needbeforegreed" appear to be deprecated.
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.