[AutoIt] Auto-Auctioneer menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    zeroflow's Avatar Member
    Reputation
    25
    Join Date
    Sep 2007
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [AutoIt] Auto-Auctioneer

    Hey Guy's, my first thing to submit that i'm no more lazy leecher !

    First, you need Auctioneer and Bottom scanner.

    What this Script does:
    It automatically scans the AH via the "Scan" Button of Auctioneer.
    If the scan is over, it waits some time, and starts an new scan.
    If Bottom scanner has found something, the Script clicks "yes".
    Someone posted this in a more simple form as Innerspace Script.
    I found that shitty so i programmed this script myself in AutoIt.

    How to install:
    Open up the Auctioneer.au3 file, and change the variable declarations at beginning.
    You gonna need:
    X & Y Values of "Start Scan" Button in Auctioneer and "Yes" button in Bottomscanner
    Color of the "Start Scan" Button if inactive
    Color of the "Yes" Button if Bottom Scanner popps up
    The best way to get the coords is the "AutoIT 3 Window Information" Tool.
    To get the color, write this in another Auto-It script:
    Code:
    while 1
        ToolTip(PixelGetColor(X-Coord,Y-Coord),0,0);
    Wend
    It prints the value of the color at the top-left corner of your screen.

    How to use:
    Load WoW, login, go to the AH and open the AH
    Start the Script
    F9 - Start Script
    F10 - Pause Script
    F11 - Exit Script

    What is this Script good for?
    If your Bottom scanner has the right setup e.g to buy Ore for prospecting if you get 5g profit or else, it automatically buys such good auctions.
    In this Thread i will not tell you how to set up bottom scanner.

    Does it work?
    Definately YES !
    I started with 350g yesterday, today, i'm at about 1200g.
    How much Gold you can make with it depends on your Servers Economy

    But cant i be banned?
    I promise nothing, but normally you should not get banned because it is written in AutoIt and don't reads out Processes or else.

    Does it steal my Account info?
    No it does not!
    Feel free to check the source code.

    Download:
    RapidShare: 1-Click Webhosting
    It's in the "source" format because you have to modify some values.

    Sry for mistakes, but I'm from Austria (no, not that one with the kangoroos) :wave:

    If you find this Script good, pls vote 4 me to be no more lazy Leecher.
    Last edited by zeroflow; 01-11-2008 at 09:29 AM. Reason: How to get Color

    [AutoIt] Auto-Auctioneer
  2. #2
    bthecheat's Avatar Member
    Reputation
    11
    Join Date
    Nov 2007
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i gave you +REP so i'll download it when i get home...

  3. #3
    zeroflow's Avatar Member
    Reputation
    25
    Join Date
    Sep 2007
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you have enough patience, i gonna post a auto-rogue script in the next few days.
    It should do an rotation like 1 Snd - 5 Rupture or else ^^

    The only Problem would be that it fits for my UI, and for your UI you got to change a few things.

  4. #4
    XinuX's Avatar Contributor
    Reputation
    129
    Join Date
    Apr 2007
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol, i would love that rogue thingy :P I don't use auctioneer, but it's a good job. +rep

  5. #5
    zeroflow's Avatar Member
    Reputation
    25
    Join Date
    Sep 2007
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, i'm working at the rogue thing...

    Previously i didnt found anything to debug ingame where the routine is.

    Found this now.

    While my today's raid is running, i'm going to make it work and share this to you

  6. #6
    D0MM0's Avatar Member
    Reputation
    29
    Join Date
    Apr 2007
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WOW! awesome job, +rep

  7. #7
    Balld's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zeroflow View Post
    To get the color, write this in another Auto-It script:
    Code:
    while 1
        ToolTip(PixelGetColor(X-Coord,Y-Coord),0,0);
    Wend
    I made this script separatly, but
    when trying to run it I got error message:
    ------------------------------------------------------------------
    Line 2 (File "C:\WoW\coordscript.au3"):

    ToolTip(PixelGetColor(X-Coord,Y-Coord),0,0);
    ToolTip(PixelGetColor(X^ERROR

    Error: Missing separator character after keyword.
    ------------------------------------------------------------------

    What i did wrong ?
    Sorry - total noob in scripts...

  8. #8
    zeroflow's Avatar Member
    Reputation
    25
    Join Date
    Sep 2007
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Erm, it's meant to not run this like it's written there.

    When you got the Coord's from the AutoIt3Window Info Tool or else, you type that into the Script.

    So if you found that the center of the "scan" button is at Coords 236/129, then you have a script like that:

    Code:
    while 1
        ToolTip(PixelGetColor(236,129),0,0);
    Wend
    That prints out the color of the Pixel....
    Lets say it's running, and Auctioneer isn't searching at the moment, so in the Tooltip at the corner there would be some number like 8372318.
    Then you Press search, and the number should change to like 5066061 (which is gray -> search is running)

    this is how it works ^^

  9. #9
    tashin's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Color/Coordinates Scanner Found on AutoIt Forums.

    Ctrl + 1 = Copy Hex color to clipboard.
    Ctrl + 2 = Copy x and y coordinates to clipboard.
    Ctrl + 3 = Copy Decimal color to clipboard.
    Ctrl + 4 = Copy all infos in script window to clipboard.


    Code:
    #include <GUIConstants.au3>
    #Include <Misc.au3>
    Global  = 100,  = 100, 
    HotKeySet("{ESC}", "_Exit")
     = GUICreate("", , /2, "", "", BitOR(, ), )
     = GUICreate("", , /2, "", "", BitOR(, ), )
    GUISetBkColor(0xFFFFFF)
     = GUICtrlCreateLabel("", 5, 5, 95, 95)
    GUICtrlSetBkColor(-1, 0xFFFFFF)
    GUICtrlSetFont(-1, 5, 400, 0, "MS Sans Serif")
    GUISetState(@SW_SHOW, )
    GUISetState(@SW_SHOW, )
    
    While 1
         = TimerInit()
         = MouseGetPos()
         = PixelGetColor(,)
         = Hex(, 6)
         = "X: " &  & "  Y: " &  & @CRLF & "Hex: " &  & @CRLF & "Dec: " & 
        GUISetBkColor(, )
        WinMove(, "", ( - ) - 5, ( - ) - 5)
        WinMove(, "", ( - ) - 5, ( - /2) - 5)
         += TimerDiff()
        If  > 200 Then
            GUICtrlSetData(, )
             = 0
        EndIf
        If _IsPressed("11") And _IsPressed("31") Then ClipPut()
        If _IsPressed("11") And _IsPressed("32") Then ClipPut( & " " & )
        If _IsPressed("11") And _IsPressed("33") Then ClipPut()
        If _IsPressed("11") and _IsPressed("34") Then ClipPut()
    WEnd
    
    Func _Exit()
        Exit
    EndFunc
    I in no way take credit for this.

  10. #10
    wicked_joe's Avatar Active Member
    Reputation
    24
    Join Date
    Jun 2006
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very nice +rep
    GOOGLE FOR LEADER OF THE WORLD WITH ITS GREAT SEARCHING POWER

  11. #11
    xdaemonx2's Avatar Member
    Reputation
    11
    Join Date
    Jan 2008
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I suppose +rep :\

  12. #12
    rogu3's Avatar Member
    Reputation
    11
    Join Date
    Jan 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep nice post mate.

  13. #13
    bibb's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Nice

    welldone

  14. #14
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lovely stuff, but the pixel color stuff is a bit unnecessary... just have it send any keyboard character, and bind that key to this macro:

    Code:
    /run if (BtmScan.Prompt:IsVisible()) then BtmScan.Prompt.Yes:Click() end

    Soon you can find my projects at: www.termight.info

  15. #15
    fruitmandje's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gothian View Post
    Lovely stuff, but the pixel color stuff is a bit unnecessary... just have it send any keyboard character, and bind that key to this macro:

    Code:
    /run if (BtmScan.Prompt:IsVisible()) then BtmScan.Prompt.Yes:Click() end
    Isnt that dangerous to let him press an key all the time?

Page 1 of 2 12 LastLast

Similar Threads

  1. Auto-Auctioneer
    By Choxxmage in forum World of Warcraft Bots and Programs
    Replies: 17
    Last Post: 10-29-2008, 08:18 AM
  2. AutoIT Auto Login for WoW
    By iradiation in forum World of Warcraft Bots and Programs
    Replies: 32
    Last Post: 08-23-2008, 04:16 PM
  3. [AutoIt] Auto-Rogue
    By zeroflow in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 01-11-2008, 08:07 PM
  4. autoit auto seller / buyer
    By orangegold in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 04-24-2007, 06:55 AM
All times are GMT -5. The time now is 02:07 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