BluhBlah Posted September 10, 2009 Posted September 10, 2009 How to use this? to make it work on warcraft 3 minimized? hmm? Thanks expandcollapse popupDim $stop = 0 ; HotKeySet("{F4}", "toggel") HotKeySet("{F5}", "off") While 1 If $stop = 1 Then If WinActive("Warcraft III") $coord = PixelSearch(34, 145, 34, 145, 0xE3E3E3) If Not @error Then Send("!Q") EndIf $coord = PixelSearch(217, 590, 217, 590, 0x977B10) If Not @error Then Sleep(5000) Send("{F10}") Send("!E") Send("!Q") EndIf $coord = PixelSearch(199, 497, 199, 497, 0xC19E74) If Not @error Then Send("{Enter}") EndIf Sleep(10) EndIf EndIf WEnd Func toggel() If $stop = 0 Then $stop = 1 ; change the bot to on ToolTip("LossBot = ON", 0, 0) Else $stop = 0 ; change the bot to off ToolTip("LossBot = OFF", 0, 0) EndIf EndFunc Func off() Exit EndFunc -Xori-
dantay9 Posted September 10, 2009 Posted September 10, 2009 I don't play World Of Warcraft, but you can try the control commands, such as controlclick.
BluhBlah Posted September 11, 2009 Author Posted September 11, 2009 I don't play World Of Warcraft, but you can try the control commands, such as controlclick.I have no idea what you mean, and this is warcraft 3 not WoW ^^.
Rishav Posted September 11, 2009 Posted September 11, 2009 what he meant was to use controlsend instead of send. send will only work with active windows. so if your game window is minimized, send command will not work.
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