Pick Server

02/14/2009 18:05 ShyroN1337#1
How to make a tool that picks a server "x" after starting SRO and putting in logins ?
02/14/2009 18:42 ShyroN1337#2
Ok,
changing
HKEY_CURRENT_USER\Software\Joymax\Silkroad\RECENTS ERVER
Tibet
to
HKEY_CURRENT_USER\Software\Joymax\Silkroad\RECENTS ERVER
Xian
works fine.

EDIT

That wasn't hard
Code:
REGEDIT4

[HKEY_CURRENT_USER\Software\Joymax\Silkroad\RECENTSERVER]

"Wert"="Xian"
XianServer.reg

AutoIT
Code:
$XianServer = "..."
run = "$XianServer"
02/14/2009 20:10 audi0slave#3
you can ask hussert to give you the autoit part from his program which actually types the id/password in,since you know how to pick a server.
02/14/2009 20:19 ShyroN1337#4
Quote:
Originally Posted by InDaClub View Post
you can ask hussert to give you the autoit part from his program which actually types the id/password in,since you know how to pick a server.
lol, thats easy, but thanks
02/14/2009 21:02 audi0slave#5
Quote:
Originally Posted by ShyroN1337 View Post
lol, thats easy, but thanks
xD would help you but got no such skills ^^ you know that
02/15/2009 11:41 royalblade#6
xD

i think that the easier part...
press: ("P,0.1)
press: ("W,0.1)
press: ("TAB)
press: ....

and so on^^
02/15/2009 13:07 ShyroN1337#7
Quote:
Originally Posted by royalblade View Post
xD

i think that the easier part...
press: ("P,0.1)
press: ("W,0.1)
press: ("TAB)
press: ....

and so on^^
Code:
$id = "yourID"
$pw = "yourPW"

;Login
	Send("{BS}")
	Sleep(500)
	Send($id)
	Sleep(200)
	Send("{TAB}")
	Sleep(200)
	Send($pw)
	Sleep(300)
	Send("{Enter}")
All my probs are fixed, now i need to get the coords out of Sbot with ReadProcessMemory, anyone may help me?