the script that I have is this (Auto It):
Code:
Source:
Global $Paused
$hWnd = WinGetHandle ("SRO_Client")
HotKeySet ("{F10}","Start")
HotKeySet ("{F9}","Pause")
While 1
Sleep (50)
WEnd
Func Start()
While 1
ControlSend ($hWnd,"","Edit1","{enter}")
Sleep (4000)
WEnd
EndFunc
Func Pause()
$Pause = NOT $Pause
While $Pause
Sleep (10)
WEnd
EndFunc
does anyone know what I have to add the script to work with more than 1 client?
or anyone have an autologin that work with more than 1 client at the same time?






