Hello theoneofgod.
Your tool is really cool, is it possible for you to make a little change on it!?
If you can of course, i dont have sbot, i play with (unnamed bot).
Is it possible for you to make your tool to work with (unnamed bot).exe?!?!
I try to make a autoit programe to run (unnamed bot).exe and Loader.exe...
but since i dont know nothing about programing in wht ever tipe of "coding" is it possible for you to make that little change?
heres wht i have made sow it work
Quote:
; AutoIt Version: 3.0
; Language: English
; Platform: Win9x/NT
; Author: rAs00l
;
; Script Function:
; Opens (unnamed bot) & Loader
;
; Prompt the user to run the script - use a Yes/No prompt (4 - see help file)
$answer = MsgBox(4, "AutoIt Example (English Only)", "This will run (unnamed bot) and Loader. Run?")
; Check the user's answer to the prompt (see the help file for MsgBox return values)
; If "No" was clicked (7) then exit the script
If $answer = 7 Then
MsgBox(0, "AutoIt", "OK. Bye!")
Exit
EndIf
; Run the .Bat Files
Run("iBot.bat")
Sleep(500)
Run("Loader.bat")
Sleep(5000)
WinClose( "C:\WINDOWS\system32\cmd.exe" )
Sleep(5000)
WinClose( "C:\WINDOWS\system32\cmd.exe" )
Sleep(5000)
WinClose( "C:\WINDOWS\system32\cmd.exe" )
Sleep(5000)
; Now that the [iBot] SRO_Client window is active type some text
Sleep(100000)
WinWait("[iBot] SRO_Client")
SendKeepActive("[(unnamed bot)] SRO_Client")
; Change the active window during pauses
For $i = 1 to 1
Sleep(30000)
send("{ENTER}")
Sleep(1000)
Send("USER{TAB}")
Sleep(5000)
Send("PASSWORD{ENTER}")
Next
|