TOL BARAD HAS BEEN HOTFIXED.
can still use this tool as anti afk
Hi everyone. I was sick and tired of not getting into TB so i wrote this little script. You probably heard of "bridge" TB exploit where you gotta run in for a few sec and then out so you dont get teleported out. Well this script basically does it for you. You can just turn it on and go afk ;D
It is not a 100% chance that you actually will get that 1800 honor. There is 1 second delay between changing zones. If you are very unlucky TB will end during that second and you will not get any honor ;(
I would say its a 20% chance that you will not get honor. When i was doing it manually it was more like 50/50 - i kept running in and out without having any idea when the battle will be over.
================================================
How to:
EDIT:
Script uses - and = to move left and right. if you dont wanna recompile the script, you will have to change stafe left and right( in wow menus) to - and = appropriately. or you can use source code and change keys there and then recompile ( use w/e keys u actually use in wow to strafe)
Step1. Find a good spot. You gotta find that spot where you can easily move left and right to change zones from TBP to TB. Position your character in TBP as close as possible to TB.( please look at screnshot down below to see how to position ur char)
Step2. Minimize WoW, launch TBfarm32.exe
Step3. Get back into WoW. Script should start working as soon as you maximize WoW. Your character should be moving
from TBP to TB and back every 5 seconds. Make sure to test it before the battle even starts to make sure it working.
to turn it off - go to your taskbar, and click on the script icon and click exit.
I hope you enjoy.
Script was written with AutoIt.
Just tested it 5 min ago and it worked! Cheers
PS. dont get ganked with this ;D
DOWNLOAD HERE:
TBfarm32.exe
screen
for paranoid people( or smart?) here is the source code.
you can compile ur own script to make it safer i guess.
CODE:
; Prompt the user to run the script - use a Yes/No prompt
$answer = MsgBox(4, "vlc", "This script will move your WoW character left and right. Run?")
; Check the user's answer to the prompt (see the help file for MsgBox return values)
; If "No" was clicked (7) then exit the script
If $answer = 7 Then
MsgBox(0, "AutoIt", "OK. Bye!")
Exit
EndIf
; Wait for the WoW become active - it is titled "World of Warcraft" on English systems
WinWaitActive("World of Warcraft")
; Key Delay Options
Opt("SendKeyDownDelay", 200)
Opt("SendKeyDelay", 1)
While 1=1
; Use AutoItSetOption to move to the right
AutoItSetOption("SendKeyDelay", 200)
Send("=")
Sleep(5000)
; Use AutoItSetOption to move to the left
AutoItSetOption("SendKeyDelay", 100)
Send("-")
Sleep(10)
WEnd
; Done.