After a bit of learning Autoit i came up with these
Method one:
Code:
$hWnd = "World of Warcraft"
$i = 0
Do
ControlSend($hWnd,"","","""{-}")
ControlSend($hWnd,"","","{DEL}")
ControlSend($hWnd,"","","{a down}")
Sleep(100)
ControlSend($hWnd,"","","{a up}")
Sleep(50)
ControlSend($hWnd,"","", "{d down}")
Sleep(100)
ControlSend($hWnd,"","", "{d up}")
Sleep(15000)
Until $i = 999999
tooltip($i,"1","1")
You can Set 2 macros, The buttons to push these macros "-" And "DELETE"
This method will push them every 15.6Seconds. ( To increase this change
Code:
Code:
ControlSend($hWnd,"","", "{d up}")
Sleep(15000)
To
Code:
Code:
ControlSend($hWnd,"","", "{d up}")
Sleep(Amount of time to wait here (MS) )
Method 2: - Buggy
With this method it sends the text.
Code:
$i = 0
$hWnd = "World of Warcraft"
Do
ControlSend($hWnd,"","","{NUMPADENTER}")
ControlSend($hWnd,"","","/2 TEXTHERE")
ControlSend($hWnd,"","","{NUMPADENTER}")
ControlSend($hWnd,"","","{NUMPADENTER}")
ControlSend($hWnd,"","","/y TEXTHERE")
ControlSend($hWnd,"","","{NUMPADENTER}")
$i = $i + 1
Sleep(10000)
Until $i = 999999
With this method there is a few bugs as autoit types in many letters and your computer cannot process them all so it misses quite a few, I reccomend you use method one. It types it every 10 seconds
HOW TO USE:
1ownload Autoit. ([Only registered and activated users can see links. ])
2: Make an .au3 File
3: Paste the appropriate code in and set up your macros / edit the text.
4: Run the script.
Instead of step 2 and 3 you can download the attached file which has the sources of the .au3 files.
VIRUS: [Only registered and activated users can see links. ]
Any Questions Please Post Here. Thanks!
__________________
Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.
Pretty useful. I set up a trade channel macro in wow and i just get this to push it every minute to advertise my enchanting while i do other stuff. Dont have to stand there repeating the same sentence.