Just curious how many of you guys are using the advanced loot window to loot.
I'm using KA but I replaced the call to LootStuff to my own function advloot which is just:
I designate the master loot either by right clicking and setting or targetting toon and doing /delegategmasterlooter
I select who in my group will get all the loot from the drop down and that toon has loot all enabled
I also found that you can script who gets the loot with the command:
/notify AdvancedLootWND ADLW_CLLSetCmbo ListSelect 13
where 13 = first person in group alphabetically
14 = 2nd, 15th, 3rd etc. Beware, if group members change, order changes. I'm still seeing if there's a different way to assign by TLO grp member but that's all I've got so far.
I'm using KA but I replaced the call to LootStuff to my own function advloot which is just:
Rich (BB code):
Sub AdvLoot
/if (${Group.Member[0].MasterLooter}) /notify AdvancedLootWnd ADLW_CLLSetBtn leftmouseup
/return
I designate the master loot either by right clicking and setting or targetting toon and doing /delegategmasterlooter
I select who in my group will get all the loot from the drop down and that toon has loot all enabled
I also found that you can script who gets the loot with the command:
/notify AdvancedLootWND ADLW_CLLSetCmbo ListSelect 13
where 13 = first person in group alphabetically
14 = 2nd, 15th, 3rd etc. Beware, if group members change, order changes. I'm still seeing if there's a different way to assign by TLO grp member but that's all I've got so far.

