Register for your free account! | Forgot your password?

You last visited: Today at 20:16

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

Advertisement



Auto-Ress v2.0 by xxbrentonxx

Discussion on Auto-Ress v2.0 by xxbrentonxx within the SRO Hacks, Bots, Cheats & Exploits forum part of the Silkroad Online category.

Closed Thread
 
Old   #1
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Auto-Ress v2.5 by xxbrentonxx

Auto-Ress v2.5 by xxbrentonxx



* its not that blurry - thats just imageshack.
About:

Auto-Ress v2.5 is a AutoIT program designed for using the ress spell to ress noob chars while farming. It has a pause function, changable delay/sleep, and changable key used for ress. The program also doesnt start until SRO_Client or whatever is open and active.

How to use:
Set it up by filling out the fields. The field where it says "seconds" really does mean seconds, the code already does seconds to the unit that autoit uses to save you the hassle.

Click Start and switch too SRO, the program should then start ressing.

Press F5 to pause (may take a few seconds to pause) and then F5 again to unpause (may also take a few seconds).

At any time if you want to stop the program just press F6 (may take a few seconds).

Version 2.5 whats new?
It can now stop after a certain amount of resses, this is just a quick release 3.0 will be huge release and the things planned will be completely new for auto ress programs.

Download:


Virus Scans
MD5: 2c582250c9fd044dc61c612790d7448c
False positives as expected from AutoIT, but wait for a mod to confirm if you are unsure. This update the new coding means some of the false positives are gone!

xxbrentonxx is offline  
Thanks
19 Users
Old 03/22/2009, 14:27   #2
 
Hussert's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,410
Received Thanks: 1,347
# Safety Confirmed

Scan Report: (the above one is true)
-

It's an AutoIt script, as he said. I've checked the source code and it's completely fine. Here is how it works exactly: (after checking the code of version 2)

- Always keeping your sro window active.
- Presses the specified key(s).
- Wait for a specified time (in seconds) between sending the specified key(s).

- F5: Pause/UnPause the program
- F6: Closes the program

That's all.
You can also use it for other games or things. Just change the name of the window in the program.

Very simple and handy tool. Nice job
Hussert is offline  
Thanks
2 Users
Old 03/22/2009, 21:54   #3
 
kundzior's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 1,819
Received Thanks: 415
Good job!
kundzior is offline  
Thanks
1 User
Old 03/23/2009, 06:50   #4
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Thanks guys. I have a few new functions in mind but my understanding of AutoIT is very little. Hussert do u reckon u cud point me in the right direction lol? First thing i wanto know is how/if i can make it only do the ressing for a set ammount of times. So i would have a gui field linked to a variable and if they write 100 it will only click 6 or whatever 100 times.

BTW something went weird and the megaupload one linked to a autoit program whioch has some kind of keygen for some BlizzCon thing xD, i never even seen that program lol. I got rid of the link. Its worse than i thought too i got alerts from my antivirus about some registry edit, might not have been related but i wasnt able to decompile the autoit script = S. Not only that it appears that there are some dodgy sro files named AutoRess.exe aswell, future releases will probably have a new name.
xxbrentonxx is offline  
Old 03/23/2009, 17:22   #5


 
OriginOnline's Avatar
 
elite*gold: 95
Join Date: Nov 2007
Posts: 171
Received Thanks: 112
i was looking for this! thank you a lot! ^^
OriginOnline is offline  
Thanks
1 User
Old 03/24/2009, 07:25   #6
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Thanks, what im planning on doing for the next update is adding a feature so that it casts a returning scroll after a certain amount of resses or just stops. Im also going to add tabs in the GUI and change some stuff/add lots, just need to learn how to do most of this stuff.
xxbrentonxx is offline  
Old 03/24/2009, 13:47   #7
 
elite*gold: 0
Join Date: Nov 2008
Posts: 176
Received Thanks: 19
does it only works with the originial sro_client ??? cause my bot rename it to sro_client [name]
r3vRb is offline  
Old 03/24/2009, 15:19   #8
 
Hussert's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,410
Received Thanks: 1,347
Quote:
Originally Posted by brent01 View Post
Thanks guys. I have a few new functions in mind but my understanding of AutoIT is very little. Hussert do u reckon u cud point me in the right direction lol? First thing i wanto know is how/if i can make it only do the ressing for a set ammount of times. So i would have a gui field linked to a variable and if they write 100 it will only click 6 or whatever 100 times.

BTW something went weird and the megaupload one linked to a autoit program whioch has some kind of keygen for some BlizzCon thing xD, i never even seen that program lol. I got rid of the link. Its worse than i thought too i got alerts from my antivirus about some registry edit, might not have been related but i wasnt able to decompile the autoit script = S. Not only that it appears that there are some dodgy sro files named AutoRess.exe aswell, future releases will probably have a new name.
Alright, If I understand you correctly then you want your tool to stop after specified times of clicking. If that's it, then you have to use For.... to ..... Next commands in autoit. Here is an example:

Quote:

Func Start()

$Res_Times = GuiCtrlRead($Input_Res_Times)

For $i = 1 to $Res_Times

"your clicking function"

Next

EndFunc
You don't have to declare $i anywhere before that nor inside "your clicking function". Also ,you don't have to put $Res_Times anywhere inside "your clicking function".

If you didn't understand that, then just pm me with your code and I will have it fixed for you.
Hussert is offline  
Old 03/25/2009, 11:17   #9
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Quote:
Originally Posted by Hussert View Post
Alright, If I understand you correctly then you want your tool to stop after specified times of clicking. If that's it, then you have to use For.... to ..... Next commands in autoit. Here is an example:



You don't have to declare $i anywhere before that nor inside "your clicking function". Also ,you don't have to put $Res_Times anywhere inside "your clicking function".

If you didn't understand that, then just pm me with your code and I will have it fixed for you.
Yeah that is exactly how version 1.0 worked. There was no way to get the GUI working properly with it though, ill give it another go lol. Oh lmao just remembered AdLibEnable is that how i wud do it?

Edit: Ok i got some help and it is working nicely, just need to fix the gui and bug test and it will be released tommorow (so like 20 hours till release xD).

BTW a bug in 2.0 seems to be that wen i compiled with autoit the clean up deleted the whole Info screen xD - that will be fixed.

2.5 will just have a set limit on how much times to ress, but i have big plans for 3.0 which i plan on getting ready over the next week or two. (3.0 will probably be 80% new code compared to 2.0) Also I will not stop updating this until it is the best auto ress tool not using packets = ).
xxbrentonxx is offline  
Old 03/26/2009, 07:54   #10
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
VERSION 2.5 IS OUT!!! You can now change the amount of times ressed. I need a mod to rescan and rename title.
xxbrentonxx is offline  
Thanks
3 Users
Old 03/26/2009, 08:00   #11
 
elite*gold: 0
Join Date: May 2007
Posts: 632
Received Thanks: 908
Frankkko is offline  
Old 03/26/2009, 08:12   #12
 
xxbrentonxx's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 277
Received Thanks: 103
Quote:
Originally Posted by Frankkko View Post
And rename the thread xD, btw ppl the suspicous file is just a false positive as before, when Hussert is on later he will probably decompile it to make sure.
xxbrentonxx is offline  
Old 06/03/2009, 00:28   #13
 
elite*gold: 0
Join Date: Apr 2009
Posts: 78
Received Thanks: 7
safe ? ^^
aaaaze is offline  
Old 06/03/2009, 11:19   #14
 
victorinoloyola's Avatar
 
elite*gold: 0
Join Date: Oct 2007
Posts: 389
Received Thanks: 71
It will be more better if it also works when SRO is hidden and minimized
anyway you got my thanks
victorinoloyola is offline  
Old 06/03/2009, 12:53   #15
 
elite*gold: 0
Join Date: Oct 2008
Posts: 3
Received Thanks: 0
hi brent iam RAGIHBOSS
ahmedragih is offline  
Closed Thread


Similar Threads Similar Threads
Auto-Ress 3.1 by xxbrentonxx (With Multi-Ress)
09/09/2010 - SRO Hacks, Bots, Cheats & Exploits - 61 Replies
Auto-Ress 3.1 By xxbrentonxx Finally version 3 of my key press auto ress program is out! It shares nothing with version 2.X and is written in Visual Basic 2008 as opposed to Auto IT v3. http://img4.imageshack.us/img4/9885/autoress31.jp g Just fill out the details and click Start. If you are ressing 4 chars and want each done 300 times, just type 300 in and the program will do 1200. Unfortunately it is not minimizable at the moment and you must go afk/watch it. Key 2 is if you have 2...



All times are GMT +2. The time now is 20: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.