[AH Bot] HappyAuction menu

User Tag List

Page 35 of 149 FirstFirst ... 31323334353637383985135 ... LastLast
Results 511 to 525 of 2227
  1. #511
    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)
    ya thats always been there... ill make it return fail if theres an error next update.

    [AH Bot] HappyAuction
  2. #512
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what means always been there? in prev versions i chech after sell attempt that it return's error and continue my script without any trouble. even if i don't chech error - in prev versions script try selling all items in stash and then continues. now it stops after reaching 10 auctions limit.
    Last edited by ztnko; 10-20-2012 at 03:37 AM.

  3. #513
    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)
    oops my bad... i did put the error check in there after all just that clearing said error doesnt work for latest patch. anyway ill try to update within a few days.

  4. #514
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you!

  5. #515
    slained's Avatar Master Sergeant
    Reputation
    22
    Join Date
    May 2012
    Posts
    121
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by slained View Post
    - now uses a direct method to emulate input IF D3 window is in focus. this will increase reliability. the input method is chosen when a script is started. to run in background do not focus D3 window when starting script (click on desktop or some other window).

    sometimes i have to reboot the program in order for it to work. Sometimes minimizes my windows. But yea Made 2 billion gold off your program so would be nice to donate

    edit: its only when i turn it off with ctrl + fkey then turn it back on that when it goes into loop it starts focusing the d3 window always.
    read this message?

  6. #516
    Sehae's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,
    Does anyone know on what depends how fast you get the buyout and to improve it - on global delay 0, I get outsniped very very often, running the game on 800x600 for max performance? Anyone has any ideas?

  7. #517
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <== pressing f5 every 5min in this topic for haSell fix...

  8. #518
    Loset's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im looking at the commands and I dont understand how can I use them to do it so.. Im asking your help :confused:.

    lets say this is the search part in GemMiner

    Code:
    	if haSearch() then
    
    		-- 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
    I dont want it to go all the way to page 46 I want to limit it to 10 or 5

    probably got somthing to do with this

    Code:
    - haListIterate() -> status
        Iterates through the entire search results list selecting every item
        until it reaches the last item of the last page.
        example:
            -- will buyout every item found
            while haListIterate() do
                haBuyout()
            end
        - status:   true if successful
    
    - haListAt() -> [row, page]
        Returns current list position
        - row:      current list row.
        - page:     current list page.

  9. #519
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    find another bug - when disconnect and then ip of computer changes and account blocks - script open explorer window with password recovery every several second.

    10 min is enough to fully freeze computer because of thousands browser windows
    Last edited by ztnko; 10-22-2012 at 04:09 AM.

  10. #520
    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)
    lol wut?

    anyway ill fix the few things tonight (in several hours)... ill start adding features again starting next monday when my dayjob stuff done.
    Originally Posted by Sehae View Post
    Hi,
    Does anyone know on what depends how fast you get the buyout and to improve it - on global delay 0, I get outsniped very very often, running the game on 800x600 for max performance? Anyone has any ideas?
    make sure your foreground/background graphics setting options are unchecked. and vync unchecked too. make sure you have no haSleeps either.

    otherwise im going to make a few ajdustments in week to make things slightly faster... it be like 5 loops/sec at 60fps now (using SnipeBuyout bot as example).

    Originally Posted by Loset View Post
    Im looking at the commands and I dont understand how can I use them to do it so.. Im asking your help :confused:.

    lets say this is the search part in GemMiner

    Code:
    	if haSearch() then
    
    		-- 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
    I dont want it to go all the way to page 46 I want to limit it to 10 or 5

    probably got somthing to do with this

    Code:
    - haListIterate() -> status
        Iterates through the entire search results list selecting every item
        until it reaches the last item of the last page.
        example:
            -- will buyout every item found
            while haListIterate() do
                haBuyout()
            end
        - status:   true if successful
    
    - haListAt() -> [row, page]
        Returns current list position
        - row:      current list row.
        - page:     current list page.
    you can just keep a counter of how far you want to go and call haListIterate that many times. so if you want 3 pages (11 items each) then loop 33 times.
    Last edited by ChuiChu; 10-22-2012 at 02:29 AM.

  11. #521
    Frank496's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone used both this and Blizzkrieg ah bot? What are the major differences and which do you prefer?

  12. #522
    msk380's Avatar Member
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    73
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question for everyone, here.

    How long is your haSleep?

    I set it as (1000, 3500) in order to avoid input limit errors.

    I unchecked FPS, and tried using 800*600 and all. Can't get any below that.

    Anyone has any idea on how to reduce the wait time?

  13. #523
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    - fixed haSell to fail+close popup if reached 10 auction limit.
    it's also bugged... it always return false status even if haSell successful... so it's impossible to use it now... in 9.26 the success status was correct but it don't close popup window and script stops... now script continues but status always false...

  14. #524
    gexstar's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys,

    i'd like to check Stone of Jordan with this Bot to get good deals.
    How can i make him check for special stats on the ring ?

  15. #525
    Vip76's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vip76 View Post
    ChuiChu, thanks, good program =)
    method "item.aps" nor working propertly. Always return 1
    Originally Posted by ChuiChu View Post

    k ill check it out
    Dear ChuiChu i still have this bug. May be becouse my client is RU?

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 07:59 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