Bob's 'Float in Mid-Air' Script menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Bobfrost's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Bob's 'Float in Mid-Air' Script

    I created my own AutoIt script to automate 'floating' in mid-air (via the logout trick). I spent quite a bit of time fine-tuning the timing. Note, however, that lag can intefere with getting a perfect float.

    For safest use, take the following script, and compile it yourself with AutoIt, so you can use it as a stand-alone exe. Name the exe something ambiguous.

    The script lets you do 3 differnt kinds of float, activated by F1, F2, F3, respectively. Experiment with it, and see if you can come up with something better. Comments appreciated.

    Code:
    HotKeySet("{F1}", "float1")
    HotKeySet("{F2}", "float2")
    HotKeySet("{F3}", "float3")
    HotKeySet("{PAUSE}", "unbind")
    while 1
        sleep(200)
    WEnd
    
    func float1()
        Send("{ENTER}")
        Sleep(30)
        Send("/logout")
        Send("{ENTER}")
        Sleep(40)
        Send("{SPACE DOWN}")
        Send("{UP}")
        Send("{SPACE UP}")
        Sleep(600)
    EndFunc ;:: float1()
    func float2()
        Send("{ENTER}")
        Sleep(30)
        Send("/logout")
        Send("{ENTER}")
        Sleep(45)
        Send("{SPACE}")
        Sleep(600)
    EndFunc ;:: float2()
    func float3()
        Send("{ENTER}")
        Sleep(30)
        Send("/sit")
        Send("{ENTER}")
        Sleep(1500)
        Send("/logout")
        Send("{ENTER}")
        Sleep(45)
        Send("{SPACE}")
        Sleep(50)
        Send("/sit")
        Send("{ENTER}")
        Sleep(3000)
        Send("{ESC}")
        Sleep(600)
    EndFunc ;:: float3()
    Func unbind()
        HotKeySet("{F1}")
        HotKeySet("{F2}")
        HotKeySet("{F3}")
        HotKeySet("{PAUSE}", "rebind")
    EndFunc ;:: unbind
    Func rebind()
        HotKeySet("{F1}", "float1")
        HotKeySet("{F2}", "float2")
        HotKeySet("{F3}", "float3")
        HotKeySet("{PAUSE}", "unbind")
    EndFunc ;:: rebind

    ----(please leave the copyright info below intact)----
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce the above on any other site without written permission from both the poster and MMOwned.com

    Bob's 'Float in Mid-Air' Script
  2. #2
    brendanec's Avatar Active Member
    Reputation
    38
    Join Date
    Feb 2007
    Posts
    147
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    all 3 log me out.

  3. #3
    Bobfrost's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Brend:

    The trick only works if you are (a) not in a city, and (b) not indoors. Additionally, if you try this while standing atop a mailbox, you will get logged out as well. Pretty much anywhere else works. That is simply a global feature of the /logout command.

  4. #4
    Mentol's Avatar Active Member
    Reputation
    60
    Join Date
    Aug 2006
    Posts
    499
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    I just got AutoIt But where do i type the code, so i can get a script?


    Please tell me, +rep if you do!

  5. #5
    beerie's Avatar Active Member
    Reputation
    33
    Join Date
    Jul 2006
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    why would I want to float in mid air? Does it have any practical use?

  6. #6
    Bobfrost's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Lahas: I suggest opening the Help file for AutoIt to learn how to use it. But, to answer your question:

    (1) Create a new folder.
    (2) Open the folder.
    (3) Right-click in the folder so you can
    (4) Click on 'New' --> 'AutooIt Script'
    (5) Open the new script.
    (6) Copy my code; paste it in.
    (7) Save the file.
    ( Close the script.
    (9) Rt-click the script.
    (10) Click 'Compile Script'
    (11) You will now have a stand-alone exe.

    Beerie: Why float in mid-air? It's fun. No, it won't get you honor or gold. It's just a fun trick. The more creative you are with it, the more fun it is. I'll let you figure out what else can be done with it.

  7. #7
    Mentol's Avatar Active Member
    Reputation
    60
    Join Date
    Aug 2006
    Posts
    499
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    ow thanks man ! +rep and sum respect for that

  8. #8
    Lonekeeper's Avatar Member
    Reputation
    3
    Join Date
    Feb 2007
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    does this let you move floating in the air?

  9. #9
    smithen1's Avatar Member
    Reputation
    12
    Join Date
    Aug 2006
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Originally Posted by Bobfrost
    I created my own AutoIt script to automate 'floating' in mid-air (via the logout trick). I spent quite a bit of time fine-tuning the timing. Note, however, that lag can intefere with getting a perfect float.

    For safest use, take the following script, and compile it yourself with AutoIt, so you can use it as a stand-alone exe. Name the exe something ambiguous.

    The script lets you do 3 differnt kinds of float, activated by F1, F2, F3, respectively. Experiment with it, and see if you can come up with something better. Comments appreciated.

    Code:
    HotKeySet("{F1}", "float1")
    HotKeySet("{F2}", "float2")
    HotKeySet("{F3}", "float3")
    HotKeySet("{PAUSE}", "unbind")
    while 1
        sleep(200)
    WEnd
     
    func float1()
        Send("{ENTER}")
        Sleep(30)
        Send("/logout")
        Send("{ENTER}")
        Sleep(40)
        Send("{SPACE DOWN}")
        Send("{UP}")
        Send("{SPACE UP}")
        Sleep(600)
    EndFunc ;:: float1()
    func float2()
        Send("{ENTER}")
        Sleep(30)
        Send("/logout")
        Send("{ENTER}")
        Sleep(45)
        Send("{SPACE}")
        Sleep(600)
    EndFunc ;:: float2()
    func float3()
        Send("{ENTER}")
        Sleep(30)
        Send("/sit")
        Send("{ENTER}")
        Sleep(1500)
        Send("/logout")
        Send("{ENTER}")
        Sleep(45)
        Send("{SPACE}")
        Sleep(50)
        Send("/sit")
        Send("{ENTER}")
        Sleep(3000)
        Send("{ESC}")
        Sleep(600)
    EndFunc ;:: float3()
    Func unbind()
        HotKeySet("{F1}")
        HotKeySet("{F2}")
        HotKeySet("{F3}")
        HotKeySet("{PAUSE}", "rebind")
    EndFunc ;:: unbind
    Func rebind()
        HotKeySet("{F1}", "float1")
        HotKeySet("{F2}", "float2")
        HotKeySet("{F3}", "float3")
        HotKeySet("{PAUSE}", "unbind")
    EndFunc ;:: rebind

    ----(please leave the copyright info below intact)----
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce the above on any other site without written permission from both the poster and MMOwned.com
    this would be really nice if they didnt get rid of floating in mid air in patch 1.10...
    ||Post in the Questions section, here, If you want Expert help on Emulators.

  10. #10
    Mentol's Avatar Active Member
    Reputation
    60
    Join Date
    Aug 2006
    Posts
    499
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script


  11. #11
    MaXe's Avatar Member
    Reputation
    79
    Join Date
    Jan 2007
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Lahas ->
    Allways follow rules.. -.-

    Upload a screenshot of that you scanned it..
    I'm scanning now.. I hope it's clean.

    I say be very carefull!

    EDIT::

    Well the only thing it has so far in it is: (scanned with virustotal.com)
    suspicious Trojan/Worm
    IM-Worm.Win32.Sohanad.aa
    Worm.Win32.Sohanad.t
    If you don't believe me, scan it yourself.
    IM-Worms are one of the annoying worms that will try hit your friends..
    It will simply send infected links to websites to your friends..
    If they click the infected links, they get infected too with same or another virus.
    EDIT::

    Last edited by MaXe; 02-28-2007 at 01:55 PM.
    - The Mysterious Ways of The Unknown


  12. #12
    Araren's Avatar Member
    Reputation
    5
    Join Date
    Dec 2006
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Is Lahas's link clean? no offense Lahas just dont want any Loggers
    (\_/)
    (o.0)
    (^^)
    WOOOOOH!

  13. #13
    Mentol's Avatar Active Member
    Reputation
    60
    Join Date
    Aug 2006
    Posts
    499
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Am a noob, i just learned where to type the script, and how to compile it to an .exe

    I would never post a keylogger or any virus releated... ( i dont know how to do is :P )



    EDIT: Results of scanning


    AntiVir 7.3.1.38 02.28.2007 no virus found
    Authentium 4.93.8 02.28.2007 no virus found
    Avast 4.7.936.0 02.28.2007 no virus found
    AVG 7.5.0.447 02.28.2007 no virus found
    BitDefender 7.2 03.01.2007 no virus found
    CAT-QuickHeal 9.00 02.28.2007 no virus found
    ClamAV devel-20060426 02.28.2007 no virus found
    DrWeb 4.33 02.28.2007 no virus found
    eSafe 7.0.14.0 02.28.2007 suspicious Trojan/Worm
    eTrust-Vet 30.6.3443 02.28.2007 no virus found
    Ewido 4.0 02.28.2007 no virus found
    FileAdvisor 1 03.01.2007 no virus found
    Fortinet 2.85.0.0 02.28.2007 no virus found
    F-Prot 4.3.1.45 02.28.2007 no virus found
    F-Secure 6.70.13030.0 02.28.2007 no virus found
    Ikarus T3.1.1.3 02.28.2007 IM-Worm.Win32.Sohanad.aa
    Kaspersky 4.0.2.24 03.01.2007 no virus found
    McAfee 4973 02.28.2007 no virus found
    Microsoft 1.2204 02.28.2007 no virus found
    NOD32v2 2085 02.28.2007 no virus found
    Norman 5.80.02 02.28.2007 no virus found
    Panda 9.0.0.4 02.28.2007 no virus found
    Prevx1 V2 03.01.2007 no virus found
    Sophos 4.14.0 02.28.2007 no virus found
    Sunbelt 2.2.907.0 02.24.2007 no virus found
    Symantec 10 03.01.2007 no virus found
    TheHacker 6.1.6.065 02.26.2007 no virus found
    UNA 1.83 02.28.2007 Worm.Win32.Sohanad.t
    VBA32 3.11.2 02.28.2007 no virus found
    VirusBuster 4.3.19:9 02.28.2007 no virus found
    Last edited by Mentol; 02-28-2007 at 06:58 PM.

  14. #14
    Bobfrost's Avatar Member
    Reputation
    5
    Join Date
    Jan 2007
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    Smithen1 states: "this would be really nice if they didnt get rid of floating in mid air in patch 1.10."

    Reply: Smith, it works just fine. I wouldn't waste my time posting something that doesn't work.

  15. #15
    brendanec's Avatar Active Member
    Reputation
    38
    Join Date
    Feb 2007
    Posts
    147
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Bob's 'Float in Mid-Air' Script

    I got it to work outside of a major city. The real trick would be to do it over and over so that you could float higher off the ground.

Page 1 of 2 12 LastLast

Similar Threads

  1. float in mid air in zangarmarsh Telredor
    By kurtlesesh in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 11-26-2008, 08:14 AM
  2. Float in mid air - as high as you want
    By RichyG in forum World of Warcraft Exploits
    Replies: 21
    Last Post: 03-15-2008, 12:17 PM
  3. The REAL way to Float in Mid-Air
    By Newbs_r_us in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 08-11-2007, 11:59 PM
  4. How to float in mid air
    By lucaimperfect in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 06-26-2007, 02:49 PM
  5. How to float in mid air
    By Araren in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 12-09-2006, 02:31 PM
All times are GMT -5. The time now is 02:07 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