controlsend problem

08/24/2011 14:43 retaly#1
Hy,
send("1") - is use the 1 number in game if the game is active,
ControlSend("gamewindowtitle", "", "", "1") - this script use only to one window, but in game doesnt use number, just if i use chat, this code wrigint in chat, how can i do it how works on keyboard?




now i try use numbers in game with this:
While 1
ControlSend("[CLASS:Notepad]", "", "", "{"$1"}")
Wend
$1 = "hello"

but this code isnt good :S - this is the problem {"$1"}
anyone help plz
08/24/2011 14:48 Freddy​#2
Your quotation marks are wrong
ControlSend("[CLASS:Notepad]", "", "",$1)
08/24/2011 14:57 retaly#3
aaahw.. i get error, any idea? i want to do it how send commands for one game but in minimized status too, soo with controlsend, just i dont know how need to do it.

error:
ControlSend("game", "", "", "{"& $2 &"}")
ControlSend("game", "", "", "{"& ^ ERROR

Quote:

While 1
ControlSend("game", "", "",$1)
Sleep(1000)
ControlSend("game", "", "",$2)
Sleep(1000)
ControlSend("game", "", "",$3)
Sleep(1000)
$1 = Send("1")
$2 = Send("y")
$3 = Send("2")
WEnd
08/24/2011 15:23 ZeraPain#4
well this will never work...
you can't set a command as a var.

i didn't understand your problem with controlsend.
ControlSend("gamewindowtitle", "", "", "1") should work if no anti-cheat system exists
08/24/2011 15:35 retaly#5
mine problem is, how controlsend working well, but only in game chat, and doesnt use buttons, (cabal)
08/24/2011 19:46 Ludder231#6
Yeah, then you need to bypass the anti-hackshild ...
02/11/2012 14:09 Pho3nX#7
Quote:
Originally Posted by Ludder231 View Post
Yeah, then you need to bypass the anti-hackshild ...
Anti hackshield ? xD
02/12/2012 20:48 GameCrime#8
Quote:
ControlSend("game", "", "","{" & $3 & "}")
Or only Save your Key in a File .
The you can do this this is really better :
Quote:
ControlSend("game", "", "","{" & FileReadLine($File1, 1) & "}")
I hope it works .