[Program] AutoGlide menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Program] AutoGlide

    Again, taken from WoWGlider Members Area Enjoy

    Although I love reloggin on disconnect the most...
    Another script of mine is more immediate but not as effective

    This script will reattach glider and then hit glide, or just hit glide if it is already attached after you have begun gliding.


    Code:
    ;----------------------------------------------------------------------------
    ;
    ; AutoIt Version: 3.1.0
    ; Author: PwnSh0p
    ;
    ; Script Function:
    ;    
    ;    If it finds that glider is unattached or not gliding,
    ;       it will reattach glider
    ;    and choose glide on -- ---
    ;----------------------------------------------------------------------------
    
    AutoItWinSetTitle(random(10, 1000000, 1))
    $title = random(10, 1000000, 1)
    $win_title = "World of Warcraft"
    HotKeySet("{END}", "request_end")
    $hit = 1
    $oncolor = "0xFF0000"
    
    checkwindow()
    
    while $hit
    Msg("Move your mouse EXACTLY over the black {A} character part of the ""attach"" button" & @LF & "and press enter.  This works very well but might require a few retries," & @LF & "and you need to make sure that glider is not already attached.")
    
    $mouserPOS = MouseGetPos()
    
    $attachx = $mouserPOS[0]
    $glidey = $mouserPOS[1]
    $glidex = $mouserPOS[0] - 68
    
    $colordec = PixelGetColor($mouserPOS[0], $mouserPOS[1])
    $color_to_use = "0x" & Hex($colordec, 6)
    if $color_to_use = "0x000000" then
        msg("Perfect.  Use the {END} key on the keyboard to exit.  Automation starting...")
        $hit = 0
    else
        msg("Try again.  Mouse has to be over the black text of the attach button.")
        $hit = 1
    endif
    
    wend
    
    
    
    while 1
    checkwindow()
    $checkunattached = "0x" & Hex(PixelGetColor ( $attachx , $glidey ), 6)
    if $checkunattached = "0x000000" then
            MouseMove($attachx, $glidey, 1)
            sleep(1000)
            MouseClick("left", $attachx, $glidey, 1, 1)
            sleep(1000)
            MouseMove($glidex, $glidey, 1)
            sleep(1000)
            MouseClick("left", $glidex, $glidey, 1, 1)
    endif
    sleep(5000)
    $checkgliding = "0x" & Hex(PixelGetColor ( $attachx - 15 , $glidey ), 6)
    if $checkgliding = "0xA7A6AA" then
            MouseMove($glidex, $glidey, 1)
            sleep(1000)
            MouseClick("left", $glidex, $glidey, 1, 1)
            sleep(1000)
    elseif $checkgliding = $oncolor then
        sleep(5000)
    else
        msg("Unknown state of gliding.  Exiting...")
        Exit
    endif
    sleep(2000)
    wend
    
    func request_end()
        $MB_YESNO = 4
        $MB_YES = 6
        if MsgBox($MB_YESNO, $title, "End WoWAttach?") == $MB_YES then
            Exit
        endif
    endfunc
    
    func checkwindow()
    $x = WinGetState( $win_title )
    $y = BitAND( $x, 9 )
    if $y = 0 then
        msgbox( 0, $title, "WoW Window is nonapparent.  Exiting...")
        Exit
    endif
    endfunc
    
    func msg($text)
        MsgBox(0, $title, $text)
    endfunc
    Get AutoIt here: (Although you should already have it )
    http://www.autoitscript.com/autoit3/
    Last edited by Cypher; 05-14-2006 at 01:14 AM.

    [Program] AutoGlide
  2. #2
    tahoebyker's Avatar Active Member
    Reputation
    25
    Join Date
    Apr 2006
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It says Content visible to registered users only. and here I am posting

  3. #3
    Matt's Avatar Legendary Authenticator enabled
    Reputation
    633
    Join Date
    Feb 2006
    Posts
    2,996
    Thanks G/R
    2/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    fixed.. i need to rebuild the post cache daily.. and this is becoming a pain..

  4. #4
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why is it happening though?

  5. #5
    Matt's Avatar Legendary Authenticator enabled
    Reputation
    633
    Join Date
    Feb 2006
    Posts
    2,996
    Thanks G/R
    2/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the modification that i use to hide it (in order to increase registration rates), requires that the post be rebuilt daily as it is only stored for 24 hours at a time.. I just installed an update for the mod, hopefully this should keep it fixed..

  6. #6
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK, thats good. Caus having to rebuilt posts all the time would be annoying lol. If it keeps happening, tell me what I need to do and I'll help out.

  7. #7
    Matt's Avatar Legendary Authenticator enabled
    Reputation
    633
    Join Date
    Feb 2006
    Posts
    2,996
    Thanks G/R
    2/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    worst comes to worst, i create a cron to do it automatically.. or I just uninstall the mod.. neither are that bad of a scenario.. so eh.. who cares, right?

  8. #8
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yep, fair enough. (Just realised I hijacked my own thread...oh well )

  9. #9
    Thepyro229's Avatar Member
    Reputation
    1
    Join Date
    May 2006
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could something like this be used when the demo version of glider expiers, to close out of the previous one, open a new one, and hit glide?

  10. #10
    bluefire24's Avatar Member
    Reputation
    1
    Join Date
    May 2006
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i downloaded the glider but it is only the demo

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Theres no working crack out at the moment. In my opinion it's well worth buying.

  12. #12
    janzi9's Avatar Contributor
    Reputation
    147
    Join Date
    Feb 2006
    Posts
    665
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey! I am trying to buy a Glider for $25!
    I will share this Glider with a few people, but..
    I need to know some good PTC and PTS sites.
    Hi-Jacked.

  13. #13
    Ced's Avatar Contributor
    Reputation
    115
    Join Date
    May 2006
    Posts
    559
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i want one too1 :P lol

  14. #14
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by janzi9
    I need to know some good PTC and PTS sites.
    Sorry, what is PTC and PTS??

  15. #15
    Dwarpy's Avatar Banned
    Reputation
    95
    Join Date
    May 2006
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chazwazza
    Sorry, what is PTC and PTS??
    He is refering to Pay To Click and Pay To (Share?). Basically, it's all a pyramid scheme. One of those "GET PAYED TO READ YOUR E-MAIL" "GET PAYED TO ANSWER SURVEYS" They are gimmicks.... and it will take him about a year to make 25 dollars real money on those things.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Program] Fishbot Refurbished - GUI
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 12-05-2006, 06:12 AM
  2. [Program] WoW AV AFK Bot
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 05-22-2006, 05:04 AM
  3. [Program Request] 1.9.0 hack
    By lopolop in forum World of Warcraft General
    Replies: 1
    Last Post: 05-17-2006, 09:41 PM
  4. [Program] Bypasser
    By oninuva in forum World of Warcraft General
    Replies: 5
    Last Post: 05-14-2006, 09:01 PM
  5. [Program] Re-login on Disconnect
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 05-14-2006, 01:01 AM
All times are GMT -5. The time now is 10:19 PM. 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