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:
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