Howdy All,
I would like EQ2bot to auto decline all loot. I don't see an option for this currently. I searched through the code and found the following:
To force EQ2Bot to decline I would have to change the following:
To:
Is "Decline" the proper button name here that I should use?
Thanks for your time.
I would like EQ2bot to auto decline all loot. I don't see an option for this currently. I searched through the code and found the following:
Code:
if ${EQ2UIPage[Inventory,Loot].Child[text,Loot.LottoTimerDisplay].Label}>0 && ${EQ2UIPage[Inventory,Loot].Child[text,Loot.LottoTimerDisplay].Label}<60 && ${LootAll}
{
EQ2UIPage[Inventory,Loot].Child[button,Loot.button RequestAll]:LeftClick
wait 5
if ${EQ2UIPage[Choice,RoundedGrouper].Child[button,Choice.Choice1](exists)}
{
if ${LootConfirm}
{
EQ2UIPage[Choice,RoundedGrouper].Child[button,Choice.Choice1]:LeftClick
}
else
{
EQ2UIPage[Choice,RoundedGrouper].Child[button,Choice.Choice2]:LeftClick
}
}
}
Code:
EQ2UIPage[Inventory,Loot].Child[button,Loot.button RequestAll]:LeftClick
Code:
EQ2UIPage[Inventory,Loot].Child[button,Loot.button Decline]:LeftClick
Thanks for your time.