[AH Bot] HappyAuction menu

User Tag List

Page 3 of 149 FirstFirst 123456753103 ... LastLast
Results 31 to 45 of 2227
  1. #31
    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 Nablamax View Post
    It's the absolute time it will be when the auction ends.
    right but its in some format where dividing it by roughly 25-35 gets you seconds since some period of time. this value is inconsistent when i compare the difference between the time of two auctions but roughly falls into that range (with rounding considered). since i cant find current time in this format its tough to calculate remaining time.

    i could always parse the text but its not as accurate.

    [AH Bot] HappyAuction
  2. #32
    Pumbas's Avatar Active Member
    Reputation
    16
    Join Date
    Jul 2012
    Posts
    203
    Thanks G/R
    1/0
    Trade Feedback
    12 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey can anyone help me please?I do not know what to search,etc I really want to AH bot =/

  3. #33
    TPC's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx alot for this release !!! its the most awesome ah bot i have ever seen, so far.. found it on blizzhackers.
    i dont know anything about lua or c++ .. but i am learning fast!!

    <3

    used blizzkrieg before but i swapped to night..

  4. #34
    Pascal257's Avatar Member
    Reputation
    2
    Join Date
    Sep 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey ChuiChu,

    I highly like the bot so far but this:
    updated input method. now requires d3 window to be in foreground
    seems more like an downgrade. Why did this become necessary? Should I switch to 0.9.5 for security reasons or did you just change the input method to make it easier to implement the new features?

    - Lennix

  5. #35
    Nablamax's Avatar Master Sergeant
    Reputation
    5
    Join Date
    Jun 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Your bot can't detect if the bid you're trying is less than the minimum bid you can place.

  6. #36
    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)
    the current and max bid are available via haItem(). you can compare with those

    Originally Posted by Pascal257 View Post
    Hey ChuiChu,

    I highly like the bot so far but this:
    seems more like an downgrade. Why did this become necessary? Should I switch to 0.9.5 for security reasons or did you just change the input method to make it easier to implement the new features?

    - Lennix
    well its only for the stash selling... for some reason the original method (PostMessage) to mouse over items didnt work. i could make it so foreground is only a requirement for that section /shrug

  7. #37
    xisrox's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone pass me/sell a good list of items/prices to use on this?

  8. #38
    lycra2's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi ChuiChu - thanks for your hard work with this bot and sharing it with us. I do have a couple of noob questions before diving in. I'm currently using a modified Blizzkrieg script and I'm wondering if HappyAuction will be significantly faster. Specifically, how does it detect that an item has been found, and what is the latency between finding an item and sniping it? With a pixel-based bot like Blizzkrieg, there's always a delay between recognition and the buyout action, and I find myself losing more items to other bots than I'd like.

    Also, do the included scripts have a built-in randomized sleep timer between each search, or is this something that we have to add ourselves? I see that there's a haSetGlobalDelay() function in the main script, and a static sleep function in the snipe script, but not a random sleep function.

    Thanks in advance for your help!

    Edit: figured out the random sleep by reading the readme. Doh!
    Last edited by lycra2; 08-11-2012 at 02:07 PM.

  9. #39
    jagad's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great stuff. Great stuff indeed. Works like a charm, except it hits the input limit after about ~5 min 20 sec. Does anyone know how many millisec i should put it to sleep each loop to avoid the disconnects?

  10. #40
    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 lycra2 View Post
    Hi ChuiChu - thanks for your hard work with this bot and sharing it with us. I do have a couple of noob questions before diving in. I'm currently using a modified Blizzkrieg script and I'm wondering if HappyAuction will be significantly faster. Specifically, how does it detect that an item has been found, and what is the latency between finding an item and sniping it? With a pixel-based bot like Blizzkrieg, there's always a delay between recognition and the buyout action, and I find myself losing more items to other bots than I'd like.

    Also, do the included scripts have a built-in randomized sleep timer between each search, or is this something that we have to add ourselves? I see that there's a haSetGlobalDelay() function in the main script, and a static sleep function in the snipe script, but not a random sleep function.

    Thanks in advance for your help!

    Edit: figured out the random sleep by reading the readme. Doh!
    everything is randomized including haSetGlobalDelay() if its set higher than 0. HA is framerate based so the latency is about 1-2 frames between action. if you're running the SnipeBuyout bot the greatest source of delay will be network lag. remove the sleep function inside for max performance... (in fact ill do this next update).

    Originally Posted by jagad View Post
    Great stuff. Great stuff indeed. Works like a charm, except it hits the input limit after about ~5 min 20 sec. Does anyone know how many millisec i should put it to sleep each loop to avoid the disconnects?
    how input limit works is a mystery to me... i recently hit it after 5 clicks in after login and buying like 3000 mats. probably thinks each mat is an input. try a global delay of like 50-100 ms

  11. #41
    lycra2's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a function to change the class in the "Search Equipment For" box? I'm running this from a fresh account that has no level 60 character, and need to change from the default to another class.

  12. #42
    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)
    its automatic based on the item type you select. example:
    haFilterType('wizard hat')
    will auto pick character 'wizard' and item group 'armor'

  13. #43
    lycra2's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So there's no way to choose class if I am searching for a class neutral armor, like belt? Currently, I have to manually select a different class before starting the bot. If left on default, AH limits search results to items that my character can use.

  14. #44
    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)
    oh i see... ill expose selecting character next update then

  15. #45
    lycra2's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks! One final question - can you explain how haActionSearch() works? I tried looking at the source code, but my non-programmer brain couldn't figure it out. I've been running HappyAuction for about 5 hours, and noticed that I have no more failed bids, but also fewer purchases overall compared to Blizzkrieg. It's most likely due to bad luck, but I would greatly appreciate it if you can explain what is going on behind the scenes. Does it wait for search results to return before the function gets called, or is there a set sleep interval after the search gets submitted? I know that, for Blizzkrieg, it won't recognize an item if the interval between the search and buyout functions is too short. Your bot obviously works differently, but I just want to make sure that I'm not missing any items due to the latency of returned search results.

Page 3 of 149 FirstFirst 123456753103 ... LastLast

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 03:09 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search