Jump to content

Qutazs

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Qutazs

  1. I think I'm gonna do that once I have a working beta version
  2. I see what you mean, sorry, its early in my current position But that whats im making atm.
  3. Ok just to clarify something. This was just the first part for my "all-in-one" pack for honor farming in WoW. It will have the possibility of auto-login, auto-queue, auto-join and anti-afk. It will come in an install file, which will install the program itself + the associated wow addon (the one that queues you). Just need to wait a bit more for a beta release :-)
  4. The script is now working #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Res_Comment=This is an Autojoin/ANTI-AFK script for WoW Honor / XP farming (BG ONLY!) #AutoIt3Wrapper_Res_Description=Autjoin/ANTI-AFK WoW #AutoIt3Wrapper_Res_Fileversion=1.0.0.1 #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_LegalCopyright=TOtallyANoNymous #AutoIt3Wrapper_Res_Language=1080 #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** $var = 1 While $var = 1 Sleep (5000) $PID = ProcessExists("WoW.exe") If $PID Then ControlSend("World of Warcraft", "", "", "2") WEnd
  5. I will try, and get back to you :-)
  6. Hello everyone, this is my first time here on the boards, and the very first time using AutoIT (I was using AutoHotKey before). I can say, that right now I really like AutoIT and the possibilities, but I have ran into a problem. $var = 1 While $var = 1 Sleep (5000) $PID = ProcessExists("WoW.exe") If $PID Then ControlSend("World of Warcraft", "", "GxWindowClassD3d", "2",1) WEnd This SHOULD send the key "2" into the World of Warcraft window, even if it ain't the highlighted window (means; not being the active window). Can anyone see what I'm doing wrong? It worked perfectly when I wrote it like this: $var = 1 While $var = 1 Sleep (5000) $PID = ProcessExists("WoW.exe") If $PID Then Send("2") WEnd But then it HAS to be active - And that's hard when I want it to run in the background while in school. Ty in advance :-)
×
×
  • Create New...