Originally Posted by
meisbest
I'm kinda a newb, why does it bid on everything in entire list rather than just the one's with 5 seconds or less remaining? How does this haItem.rtime function work? If anyone can help, thanks.
haFilterChar('Demon Hunter')
haFilterType('Amulet')
haFilterLevel(60,60)
haFilterRarity('Rare')
haFilterStat(1, 'Life on Hit', 300)
haFilterStat(2, 'Critical Hit Damage', 60)
haFilterStat(3, 'Dexterity', 195)
haFilterStat(4, 'None', 95)
-- search
if haSearch() then
haSortTimeLeft()
haListSelect(1)
if haItem().rtime(5000) then
haBid(10000000)
end
end
Try this amigo:
Code:
haFilterChar('Demon Hunter')
haFilterType('Amulet')
haFilterLevel(60,60)
haFilterRarity('Rare')
haFilterStat(1, 'Life on Hit', 300)
haFilterStat(2, 'Critical Hit Damage', 60)
haFilterStat(3, 'Dexterity', 195)
haFilterStat(4, 'None', 95)
-- search
if haSearch() then
haSortTimeLeft()
haSortTimeLeft()
while haListIterate() do
local item = haItem()
if item.rtime < 5000 then
haBid(10000000)
end
end
end