Need help (SendKey issues )

03/23/2016 21:08 Astral21#1
hi ! I m trying to make auto way script in vb.net for my bot but i m stucking on sendkey which doesn't work when i m sending movement key ("q"). the bot send correctly the key (it's writting "q" on ingame chat when i focus it) but for movement the chararcter doesn't walk.

Sorry for my english and thank you for reply :mofo:

Quote:
dim count as integer = 0
Private Sub Tiktoc_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Tiktoc.Tick
If count < 10 Then
SendKeys.Send("q")
count = count + 1
Else
Tiktoc.Stop()
Tiktoc.Dispose()
End If

End Sub
04/12/2016 16:39 mrapc#2
If the speed ist to high it has pressed 'q' 10 times befor even focusing the client.

Some Programs (Metin2 for example) block SendKeys than you should look for a better way to use it (Maybe mouse control)