[Autoit] 800x600 Auction house Buyout Snipebot menu

Shout-Out

User Tag List

Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 64
  1. #31
    locedd's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bhodgson View Post
    Hello, my program liturally doesnt do anything like that it types search searches for all the rings doesnt put in a buyout moves around the page a bit then does this again every time. Little confused
    Did you set your resolution to 800x600 in window'd mode while having the game in the top left corner?

    [Autoit] 800x600 Auction house Buyout Snipebot
  2. #32
    volleyballlife's Avatar Sergeant
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it supposed to hover over each item? or only the top one? confused as well

  3. #33
    baldbrah's Avatar Master Sergeant
    Reputation
    1
    Join Date
    May 2012
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    been reading that blizz is crackign down on AH bots. anyone gotten banned yet using this script? and how long do you guys run it for?

  4. #34
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i havnt been banned, longest i've run it was 2 1/h hours while i took a nap.


    (don't post things I post to Patreon.)

  5. #35
    Snitzel29's Avatar Master Sergeant
    Reputation
    16
    Join Date
    Feb 2011
    Posts
    79
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been using this for maybe a week now, on and off. I only run this for maybe an hour or 2 at a time, totaling maybe 4-6 hours a day. I'm usually watching it. I also mess with the script to change things up. I change the buyout+interval to different numbers frequently (adding 8 or 12 instead of +1 when it changes the buyout) just to mix things up. I sometimes move the 800x600 window slightly so the coords are mixed up. I also change the sleep time so there are slightly different pauses.

    The biggest problem is that other bots sometimes buyout the item before mine does lol. I especially notice this on more popular items (MF rings for example)

    Otherwise, I greatly appreciate this script. I've saved tons of gold upgrading my gear.

  6. #36
    darknight666's Avatar Master Sergeant
    Reputation
    1
    Join Date
    May 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It be nice if it was way faster lol but i will try and change it myself

  7. #37
    AwareMeBrah's Avatar Member
    Reputation
    2
    Join Date
    May 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehVoyager View Post
    Greets folks, here is my first submission for AutoIT scripting. This extremely simple script looks for items listed cheaply, and buys them out. everything is annotated to allow for configuration.
    Use in 800x600 resolution, windowed. Make sure Diablo is in the Top Left corner of your screen.

    NOTE: For Larger Buyouts, Incerase "{BS 5}". BS denotes Backspace, 5 indecates the number of backspaces.

    Not to be distributed outside Ownedcore.com.

    Feel free to modify... however please give credit where its due.

    I take Zero responsability for any Losses of IGG.
    I take Zero Responsability for your Account Potentially being banned for using this.


    Usage

    Open the Auction house. open the Equipment Tab. Set your Armor Type, Level, and Attribute(s) you want to search for.

    Press F2 to start Script. Press F4 to stop script. a messagebox will pop up so you know for sure the bot has stopped.

    I recommend NOT compiling this as if you do you will have no way to update $Buyout $BuyoutCap and $Reset.

    Enjoy!

    (Note: Thanks to kakiru for some assitance with code trouble, Sonders for testing, AwareMeBrah for the idea, vvvat for telling me how the hell to loop a function and Miiiep for giving me a script to get mouse co-ordinates. and to everyone for putting up with my constant questions! )

    Code:
    ;TehVoyager's Auction house snipescript
    ;Version 1.01
    ;IGG Donations Accepted on US server lol ^__^
    ;Use in 800x600 resolution, windowed. Make sure Diablo is in the Top Left corner of your screen.
    ;NOTE: For Larger Buyouts, Incerase "{BS 5}". BS denotes Backspace, 5 indecates the number of backspaces.
    ;See commented portions to adjust timings and etc.
    ;Not to be distributed outside Ownedcore.com.
    ;Feel free to modify... however please give credit where its due.
    ;I take Zero responsability for any Losses of IGG.
    ;I take Zero Responsability for your Account Potentially being banned for using this.
    ;
    ;Usage
    ;
    ;Open the Auction house. open the Equipment Tab. Set your Armor Type, Level, and Attribute(s) you want to search for.
    ;
    ;Press F2 to start Script.
    
    
    Dim $Buyout = 10000 								;This is your Starting Buyout.
    Dim $BuyoutCap = 12000 								;This is the Buyout Cap.
    												;Modify these to change initial Buyout and Cap.
    
    Dim $Reset = 10000									;Make this the same as $buyout.
    
    HotKeySet("{F2}","Start")  								;script started by pressing F2.
    HotKeySet("{F4}", "Stop") 								;script stopped by pressing F4.
    
    While 1
    Sleep(500)
    Wend
    
    Func Start()
    While 1
    	Sleep(300 + Random(1,150))
    
    	MouseClick("Primary",234,462) 						;Select the Buyout input box.
    
    	Send("{BS 5}") 									;Erase buyout box.
    
    	Send($Buyout)
    
    		if ($Buyout < $BuyoutCap) Then $Buyout=$Buyout+1
    		If ($Buyout >= $BuyoutCap) Then $Buyout = $Reset
    
    	Send("{ENTER}")								;Search.
    
    	Sleep(200 + Random(1,150))
    
    	MouseClick("Primary",506,215)						;Select Top item in list.
    
    	Sleep(200 + Random(1,150))
    
    	MouseClick("Primary",687,522)						;Click "Buyout" button
    
    	Sleep(200 + Random(1,150))
    
    	MouseClick("Primary",362,444)						;Click "Buyout" button in Popup box.
    
    	Sleep(1000 + Random(1,150))
    
    	MouseClick("Primary",412,295)						;Click "Okay" confirming purchase.
    
    	Sleep(200 + Random(1,150))
    Wend
    EndFunc
    
    Func Stop()
    	MsgBox(0, "Done!", "Script Stopped.")
    	Exit
    EndFunc

    LOL i thought it looked familiar.

    Then I see that it's the source of the bot another guy posted and someone decompiled haha. I also personally converted it from AHK to AutoIt, we think alike

  8. #38
    baldbrah's Avatar Master Sergeant
    Reputation
    1
    Join Date
    May 2012
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AwareMeBrah View Post
    LOL i thought it looked familiar.

    Then I see that it's the source of the bot another guy posted and someone decompiled haha. I also personally converted it from AHK to AutoIt, we think alike
    aware brah

  9. #39
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AwareMeBrah View Post
    LOL i thought it looked familiar.

    Then I see that it's the source of the bot another guy posted and someone decompiled haha. I also personally converted it from AHK to AutoIt, we think alike
    did you also see yourself posted in the thanks to: section?
    (Note: Thanks to kakiru for some assitance with code trouble, Sonders for testing, AwareMeBrah for the idea, vvvat for telling me how the hell to loop a function and Miiiep for giving me a script to get mouse co-ordinates. and to everyone for putting up with my constant questions! )

    ^_^


    (don't post things I post to Patreon.)

  10. #40
    steven5210's Avatar Member
    Reputation
    5
    Join Date
    Jul 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AwareMeBrah View Post
    LOL i thought it looked familiar.

    Then I see that it's the source of the bot another guy posted and someone decompiled haha. I also personally converted it from AHK to AutoIt, we think alike
    Would you happen to have the AHK script? Thanksssssss!

  11. #41
    Retridin's Avatar Banned
    Reputation
    49
    Join Date
    Feb 2009
    Posts
    179
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What are u looking for guys to make so much money?

  12. #42
    LATM's Avatar Contributor
    Reputation
    189
    Join Date
    Jun 2012
    Posts
    457
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Retridin View Post
    What are u looking for guys to make so much money?
    edit: nvmmmmmmmmm

  13. #43
    airfreshjoe's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys after the initial typing in of 10000, when it repeats it clikcs somehwere else completly different and so therefore it goes 1000100000.. it doesnt backspace right.. how can i fix it

  14. #44
    nigglet12's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LATM View Post
    edit: nvmmmmmmmmm
    come on man, what are you looking for?

  15. #45
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by airfreshjoe View Post
    Hey guys after the initial typing in of 10000, when it repeats it clikcs somehwere else completly different and so therefore it goes 1000100000.. it doesnt backspace right.. how can i fix it
    Sounds like your not following the instructions properly.

    run it 800x600, windowed, top left corner of the screen. (or you can navigate to your D3Prefs.txt file, and input the values i have posted on page 1.

    if its clicking the wrong place, you have the game in the wrong place.

    Originally Posted by nigglet12 View Post
    come on man, what are you looking for?

    I agree. at least share with me i made the damn script! ^__^


    (don't post things I post to Patreon.)

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Tool] Auction house Undercut finder. [SAFE][AUTOIT]
    By NewMarlo in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-28-2013, 09:23 AM
  2. Anyone know of a good auction house bot that isn't autoit?
    By IcyBlueHell in forum Diablo 3 Bots Questions & Requests
    Replies: 1
    Last Post: 07-15-2012, 09:40 PM
  3. [Autoit] Auction House bot 1024x768 only
    By qwerz123 in forum D3 Gold profiles
    Replies: 34
    Last Post: 06-19-2012, 08:37 PM
  4. [Autoit] Auction House bot 1024x768 only
    By qwerz123 in forum Diablo 3 Bots and Programs
    Replies: 12
    Last Post: 06-11-2012, 11:03 AM
  5. Autoit Auction House?
    By brownprobe in forum Diablo 3 Bots and Programs
    Replies: 0
    Last Post: 06-04-2012, 06:47 PM
All times are GMT -5. The time now is 02:56 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