compile it with latest AutoIt and it should be more unicode friendly.
[Only registered and activated users can see links. Click Here To Register...]Quote:
aww i think it is not possible without csro offsets
[Only registered and activated users can see links. Click Here To Register...]Quote:
[Only registered and activated users can see links. Click Here To Register...]
Maby it helps you ;)
Nice tool btw
the name of the client = the name of the silkroad windowQuote:
I tried today, in iSRO...
I'm running with iBot but client is the same client (not modified)
current, sro_client.exe
i tried all the client names with CP tool :
SRO_Client , sro_client and [iBot] SRO_Client -MyCharName
Program didn't work...
Can anybody confirm ?
Is it working, if yes, what i'm doing wrong..
I know, i simplyl copy with CP tool and try to ctrl + v in sro.
No difference though.
Maybe this tool is only for CN sro, Ru Sro etc. is it ?
ToolTip("Text paster is running, press F5 to paste and Insert to exit", 0, 0)
HotKeySet("{F5}", "paste")
HotKeySet("{Ins}", "terminate")
While 1
Sleep(100)
WEnd
Func paste()
Send(ClipGet())
EndFunc
Func terminate()
Exit
EndFunc
i wanted to improve my program with some more functions so i chose a different way:) no time atm:/Quote:
i prefer this a bit more simple method, which works like ctrl+v
Code:ToolTip("Text paster is running, press F5 to paste and Insert to exit", 0, 0) HotKeySet("{F5}", "paste") HotKeySet("{Ins}", "terminate") While 1 Sleep(100) WEnd Func paste() Send(ClipGet()) EndFunc Func terminate() Exit EndFunc