I'm asking cause I made a nifty script for myself that simply presses my sinister strike key every 100 milliseconds, 5 times, and then I press eviscerate. It doesn't play by itself, I am at the computer at all times. Is there any way for WoW to detect my script?
Code:
HotKeySet("{F1}", "key")
func key()
HotKeySet("{F1}")
Send("{2}")
Sleep(100)
Send("{2}")
Sleep(100)
Send("{2}")
Sleep(100)
Send("{2}")
Sleep(100)
Send("{2}")
HotKeySet("{F1}", "key")
idle()
EndFunc ;:: key()
Func idle()
while 1
Sleep(100)
WEnd
EndFunc ;:: idle()
Func rebind()
HotKeySet("{F1}", "key")
idle()
EndFunc ;:: rebind
idle()
I adapted this script from the wall jumping one since I dont really know the language, so there might be some unneeded stuff in it(i tried to clean it up as best as i could)
Also, of course, it executes the main function about 10 times that many times as I have written so that I dont need to press it more than once every fight.