forumghost Posted September 27, 2007 Posted September 27, 2007 Dim $mortalstrike, $battleshout HotKeySet("{F1}", "Start"); HotKeySet("{x}", "Quit"); Func Quit() Exit EndFunc Func Start() While 1 ControlSend("", "", "", "{2}") ControlSend("World of Warcraft", "", "", "{1}") $mortalstrike = $mortalstrike+1 $battleshout = $battleshout+1 If $mortalstrike >= 8 Then ControlSend("World of Warcraft", "", "", "{F}") $mortalstrike = 0 EndIf If $battleshout >= 170 Then ControlSend("World of Warcraft", "", "", "{ENTER}") ControlSend("World of Warcraft", "", "", "/cast Schlachtruf") Sleep(20) ControlSend("World of Warcraft", "", "", "{ENTER}") $battleshout = 0 EndIf sleep(1000) WEnd EndFunc While 1 sleep(200) Wend In theory it should stop when I press X but it doesn't =(
Tasmania Posted September 27, 2007 Posted September 27, 2007 X is most likely assigned to something inside of World of Warcraft. Try assigning it to CTRL-X or ALT-CTRL-X. Something obscure in that manner.
forumghost Posted September 27, 2007 Author Posted September 27, 2007 X is most likely assigned to something inside of World of Warcraft. Try assigning it to CTRL-X or ALT-CTRL-X. Something obscure in that manner.I tried ctrl x but that doesnt work either
Valuater Posted September 27, 2007 Posted September 27, 2007 Don't use brackets "{" with normal keys HotKeySet("x", "Quit") 8)
Tasmania Posted September 27, 2007 Posted September 27, 2007 Heh, that was the other thing I was going to mention, however I figured it was working... LOL.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now