Download the latest release.
You are using 32 bit i suppose?Quote:
Yes, i am familiar with how you code it, you created a function called sendkeys which sends keys to the cabal window when active and pauses when its not active, you have an indicator in a for loop whether it is sending a key.. As what i've said, the tooltip says it is sending keys but in game it doesn't.. i've scripted a similar scripts before, it works outside cabal but in game it doesn't. Same goes with this code. I know this worked for you guys but i don't know why it does'nt for me. Tnx btw
EDIT: O yeah, few months ago i tried to code it in c++(dll) but didn't work. i read a post that GG blocks sendkeys and other macros, that is why only few auto mouse click macros work. BTW i like the idea of using x as target self, its useful doing so manually too. ^_^
To all those asking for compatibility in their OS, please refer to [Only registered and activated users can see links. Click Here To Register...] to test whether you could use AutoIt on your client.Quote:
does this work on win 7 32 bit?
It runs but I think it automatically terminate after you used it.Quote:
To all those asking for compatibility in their OS, please refer to [Only registered and activated users can see links. Click Here To Register...] to test whether you could use AutoIt on your client.
Quote:
Func SendKey($keys)
$length = stringlen($keys)
for $i=1 To $length
$chr = stringmid($keys,$i,1)
send($chr)
ToolTip("Sending key to window: " & $keys, 0,0)
;sleep(150)
next
EndFunc
Updated the guide. You do not need one.Quote:
does it need a bypass to get this work???? coz gameguard blocks all the sendkeys function from exe files... you need to have a GUI w/ dll injected to cabal or a bypass...
kinda confused with this codes whats the use of this???
yeah im confused also with the SendKey func...Quote:
will these work w/ GG/xtrap
never encountered sendkeys b4
but if it can its much easier than dllcall
tried it, not working. what version of autoit are you using? I tried typing send script and this what I gotQuote:
Updated the guide. You do not need one.
If that confuses you, please read analyze it one line at a time. Google is there to help you what each function does.
As described in the FAQ. That function sends the key being passed but you have the freedom to insert codes between the key sent. If you have no use for it, just replace the calls from sendkey("2") to send("2").
.. in your code after if expression then statement is sendkey("x") so im a little bit confused about your code...Quote:
Send ( "keys" [, flag] )