L3G3NdKillEr Posted September 26, 2007 Posted September 26, 2007 enter key is'nt works in game.. i use this simple method. it works in explorer anyother key send method's for games #include <misc.au3> HotKeySet("w", "enter") Opt("Sendkeydowndelay", 5) While 1 Sleep(10) WEnd Func enter() Send("{enter Down}") Sleep(50) Send("{enter UP}") EndFunc i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
sandin Posted September 26, 2007 Posted September 26, 2007 maybie you could set winactivate("your game window title") before sending enter key. Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
L3G3NdKillEr Posted September 26, 2007 Author Posted September 26, 2007 no dude it's not working i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
Bert Posted September 26, 2007 Posted September 26, 2007 I ran into this problem with IE. I tried to hotsetkey F1 to something, and IE would open it's oun help. No matter what I did, I couldn't get it to work. The Vollatran project My blog: http://www.vollysinterestingshit.com/
sandin Posted September 26, 2007 Posted September 26, 2007 if the game is protected with game guard, then you must compile your script as "pinnacle.exe" file, only then it'll work. Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
L3G3NdKillEr Posted September 26, 2007 Author Posted September 26, 2007 i made this tool for "Pirates of the caribean at world's end" and i don't think there is guard or something like this.., i tried but nothing is happening i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
L3G3NdKillEr Posted September 26, 2007 Author Posted September 26, 2007 anyone who have some ideas i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
ofLight Posted September 26, 2007 Posted September 26, 2007 Have you already tried increasing Opt("Sendkeydowndelay", 20) There is always a butthead in the crowd, no matter how hard one tries to keep them out.......Volly
Tasmania Posted September 26, 2007 Posted September 26, 2007 Have you tried using ControlSend instead? #include <misc.au3> HotKeySet("w", "enter") $gameTitle = "Pirates of the caribean at world's end" Opt("Sendkeydowndelay", 5) While 1 Sleep(10) WEnd Func enter() ControlSend($gameTitle, "", "{ENTER DOWN}") Sleep(50) ControlSend($gameTitle, "", "{ENTER UP}") EndFunc
L3G3NdKillEr Posted September 27, 2007 Author Posted September 27, 2007 i have problem with controlsend in games it does'nt send to the game i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
aslani Posted September 27, 2007 Posted September 27, 2007 (edited) Make sure that "w" is not key-bind in your game to something else. Edited September 27, 2007 by aslani [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version
L3G3NdKillEr Posted September 30, 2007 Author Posted September 30, 2007 (edited) aslani said: Make sure that "w" is not key-bind in your game to something else. "w" isn' bind in game i've checked i also change game. now i want to send up arrow key in game. it still not working. anyone help i tried but failed. #include <misc.au3> HotKeySet("w", "enter") Opt("WinTitleMatchMode", 3) While 1 Sleep(10) WEnd Func enter() $game = "Driv3r" If Not WinActivate($game) then WinActive($game) WinWait($game) ControlSend($game, "", "", "{up}") EndIf If WinActive($game) Then ControlSend($game, "", "", "{up}") EndFunc Edited September 30, 2007 by L3G3NdKillEr i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
L3G3NdKillEr Posted October 1, 2007 Author Posted October 1, 2007 anyone who have some ideas about game? i'm very responsible, when ever something goes wrong they always say I'm responsible.Life is like an Adventure... BUT COOL GRAPHICS<====================----=LEGEND KILLER=----=========================>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now