[Tool] Auto Res 2.1.4

02/07/2010 01:00 maxmilian333#241
Sure ty for this Project Bro,
Helps alot but i need it for clicking Multi Skills and Scrolls
i Use it with Buff warrior and scrolls for alot of Char's
can U edit the Skill Tab plz to Write it again
ty Keep Up the Good work
02/08/2010 00:09 theoneofgod#242
Quote:
Originally Posted by shortchineseman View Post
theoneofgod, could you link me to a tutorial on how to do things similar to what you do with autores? If it's not too much trouble that is.
Tutorial to write scripts?
02/08/2010 06:21 shortchineseman#243
Quote:
Originally Posted by theoneofgod View Post
Tutorial to write scripts?
just a tut on how to make something similar to autores, if it is scripts, then yes ^^
02/08/2010 23:59 ykz#244
hmm I cant rename any clients....So it gives me an error that the client cant be found...
Anyone else got this problem?
02/09/2010 18:53 zilvinaslt52#245
does it ress multiple targets?
02/13/2010 05:42 tellybubu#246
can anyone post a tutorial about how to use this thanks
02/14/2010 02:05 Nymphatine#247
First thanks for this nice tool. I have a question. When this tool work on if i copy anything then tool stop working is there any solution for this issue ?
02/14/2010 13:16 72224#248
Doesnt work counter 13453125512521215 annd nothing low program
02/14/2010 18:34 estupidodemerda#249
Hey everyone. First I'd like to congratulate you for this excelent tool :D
And... I'd like to also ask a little question, which may be troublesome for you... theoneofgod...

I also used to code my auto ressers in autoit, but since the new hackshield came up to sro, I still couldn't find a way to make them work.
What have you done to make it work?
Are you using some UAF's(User definined functions)?
If that's the case would you mind sharing them?
I don't have any intention to steal your source, I'd just like to be able to keep using my tools :/
02/15/2010 15:18 noobsaibot#250
I dont get it. What about your tools doesnt work cause iv had no real issue with hackshield yet. You can still attain the offsets as usual and its not to hard to write an app that uses them.
What is it hackshield does to prevent this?

Anyway i dont see how hackshield could detect a key presser. Maybe if your apps were to send packets you would have troubles but for tools like this you dont need to.

estupidodemerda, do your apps use packets or is there something im missing about hackshield?
02/15/2010 15:54 estupidodemerda#251
My tools use Send() and MouseMove() and ControlSend()
As long as a client with hackshield is started, the hackshield seems to be blocking the access of strange programs to the user32.dll, and then, those functions will not work.
Also I can't get a autoit to terminate a sro_client.exe process, I can only manipulate windows atributes, but not the process.
What can I be doing wrong?
Oh, and If I use tools compiled with the upx function, hackshield terminates the process right away.

PS: No, they do not use any packet injection/detection, just simple keypressers with some conditions.
02/16/2010 13:01 noobsaibot#252
Interesting. Perhaps its language specific because i use c# and vb.net and use similar functions sendmessage() and i wrote my own control hold function.
No real need for mouse movements though as far as im aware.

These functions though do use the user32.dll with seemingly no issues.
Im sure hackshield isnt picking up on access to user32 cause so many apps use it.

If it were doing that you would probably have to uninstall 99% of your apps before you could play.

perhaps its the au3 files its picking up on but idk.
02/16/2010 16:07 estupidodemerda#253
Do you use a x64 system? I found out that some functions work under x64 systems but not on 32 bits...
02/16/2010 21:09 theoneofgod#254
Quote:
Originally Posted by estupidodemerda View Post
My tools use Send() and MouseMove() and ControlSend()
As long as a client with hackshield is started, the hackshield seems to be blocking the access of strange programs to the user32.dll, and then, those functions will not work.
Also I can't get a autoit to terminate a sro_client.exe process, I can only manipulate windows atributes, but not the process.
What can I be doing wrong?
Oh, and If I use tools compiled with the upx function, hackshield terminates the process right away.

PS: No, they do not use any packet injection/detection, just simple keypressers with some conditions.
Send() and ControlSend() Should work fine, they do here.

PostMessage/SendMessage work fine too... hackshield wont let you open a processes handle, that is why you cant processclose sro_client anymore.

Try this,

Code:
ControlSend("SRO_Client", "", "Edit1", "Text here")
02/17/2010 01:57 estupidodemerda#255
Wow, incredibly it works O_o
Seems like the clean control space that i used to let before doesn't work anymore, I used to do like this:
Code:
ControlSend("SRO_Client", "", "", "Text here")
Send doens't work. Tried it, but as long as controlsend works, its fine to me.

Thank you very much!!!

I searched so much and the solution was so simple lol.

Thanks a lot, seriously ^_^