Jump to content

Psiksenz

Members
  • Posts

    5
  • Joined

  • Last visited

Psiksenz's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks mate, I'll test it out
  2. 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
  3. I have an athlon 2200 1gb ram ati 9600 graphics card, and it runs warcraft beter than the other machine I tried it on so I'm not sure what the problem is =/
  4. is there some of this script missing?
  5. 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
×
×
  • Create New...