autohotkey

11/18/2013 15:33 cheyester10#16
Quote:
Originally Posted by Hybrid~ View Post
I should haven't started with AutoIt too.
But this is not about AutoIt.
That guy wanted to make a bot in AHK. I gave him some options.
and @ AutoIt :
AutoIt => easy2 learn language but also not so powerful =>>> Useful for small shit like a mouse move bot or a click bot, etc.
I was saying that because people who don't know autoit usually don't know how to work with xtrap. AHK gets blocked of Software-based keystrokes by xtrap. The only way to get around it with AHK is using another software to stop the detection.
11/18/2013 17:28 mana20#17
Quote:
Originally Posted by K1ramoX View Post
if you have 32 bit you can use the prodller thingy to remove the xtrap driver. if you have 64 bit you have to use a bypass which prevents the start of the xtrap driver (prodller doesnt works for 64 bit)
i know that already.

Quote:
Originally Posted by cheyester10 View Post
I was saying that because people who don't know autoit usually don't know how to work with xtrap. AHK gets blocked of Software-based keystrokes by xtrap. The only way to get around it with AHK is using another software to stop the detection.
i also know that .-.

anyways i have an old ahk it works with no probs but i want to make my own ahk cuz there are things i want to do.
11/21/2013 19:12 Hybrid~#18
ffs.
For instant wall jump the code is:
Code:
$*MButton::
Loop
{
if not GetKeyState("MButton","P")
break
Send {SPACE down}{SPACE up}
}
use the same crap for RC Bot
The delay time should be something like
Press Space [0ms] >Release Space [20ms] >Press 1/2/3 [10ms] > Release 1/2/3 [10ms]>Press Space [0ms] > Release [100-300ms]
Good luck
11/21/2013 23:17 cheyester10#19
Quote:
Originally Posted by Hybrid~ View Post
ffs.
For instant wall jump the code is:
Code:
$*MButton::
Loop
{
if not GetKeyState("MButton","P")
break
Send {SPACE down}{SPACE up}
}
use the same crap for RC Bot
The delay time should be something like
Press Space [0ms] >Release Space [20ms] >Press 1/2/3 [10ms] > Release 1/2/3 [10ms]>Press Space [0ms] > Release [100-300ms]
Good luck
xTrap can still detect macros. Try even compressing it. ;o It isn't that stupid. c:
11/22/2013 13:04 mana20#20
Quote:
Originally Posted by Hybrid~ View Post
ffs.
For instant wall jump the code is:
Code:
$*MButton::
Loop
{
if not GetKeyState("MButton","P")
break
Send {SPACE down}{SPACE up}
}
use the same crap for RC Bot
The delay time should be something like
Press Space [0ms] >Release Space [20ms] >Press 1/2/3 [10ms] > Release 1/2/3 [10ms]>Press Space [0ms] > Release [100-300ms]
Good luck
ty, i will try that when a new x trap bypass comes out.

btw can u give me an example of sitting the delays? cuz its not working.