Jump to content

Wow afk script


Guest Remy22
 Share

Recommended Posts

hello,

i'm searching for a anti afk script for the game World of Warcraft? I'm a n00b with scripting, so can somebody help me with that?

it's simpel to make i think.. only every 5 min, it must hit 1 time the forward key...

Thanks for helping :">

Link to comment
Share on other sites

hello,

i'm searching for a anti afk script for the game World of Warcraft? I'm a n00b with scripting, so can somebody help me with that?

it's simpel to make i think.. only every 5 min, it must hit 1 time the forward key...

Thanks for helping :">

Reffer to this post: http://www.autoitscript.com/forum/index.php?showtopic=21284

[quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()

Link to comment
Share on other sites

Because it is a good day I will list the commands you should look for in the help file.

While

WEnd

Sleep

Send

SendKeyDownDelay


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Thanks for noting!

this page is better http://www.autoitscript.com/forum/index.ph...opic=16055&st=0 !!!111

What do you mean? I think you should of gotten some great information out of that page.

Step 1. Read the help file.

Step 2. Search the forums.

Step 3. Ask your question here and give us a copy of your code.

You on the other hand just expected us to write your application for you. So you are welcome because that is the way it is here. Welcome to the forums.

[quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()

Link to comment
Share on other sites

  • 10 months later...

Hey, I have this jump macro script for wow but every time I run it it completely slows down my pc to a stutter. I've run it on another computer and it seems to work fine, any ideas what the problem could be?

Here's the code:

WinWaitActive("World of Warcraft")

HotKeySet("{PAUSE}", "Start")

HotKeySet("!{PAUSE}","Quit")

TogglePause()

func Start()

HotKeySet("{PAUSE}")

HotKeySet("{PAUSE}", "TogglePause")

ToolTip('Break started.',0,0)

While 1

Send("{SPACE}")

Sleep(Random(120000,240000))

WEnd

EndFunc

Func TogglePause()

ToolTip('Break Stopped.',0,0)

HotKeySet("{PAUSE}")

HotKeySet("{PAUSE}", "Start")

While 1

sleep(100)

WEnd

EndFunc

func Quit()

Exit

EndFunc

thanks

Link to comment
Share on other sites

Hmm, i wrote this up, but i don't have WOW so you try it out.

HotKeySet("{PAUSE}", "Start")
HotKeySet("!{PAUSE}","Quit")
HotKeySet("!{HOME}", "Pause")
WinWaitActive("World of Warcraft")

While 1
    Sleep(100)
WEnd

Func Start()
    ToolTip('Break started.',0,0)
    While 1
        Send("{SPACE}")
        Sleep(Random(120000,240000))
    WEnd
EndFunc

Func Pause()
    $Paused = NOT $Paused
    While $Paused
        Sleep(2000)
    WEnd
EndFunc

Func Quit()
    ToolTip("Ok, exiting...")
    Sleep(2000)
    Exit
EndFunc
Link to comment
Share on other sites

Hey, thanks for taking to time to write out a script, could I use the controlsend function like this? I saw it mentioned in another thread and this is how I understood I'd use it from the help file,

HotKeySet("{PAUSE}", "Start")
HotKeySet("!{PAUSE}","Quit")
HotKeySet("!{HOME}", "Pause")
WinWaitActive("World of Warcraft")

While 1
    Sleep(100)
WEnd

Func Start()
    ToolTip('Break started.',0,0)
    While 1
         controlsend("World of Warcraft", "{SPACE}")
        Sleep(Random(120000,240000))
    WEnd
EndFunc

Func Pause()
    $Paused = NOT $Paused
    While $Paused
        Sleep(2000)
    WEnd
EndFunc

Func Quit()
    ToolTip("Ok, exiting...")
    Sleep(2000)
    Exit
EndFunc

Thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...