So does everyone have this problem with the input limit reaches? If you don't, please shareChui, please check out what might be the cause.
PS: It doesn't seem to be in diablo/core since with old versions of the files, it does the same thing :/
So does everyone have this problem with the input limit reaches? If you don't, please shareChui, please check out what might be the cause.
PS: It doesn't seem to be in diablo/core since with old versions of the files, it does the same thing :/
Last edited by Sehae; 11-28-2012 at 10:14 AM.
why all worry about input limit? if this limit ever reached than it's bad script and you need ajust delay in sycle... of couse it's a bug but it's not critical... critical is haSell bug, haSellCancel bug - there is no way to use these functions now...
Critical would be if buying didn't work ^^
i wanna know how to search for max 2 pages and not the entire list.
ive tried with haListAt(), and haListSelect but it does strange things :/
Function:
if haSearch() then
--haListSelect(index)
--haListNext()
-- for every item
while haListNext() do
local total_value = 0
local item = haItem()
-- calculate total gem value
for j, socket in pairs(item.sockets) do
if socket.rank > 0 then
local prices = GEM_PRICES[socket.gem]
if prices ~= nil then
total_value = total_value + prices[socket.rank]
end
end
end
Yea not clicking the input limit reach.
@ztnko - doesn't mean script is bad, sometimes i get input limit reached for no reason.. One of the most common dcs.
Anyways none of my bots have been banned for 2 months.
Bot relogins now, but doesn't enter auction house and searches.
Edit added: If I manually click on the auction house button when in the main menu, it automaticly starts searching.
Last edited by CHandest; 11-28-2012 at 04:16 PM.
same here, it does click ah sometimes after relog but usually bot screw up and afk after few minutes or few relogs if you dont manually click the ah interface often.
my code is more simple: while haSellIterate() do haSellCancel() end
don't know what happened but it not work for me on first 3 machines and then i don't test it more - simly exclude it from script. now i test it on both last versions and all worked as intened. don't know what happend 1st time. sorry.
when it sells more than 10 items, i get the popup and it doesnt close the message. Didn't do it last patch
pls anybody... do you know how to only search the first 2 pages?
code:
function GemMiner()
-- search
if haSearch() then
--haListNext() do
-- for every item
while haListNext() do
local total_value = 0
local item = haItem()
-- calculate total gem value
for j, socket in pairs(item.sockets) do
if socket.rank > 0 then
local prices = GEM_PRICES[socket.gem]
if prices ~= nil then
total_value = total_value + prices[socket.rank]
end
end
end
why im asking is because the threshold bidding system doesnt work for me so its no point going threw all the items in list..
or i ill be happy too if you know only how to search 1 page.
Last edited by fessomanen; 11-28-2012 at 06:55 PM.