Is this mac compatible? asking for a buddy :P
Is this mac compatible? asking for a buddy :P
Testing the update 36A for the last like 11-12 hours - for now running strong with 0 bugs![]()
I'm double posting as it is important - I asked a friend to send me his folder, which he said was not edited AT ALL except for main.lua for the user/pass, name of script and delay, as well as bots folder to copy the scripts used before. Now it works with no problem, which is very weird, as I did exactly the same things as him once I downloaded the latest version (36a) and was constantly stuck at "input limit reached"
TLDR: Had a friend send me his folder, works fine now, don't know why as we did same stuff.
that is wierd... HA is all one file (the exe). so theres no way to mix things up. if this happens again let me know and if possible upload your directory so i can test it as is
anyway based on Sehae's and your report ill add a few more things (like improved docs) and make 36A the next 36.
I think you know about some of these but anyway (not 36A);
-Getting stuck at profile screen instead of moving to AH
-Stopping on certain items using haSellIterate() (unsure why)
-haStashIterate seems to scan the second stash tab twice? Also, is there an easy way to make this only scan one tab?
I can mitigate these using AHK scripts but these bugs might be an issue for other people
Thanks
Last edited by Gunba; 12-05-2012 at 11:22 PM.
This program is awesome. Thank you,ChuiChui.
However, there's a problem maybe only for me.
I read some posts about a few of users using multiple clients.
So I tried to do 2 clients at once, and disappointed at the performance.
It's too laggy to surf the Internet over 2 HA on.
My PC specs are I5-3570, 16gb ram, 120gb ssd, ATI 4830 vga ,B75 board, etc.
Although the cpu usage is under 60%, scrolling down a webpage with my mouse wasn't smooth.
Am I supposed to format my computer? or Would it be good to upgrade I5-3570 to I7-3770?
Any feedback would be helpful.
Hello, very good job with program
But I need a little help.
I want to write script like that:
When I press f.e. M, it shows menu list like on screen. Then when I click button with Ring, this menu is closed and it runs code assigned to this button - in this expample search type of ring.
Then when i press again M, menu list shows again and I can click another button, which runs another code.
Is it possible to write something like that?
![]()
Last edited by bandaband; 12-06-2012 at 04:30 AM.
once again thanks for the bot. will be trying the new version soon.
I noticed Chuichu only has 57 rep, what's the deal guys? If you like something give REP It's free! It's the least he deserves.
Do we currently have any methods to detect if there's bids on selling items?
haSellCancel seems to get stuck trying to cancel auctions with bids on them.
haItem().mbid seems to return 0 every time, and haItem().cbid is current bid + 5% so appears to me there has been some misaligned memory.
Hello at all,
First to say: Thanks so much to Chuichu for his time.
I'm a real noob in programmation and this is my first time with a bot.
Please I need to somebody respond me a question.
If I edit the Snipebuyout.lua with this text:
-- get user buyout
local buyout = haFilterBuyout()
-- check input
if buyout <= 0 then
haAlert('eooo')
else
while true do
haItem().name == "Mempo of Twilight"
haFilterStat(1,'Critical Hit Chance', 4)
haFilterStat(2,'Strength', 150)
haFilterBuyout(10000000, true)
if haSearch() then
haListSelect(1)
haBuyout()
end
haItem().name == "Mempo of Twilight"
haFilterStat(1,'Critical Hit Chance', 4)
haFilterStat(2,'Intelligence', 150)
haFilterBuyout(10000000, true)
if haSearch() then
haListSelect(1)
haBuyout()
end
end
end
it's works properly if i run happybot, d3 and press F12?
Many thanks and regards.
PD: Don't work for me.
Last edited by Darkechoes; 12-06-2012 at 08:02 AM.
Your post clearly marks that you have no idea what you're doing and I suggest you find something better to do with your time.
Also if you're using default settings, you will start script with ctrl+F12, not F12 alone.
I looked through your code and tried to decipher your intentions, I believe this script would be sufficient for your needs. Code is untested.
Code:--[[ Script will set mempo of twilight (non-legacy) and crit chance of 4. Then repeatedly set 150 strength or intelligence and search for randomized buyout 10 million. Will buyout if any results found. ]]-- if haFilterUnique("Mempo of Twilight",1) and haFilterStat(1,'Critical Hit Chance', 4) then while true do if haFilterBuyout(10000000, true) and haFilterStat(2,'Strength', 150) then if haSearch() and haListSelect(1) then haBuyout() end end if haFilterBuyout(10000000, true) and haFilterStat(2,'Intelligence', 150) then if haSearch() and haListSelect(1) then haBuyout() end end end else haAlert('fail') end
Ops... I begin to understand, thanks for your fast response.