2022-05-28 23:36
#0
The original thread got closed before I could respond.
Add the highlighted code fragment to the Source\Actions.lua file in your custom UI folder.

For those who do not want to type that:
Then create a macro with the following commands
Toggle Quest Item
WaitForTarg
TargetByType (select any egg)
Delay(.5)
Cancel Cursor Target
Then have it repeat 10 times.
This has saved me over 7000 mouse clicks.
Add the highlighted code fragment to the Source\Actions.lua file in your custom UI folder.

For those who do not want to type that:
if (type == 40723 or type == 40724 or type == 40725 or type == 40727 or type == 40728) and
(obj == 40723 or obj == 40724 or obj == 40725 or obj == 40727 or obj == 40728) then
for i = 1, #Actions.itemQuantities[obj] do
local id = Actions.itemQuantities[obj][i]
RegisterWindowData(WindowData.ObjectInfo.Type, id)
local item = WindowData.ObjectInfo[id]
if item then
if item.hueId ~= 1258 then
HandleSingleLeftClkTarget(id)
return
end
end
end
end
Then create a macro with the following commands
Toggle Quest Item
WaitForTarg
TargetByType (select any egg)
Delay(.5)
Cancel Cursor Target
Then have it repeat 10 times.
This has saved me over 7000 mouse clicks.

