[AH Bot] HappyAuction menu

User Tag List

Page 26 of 149 FirstFirst ... 22232425262728293076126 ... LastLast
Results 376 to 390 of 2227
  1. #376
    Gunba's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    i cant seem to reproduce this... HA is always at 0% no matter what scripts i run. are you sure its HA and not d3 sucking up CPU? (in task manager proc list)



    if its the first item in search results you can loop on it with haSearch and see if the bid changes then bid again... otherwise i have active auctions support on my todo list (auctions tab)
    I was more thinking about the D3 process using CPU as a result of HA. Like I said, it will pull up an item tooltip unnecessarily (I think) when it is selecting an item from the list (because it mouses too far to the left). It's also possible to improve the search efficiency by allowing the user to type in new text values (for buyout and item name) and set filters while the bot is already searching. That crash I mentioned earlier is definitely not related to HA, seems to be a crash caused by selecting legacy items from the name autocomplete list.

    [AH Bot] HappyAuction
  2. #377
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well thats D3's fault lol... and pulling up the item tooltip is necessary to read item info.

    anyway if you run a bot at 0 delay its already so fast you'll get an input input in under a few minutes... which in turn causes relogin and becomes the greatest source of delay. im not sure how much a few milliseconds of input performance will matter at this point.

  3. #378
    Futile570's Avatar Member
    Reputation
    9
    Join Date
    Oct 2010
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First of all thank you for creating Happy Auction, I've made quite a bit of money the past couple days.
    I have a problem that I can't seem to fix: My script seems to be running amazingly except for the fact that it constantly buys boots with over 100 Strength Vitality and over 30 All Resist. I can't seem to fix it. Any help would be appreciated.
    Thanks in advance.

    -- get user buyout
    local buyout = 1234567
    --haFilterBuyout()

    if buyout < 0 then
    haAlert('Set some filters and a low buyout')
    else
    while true do
    --haFilterChar('Barbar')
    haFilterLevel(60,60)

    haFilterType('All Armor Item Types')
    haFilterBuyout(940000, true)
    haFilterStat(1,'Strength',30)
    haFilterStat(2,'Vitality',30)
    haFilterStat(3,'All Resistance',30)
    haFilterStat(4,'Critical Hit Chance',2)
    haFilterStat(5,'Critical Hit Damage',15)
    haFilterStat(6,'Attack Speed %',0)
    -- search and select first item in list
    if haSearch() and haListSelect(1) then
    haBuyout()
    --haAlert('Found Item')
    else
    haSleep(5913,4000)

    --haFilterChar('Barbar')
    haFilterLevel(60,60)
    haFilterType('All Armor Item Types')
    haFilterBuyout(500000, true)
    haFilterStat(1,'Strength',100)
    haFilterStat(2,'Vitality',100)
    haFilterStat(3,'All Resistance',50)
    haFilterStat(4,'Critical Hit Chance',3)
    haFilterStat(5,'None',0)
    -- search and select first item in list
    if haSearch() and haListSelect(1) then
    haBuyout()
    --haAlert('Found Item')
    else
    haSleep(4987,4000)
    end
    end
    end
    end

  4. #379
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are you saying it should be boots over 50 not 30?

  5. #380
    Futile570's Avatar Member
    Reputation
    9
    Join Date
    Oct 2010
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    are you saying it should be boots over 50 not 30?
    No, I am just wondering why it is buying boots with only Strength, Vit, and All Resist when my search options are set to Crit Chance, Crit Damage, and Attack Speed.
    That is all :P

  6. #381
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    see if adding a small sleep delay before haSearch fixes it (like 50 ms). someone else reported this too but i have a hard time reproducing it... seems like system dependent but i suspect search is called too quickly after filters are set and D3 ignores the last few.

  7. #382
    Futile570's Avatar Member
    Reputation
    9
    Join Date
    Oct 2010
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    see if adding a small sleep delay before haSearch fixes it (like 50 ms). someone else reported this too but i have a hard time reproducing it... seems like system dependent but i suspect search is called too quickly after filters are set and D3 ignores the last few.
    Ok, I'll try that. Thank you. If it keeps giving me problems I'll post back in here.

  8. #383
    Gunba's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    well thats D3's fault lol... and pulling up the item tooltip is necessary to read item info.
    Ah, that explains it. It'd be cool if you could just pull up the buyout, bid, time remaining, etc, since all of that is available without the tooltip.

    anyway if you run a bot at 0 delay its already so fast you'll get an input input in under a few minutes... which in turn causes relogin and becomes the greatest source of delay. im not sure how much a few milliseconds of input performance will matter at this point.
    The question is does hitting input limit faster and logging in more often overall allow you more searches?

  9. #384
    paulosousa12's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone with problems running the bot without the d3 window active?

  10. #385
    alexey777's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    finally! TY chiuchiu! for ru language in bot also now trying to do some filter, and I have question...

    I have the filter with it I can snipe items, when the list is empty, it goes another circle set stats,value, and find I think it's not safe, and takes more time.... so I need that command with that bot will go for 5-10 times refresh auc, and then go to next item, but not after 1 refresh... i'am so noob waiting for help, also ty

    P.S. also not this command haSortTimeLeft ???
    P.S.S. just in few words, hot to do more refreshs? without stats and value update ?
    Last edited by alexey777; 09-20-2012 at 02:14 PM.

  11. #386
    strohhaar's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i need a dede.txt for 9.24? i did not need it in 9.22. how to disable this?

  12. #387
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gunba View Post
    Ah, that explains it. It'd be cool if you could just pull up the buyout, bid, time remaining, etc, since all of that is available without the tooltip.



    The question is does hitting input limit faster and logging in more often overall allow you more searches?
    that depends on how input limit works and if its just a fixed number of searches in X time.

    Originally Posted by paulosousa12 View Post
    Anyone with problems running the bot without the d3 window active?
    fyi: wont work with minimized... only covered up, and not with haStash functions

    Originally Posted by alexey777 View Post
    finally! TY chiuchiu! for ru language in bot also now trying to do some filter, and I have question...

    I have the filter with it I can snipe items, when the list is empty, it goes another circle set stats,value, and find I think it's not safe, and takes more time.... so I need that command with that bot will go for 5-10 times refresh auc, and then go to next item, but not after 1 refresh... i'am so noob waiting for help, also ty

    P.S. also not this command haSortTimeLeft ???
    P.S.S. just in few words, hot to do more refreshs? without stats and value update ?
    do you mean SnipeBuyout bot or DPS? ... some bots have intentional delays which you can remove.

    Originally Posted by strohhaar View Post
    i need a dede.txt for 9.24? i did not need it in 9.22. how to disable this?
    sounds like german locale? you can fix for now by going to bin/Locale and copying enUS.txt as deDE.txt. ill add german support next update.

  13. #388
    alexey777's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ChiuChu, ya SnipeBuyout.... need to make more refreshes on auc for 1item, dunno where to change the values for it search works just with 1 refresh then go to next item from filter...

  14. #389
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    snipebuyout by default is simple and only supports one set of filters... if youre editing it and want more than one item set filters in script, then loop 5-10 times for that item... then do the same for another.

  15. #390
    alexey777's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    snipebuyout by default is simple and only supports one set of filters... if youre editing it and want more than one item set filters in script, then loop 5-10 times for that item... then do the same for another.
    ok, I understood.... ty

Similar Threads

  1. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  2. WoWGlider and GALB Botting Locations
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 04-11-2006, 08:01 PM
  3. Bot for gaining XP
    By JesseG18 in forum World of Warcraft General
    Replies: 1
    Last Post: 03-09-2006, 08:52 PM
  4. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
  5. Best Botting/Grinding Locations
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 02-27-2006, 12:39 AM
All times are GMT -5. The time now is 08:03 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search