I am well-aware there's a thousand other ways to do this and most of them are well-known, but anyway, here's a very simple, usable anywhere by anyone script for AutoIt that will effectively prevent you from ever going <Away>. AutoIt simply emulates user imput (keyboard/mouse), it doesn't inject or touch WoW memory, so it is virtually undetectable and unbannable.
1. Download AutoIt from its official site: https://www.autoitscript.com/cgi-bin...t-v3-setup.exe
2. Install it with whatever settings (it won't try to install any crap)
3. Launch SciTE Script Editor from Start > AutoIt v3
4. Paste this code:
Code:
$r = Random(240000, 300000) ; Assigning random sleep value of $r to 4-5 minutes
While 1
$wow = WinGetHandle("World of Warcraft") ; Setting up control for WoW
ControlSend($wow, "", "", "{SPACE}") ; Jumping
Sleep($r) ; Waiting 4-5 minutes until next jump
WEnd
5. File > Save as... > whatever
6. Click whatever.au3 in wherever you've saved it
This script will make your character jump at random interval between 4-5 minutes. It doesn't matter if you launch the script before you launch WoW or after, it won't do anything until WoW window is present.
This script will work if:
If WoW is in focus
Display mode is Fullscreen and WoW is in focus
Display mode is Windowed and WoW is unfocused
Display mode is Windowed (Fullscreen) and WoW is unfocused
This script will not work if:
WoW is minimized
Display mode is Fullscreen and WoW is unfocused
To stop the script, right click AutoIt icon in tray and click "Exit".