[AutoIT] Deal Damage while AFK menu

Shout-Out

User Tag List

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

    [AutoIT] Deal Damage while AFK

    I wrote a neat little script for my hunter, that deals damage without any interaction of me. This works great at encounters where you don't move much, Brutallus is a good example. It can also be used by other classes, which mainly only use one single spell to deal damage (eg. Shadow Bolt). It does this by sending the button "2" (can be changed) in a random interval directly to the game, so you can also browse these forums or do other things on your desktop while the script continues dealing damage in World of Warcraft. Here is the script, you'll need to compile it yourself with AutoIT:

    Code:
    HotKeySet("^t",switch"); <-- "^t" is the hotkey, ^ = ctrl
    
    $toggle = 0
    
    Func switch()
        Sleep(300)
        If $toggle = 0 Then
            $toggle = 1
        Else
            $toggle = 0
        EndIf
    EndFunc
    
    
    while 1
        sleep (Random(12, 73)); <-- here you can change the interval
        if $toggle = 1 Then
            cast() 
        endif
    wend
    
    func cast()
        Controlsend("World of Warcraft", "", "", "2"); <-- "2" is the button to be spammed
    EndFunc
    How to use: While WoW is started, lay a spell on the button you defined to be spamed (default: 2) and press the hotkey you defined (default: ctrl+t) to start it, press the hotkey again to stop it.

    If you need any help with it or don't know how to compile, write me a PM.

    Have fun with it!
    Last edited by Chiyu; 10-29-2008 at 01:28 PM.

    [AutoIT] Deal Damage while AFK
  2. #2
    Cern's Avatar Banned
    Reputation
    146
    Join Date
    Feb 2007
    Posts
    1,038
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice find!!
    4 Cookiez fromme!

  3. #3
    Zafni's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice Chiyu. + 1

  4. #4
    stormer's Avatar Active Member
    Reputation
    33
    Join Date
    Nov 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i...dont know WTF is this....? Script that makes you deal any dmg?
    https://www.mmowned.com/forums/wow-guides/150097-how-make-awesome-signatures.html

  5. #5
    davetron's Avatar Member
    Reputation
    8
    Join Date
    May 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice i love auto it

  6. #6
    Kartio's Avatar Contributor

    Reputation
    165
    Join Date
    Apr 2007
    Posts
    1,619
    Thanks G/R
    7/1
    Trade Feedback
    2 (50%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    Nice find!!
    4 Cookiez fromme!
    It's not a find if he creates it by himself.

  7. #7
    Timmytimmelson's Avatar Member
    Reputation
    8
    Join Date
    Feb 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it hits the ****in 2 key over and over again... if you put an ability there it uses it over and over... real awesome. a simple script but if you dont explain it to scrubs its a waste of a post.

  8. #8
    BlQ's Avatar Member
    Reputation
    9
    Join Date
    Oct 2008
    Posts
    259
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    Nice find!!
    4 Cookiez fromme!
    You gave him realy 4 rep for this?
    Plz tell me which class you play and I'll do something for ya class so i can get some rep too

  9. #9
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    Nice find!!
    4 Cookiez fromme!
    That's pretty sad

  10. #10
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    #SarcasmStart
    Zomg imbascript for frostmages!
    Then compile this in AutoIt!
    Code:
    HotKeyset("{DEL}", "Terminate")
    
    $button = inputbox("Myello", "On what button is your Frostbolt?")
    while 1
    controlsend("World of Warcraft", "", "", $button)
    sleep(2600)
    wend
    
    Func Terminate()
    Exit
    EndFunc
    #SarcasmEnd


    Seriously, you don't even have to make it more advanced then that.

    Make a program out of it so everyone can use it, even without AutoIt.
    I can help you if you want.
    But for now, no cookie from me, but if you make something more userfriendly, I'll be more then happy to tutor, test, fix the code and even rep you.

    But if others feel like this is helpfull, rep him if you want, it's your own choice! Don't follow the stream, you have the right to rep whoever you want.


  11. #11
    Cern's Avatar Banned
    Reputation
    146
    Join Date
    Feb 2007
    Posts
    1,038
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm lovin' it.

  12. #12
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    I'm lovin' it.
    I know, that's why it's sad.

  13. #13
    Chiyu's Avatar Member
    Reputation
    86
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thidan View Post
    #SarcasmStart
    Zomg imbascript for frostmages!
    Then compile this in AutoIt!
    Code:
    HotKeyset("{DEL}", "Terminate")
    
    $button = inputbox("Myello", "On what button is your Frostbolt?")
    while 1
    controlsend("World of Warcraft", "", "", $button)
    sleep(2600)
    wend
    
    Func Terminate()
    Exit
    EndFunc
    #SarcasmEnd


    Seriously, you don't even have to make it more advanced then that.

    Make a program out of it so everyone can use it, even without AutoIt.
    I can help you if you want.
    But for now, no cookie from me, but if you make something more userfriendly, I'll be more then happy to tutor, test, fix the code and even rep you.

    But if others feel like this is helpfull, rep him if you want, it's your own choice! Don't follow the stream, you have the right to rep whoever you want.
    A switch function could be helpful, so you don't have to start the script again if you want it to continue. I do indeed know "how to make a program out of it", the process also known as compiling, but I didn't want to upload the .exe because then i would also have to post a virus scan and there would still be people who think it's a keylogger etc.

    The idea with the inputbox is nice, but i don't want to set the key everytime i start the script so i used a fixed key.

  14. #14
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chiyu View Post
    I do indeed know "how to make a program out of it", the process also known as compiling, but I didn't .
    Technically it doesn't compile. The source code is packed into an exe with any other files needed, and the exe reads the source code directly and executes it. It's called an interpreter really. A compiler would read the source code, and make the low-level code that gets done at the CPU level. This would make exact retrieval of the source code literally imposible. Because the interpreter just reads the script inside the exe, all autoit files will have the interpreter in them. This makes all of the autoit files have the same virus detections.

  15. #15
    Chiyu's Avatar Member
    Reputation
    86
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Phygar View Post
    Technically it doesn't compile. The source code is packed into an exe with any other files needed, and the exe reads the source code directly and executes it. It's called an interpreter really. A compiler would read the source code, and make the low-level code that gets done at the CPU level. This would make exact retrieval of the source code literally imposible. Because the interpreter just reads the script inside the exe, all autoit files will have the interpreter in them. This makes all of the autoit files have the same virus detections.
    I always wanted to know how it is possible to decompile autoit scripts, this also explains why every autoit exe has a size >240kb. Thanks for explaining this.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Ench]Gold in nagrand while afk!(autoit)
    By ka11 in forum World of Warcraft Guides
    Replies: 5
    Last Post: 03-05-2009, 01:47 PM
  2. Raise weapon skill while afk
    By scoobyray in forum World of Warcraft Exploits
    Replies: 24
    Last Post: 05-01-2007, 08:07 PM
  3. [Conjurer] Conjure Water and Food while AFK
    By Vladinator in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 04-13-2007, 11:29 AM
  4. AutoIt Macro for WoW AFK Bot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 04-06-2006, 06:01 AM
All times are GMT -5. The time now is 08:42 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