got banned 7/7 HA accounts. Last ban wave was 2 weeks and a day ago. Seems blizzard is getting greedier. For those who make less than what you pay for, it's time for you to reconsider!!
got banned 7/7 HA accounts. Last ban wave was 2 weeks and a day ago. Seems blizzard is getting greedier. For those who make less than what you pay for, it's time for you to reconsider!!
i think it will be good if blizzard bans all auction bots every week to reduce competition...it's so annoying when random noob takes my 6crit mempo or smth like this...
![]()
Last edited by ztnko; 12-22-2012 at 04:19 AM.
Guys, that were banned recently, i have a couple questions to you:
1 What strategy do you used (bo sniping/bid sniping/gem mining)?
2 Do you used the same strategy each time?
3 Do you used the same parameters for search from day to day?
4 Do you used the "10 button" strategy for buying? (Each new search query is unique so AH search shows recently appeared items).
5 Do you used to sell every item you bought?
Merry Christmas from Blizzard, goodbye 700+ millions worth.
Banned as well..
I have decided to help newcomers with scripts and profiles to search for. I don't care if it will hurt my own income as I have been already too greedy doing nothing when people asked for help. I could only make my money because a guy wanted to contribute free of charge, so there it goes. Just PM me and I'll try help you out.
Kind regards and happy Christmas
anyone noticing a serous drop of quantity of bought items and even failed items btw? is it possible that patch,hotfixes **** up something with the bot again? It's not just me but it just seems that it skips through items or stg like that, even failed auction number is down to almost 0.
Also I was wondering if there is anyone using the Gem Miner now, since gem stats are not searchable. And does anyone have opinion on a script, which searches the first few pages of a predefined criteria of items, checks if anything fits in the items for buyout (which may be many) and resets the search again. Is it fast enough for not being everytime outsniped by regular snipe bots?
Last edited by Sehae; 12-23-2012 at 05:35 AM.
Dont use it atm, got banned on 3 accounts, need another way to bot
Thx for the info regarding the bot![]()
Merry Christmas everyone~!!
Hi Chui,I have a problem with the bot - I see it as it finds the item, tries to buy it and then as it is processing the auction it either cancels it after 1 second waiting or the item suddenly becomes unavailable, but there is no failed auction ( IF it was a clear outsnipe, it would have been a FAILEd and would return the money) so I guess it just doesn't wait until the end of the processing and presses the cancel button. Is this possible, because since the last few patches I got severely reduced failed ammounts and bought amounts of items, so I guess it is a button problem, when the processing goes a little bit longer and the bot doesn't wait for it to complete, otherwise it would give the auction as a failed. Is this possible?
Last edited by Sehae; 12-25-2012 at 02:22 PM.
Just curious to know, if this bot also got hit by the banwave?
Or is this completely safe to use?![]()
I am trying to write a sell code that will
1. cancel an auction with remaining time lower than 1 day and 6 hrs.
2. send the cancelled item to stash
3. sell the item at 85% of the previously auctioned price.
I think this would require calling the ha log, which is not supported yet. (though i am sure chuichu is working on it)
1 and 2 are easy, but I can't figure out how to call previously auctioned price.
is there a different method that will do the function?
any comment or help would be appreciated.
Last edited by msk380; 12-26-2012 at 03:18 AM.
when you cancell items - you must save an array of item.hash and item.buyout and then when you resell these items - you must take buyouts from this array...
for example: (it cancell all items and resell them with 85% price)
Code:function zResell() local zp=0.85 local ii=0 zitems3={ {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0} } while haSellIterate() do ii=ii+1 local item = haItem() zitems3[ii][1]=item.hash zitems3[ii][2]=item.buyout haSellCancel() end haSleep(1100) while haSendToStash() do end while haSendToStash() do end haSetGlobalDelay(100) local zf = true for zrow = 1,10 do if zf == false then break end for zcol = 1,7 do if zf == false then break end haStashSelect(zcol, zrow, 1) local item = haItem() for j=1,10 do if item.hash == zitems3[j][1] then price = math.floor((zitems3[j][2])*zp) zf = haSell (price, price) break end end end end end zResell()
Last edited by ztnko; 12-26-2012 at 03:29 AM.