Register for your free account! | Forgot your password?

You last visited: Today at 09:16

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Autologin] Simple autoit script

Discussion on [Autologin] Simple autoit script within the SRO Hacks, Bots, Cheats & Exploits forum part of the Silkroad Online category.

Reply
 
Old 06/14/2009, 06:25   #16
 
elite*gold: 0
Join Date: May 2009
Posts: 10
Received Thanks: 0
can i change sleep to 1000 instead?
iLoveme00 is offline  
Old 06/14/2009, 14:47   #17
 
theoneofgod's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 3,940
Received Thanks: 2,198
Quote:
Originally Posted by iLoveme00 View Post
can i change sleep to 1000 instead?
If your char doesn't appear with 4000, that would be a bad idea.
theoneofgod is offline  
Old 06/14/2009, 15:04   #18
 
elite*gold: 5
Join Date: Jun 2007
Posts: 3,702
Received Thanks: 1,546
Quote:
Originally Posted by MC Flip View Post
I describe to you what Im doing:
1. I start Silkroad with SROKing
2. I enter my Account Data
3: Then I start the script
4. Switch to Silkroad again and Press F10
5. Than nothing happens so I switch to the taskbar and click on Script Paused so It needs to be activated but Its still not working.
ok after you did all those steps,press connect one time and then the script has to work.
audi0slave is offline  
Old 06/15/2009, 20:18   #19
 
MC Flip's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 1,017
Received Thanks: 1,161
So you mean I first need to press "Connect" on time and then press F10 to activate the script?
MC Flip is offline  
Old 06/16/2009, 12:31   #20
 
theoneofgod's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 3,940
Received Thanks: 2,198
Quote:
Originally Posted by MC Flip View Post
So you mean I first need to press "Connect" on time and then press F10 to activate the script?
Technically no. You only need to type in your account info then press F10.
theoneofgod is offline  
Old 06/16/2009, 16:11   #21
 
elite*gold: 5
Join Date: Jun 2007
Posts: 3,702
Received Thanks: 1,546
Quote:
Originally Posted by theoneofgod View Post
Technically no. You only need to type in your account info then press F10.
Sometimes you need to press connect before pressing F10.It`s an unknown bug(happened to me).
audi0slave is offline  
Old 06/16/2009, 16:23   #22
 
theoneofgod's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 3,940
Received Thanks: 2,198
Quote:
Originally Posted by alexx. View Post
Sometimes you need to press connect before pressing F10.It`s an unknown bug(happened to me).
It's because the ControlID is empty.
theoneofgod is offline  
Old 06/16/2009, 16:53   #23
 
NuK3R_LT's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 122
Received Thanks: 7
Works wonderfull (I use Sleep 5000, cause 4000 is smth wrong smtimes)

WTF? It connects only 1 time.
NuK3R_LT is offline  
Old 06/16/2009, 17:15   #24
 
theoneofgod's Avatar
 
elite*gold: 20
Join Date: Mar 2008
Posts: 3,940
Received Thanks: 2,198
Quote:
Originally Posted by NuK3R_LT View Post
Works wonderfull (I use Sleep 5000, cause 4000 is smth wrong smtimes)

WTF? It connects only 1 time.
I'll remake it.

EDIT:

Code:
Global $Pause
$hWnd = WinGetHandle ("SRO_Client")
HotKeySet ("{F10}","Start")
HotKeySet ("{F9}","Pause")

While 1
	Sleep (50)
WEnd

Func Start()
	While 1
	ControlSend ($hWnd,"","Edit1","{enter}")
	Sleep (5000)
	WEnd
EndFunc

Func Pause()
	$Pause = NOT $Pause
	While $Pause
		Sleep (10)
	WEnd
EndFunc
theoneofgod is offline  
Thanks
1 User
Old 06/16/2009, 20:58   #25
 
MC Flip's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 1,017
Received Thanks: 1,161
I found out why It didnt work to me. This script DONT work with SROKing!!
I use testosterone now but It press enter only 2-3 times and then It stops,why?
Ill try the new script now.
Btw I set the sleep time to 5000
MC Flip is offline  
Old 06/21/2009, 19:57   #26
 
xxfukerxx's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 222
Received Thanks: 144
Confirmed

Its working nice job dude!
thx
xxfukerxx is offline  
Old 06/21/2009, 20:00   #27
 
xxfukerxx's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 222
Received Thanks: 144
oh whats that after 2 times it stops
xxfukerxx is offline  
Old 06/21/2009, 20:20   #28
 
elite*gold: 0
Join Date: Jun 2007
Posts: 4
Received Thanks: 0
Quote:
Global $Paused
HotKeySet("{F9}", "Pause")
HotKeySet("{ESC}", "Close")
HotKeySet("{F10}", "Start")


While 1
Sleep(1000)
WEnd

Func Pause()
$Paused = NOT $Paused
While $Paused
Sleep (1000)
WEnd
EndFunc

Func Close()
Exit 0
EndFunc

Func Start()
While 1
ControlSend("SRO_Client", "", "edit1", "{ENTER}")
Sleep(4000)
Wend
EndFunc
just add that line "Edit1" in your source and it can help ^^

with that source it works perfect for me ^^
kuartx is offline  
Old 06/21/2009, 20:22   #29
 
elite*gold: 5
Join Date: Jun 2007
Posts: 3,702
Received Thanks: 1,546
Quote:
Originally Posted by theoneofgod View Post
I'll remake it.

EDIT:

Code:
Global $Pause
$hWnd = WinGetHandle ("SRO_Client")
HotKeySet ("{F10}","Start")
HotKeySet ("{F9}","Pause")

While 1
	Sleep (50)
WEnd

Func Start()
	While 1
	ControlSend ($hWnd,"","Edit1","{enter}")
	Sleep (5000)
	WEnd
EndFunc

Func Pause()
	$Pause = NOT $Pause
	While $Pause
		Sleep (10)
	WEnd
EndFunc
Edited first post.Your script works better,indeed.
audi0slave is offline  
Old 06/21/2009, 20:41   #30
 
xxfukerxx's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 222
Received Thanks: 144
have you answered my question now?^^
xxfukerxx is offline  
Reply


Similar Threads Similar Threads
How to script a simple auto-bot [AutoIT]
08/05/2013 - Cabal Guides & Templates - 123 Replies
I guess this will be my contribution to this forum. NOTE: u can apply this to any game; i only give cabal as a practical example. Go to http://www.autoitscript.com/autoit3/downloads.php and download AutoIt Full Installation Go to http://www.autoitscript.com/autoit3/scite/...e/dow nloads.php and download SciTE4AutoIt3.exe Install them ofc ... The most important action u can take is to THINK. I know it's hard for some but try >.< . What do we wanna do ?
[Request] Simple AutoIt Script
06/26/2008 - Dekaron - 5 Replies
Hello, I'm looking for an autoit script that basically presses 1 2 3 4 5, one after the other every second continuously. Thanks in advance, EW.
Autoit Dekaron/2moons autologin script
04/24/2008 - Dekaron - 5 Replies
m trying to make an autologin script wiht autoit. Ive never used this program until today. and ive got a problem no surprise there:) when the game is on the loading screen at around 90% it crashes my script and i cant figure out why. if theres anything in my code or you know how to get aroun it heres my source; #cs -------------------------------------------------- -------------------------- AutoIt Version: 3.2.10.0
need help making a simple autoit script
05/21/2006 - Silkroad Online - 2 Replies
hey guys, i wanna make a simple autoit script to press alt and tab every 2 mins...can anyone help me make a code for it? thnkz alot...my bot is wack, keep getting stuck in town and auto zerk dont work...so i wanna make a script tat does does 2 things to keep bot running and use zerk..



All times are GMT +2. The time now is 09:16.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.