I have tried to make my own auto prof program. I did it right, with AutoIT and the whole CTRLDOWN and CTRLUP thing from studying other peoples programs. I have found that it doesn't seem to work on anything internet related. Is there a reason for this. I will post my code below, its really simple, but it won't work on Mabinogi or anything.
Code:
$blah = MsgBox (1,"Ready?", "Push Ok to start program.")
if $blah = 1 Then
While 1
Sleep(500)
Send("{CTRLDOWN}")
Sleep(500)
MouseClick("Left")
Sleep(500)
MouseClick("Left")
Sleep(500)
MouseClick("Left")
Sleep(500)
Send("{CTRLUP}")
WEnd
Else
Exit
EndIf