Jump to content

send enter in game


Recommended Posts

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=----=========================>

Link to comment
Share on other sites

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=----=========================>

Link to comment
Share on other sites

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 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=----=========================>

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...