| View previous topic :: View next topic |
| Author |
Message |
white
Joined: 21 Jun 2009 Posts: 4
|
Posted: Sun Jun 21, 2009 1:19 pm Post subject: how to use autohotkey with GunZ The Duel? |
|
|
how to use autohotkey with GunZ The Duel?
i think i can't use because it's a full screen game |
|
| Back to top |
|
 |
RTFM Guest
|
Posted: Sun Jun 21, 2009 1:37 pm Post subject: |
|
|
| Quote: | | i think i can't use because it's a full screen game | So you've prepared yourself to accept a: NO! So, why do you ask anyway?? |
|
| Back to top |
|
 |
white
Joined: 21 Jun 2009 Posts: 4
|
Posted: Sun Jun 21, 2009 1:46 pm Post subject: |
|
|
but i've prepared myself to accept a: YES! there is a way!
¬¬ |
|
| Back to top |
|
 |
lilalurl.T32
Joined: 17 May 2007 Posts: 391 Location: Titan
|
Posted: Sun Jun 21, 2009 1:58 pm Post subject: |
|
|
Mind telling us what you tried (sendinput/play etc...) and if it failed completely or partially and whatever could be useful to help you?
________
Yamaha nouvo history
Last edited by lilalurl.T32 on Fri Feb 11, 2011 9:06 pm; edited 1 time in total |
|
| Back to top |
|
 |
white
Joined: 21 Jun 2009 Posts: 4
|
Posted: Sun Jun 21, 2009 4:26 pm Post subject: |
|
|
| Code: | 1::
WinWaitActive, The Duel,
Send, rt |
I expected it to do that, pressing 1, was tight automatically r and t.
but it failed completely. |
|
| Back to top |
|
 |
lilalurl.T32
Joined: 17 May 2007 Posts: 391 Location: Titan
|
Posted: Sun Jun 21, 2009 7:06 pm Post subject: |
|
|
If you use more than one line of instructions, end with return.
| Code: |
1::
WinWaitActive, The Duel,
Send, rt
return
|
But first, have you simply tested if:
works when the game window is active?
If id does not work, then try the other send methods (input, play) and setkeydelay (check the help file for those) and post the results.
________
Iphone Games
Last edited by lilalurl.T32 on Fri Feb 11, 2011 9:06 pm; edited 1 time in total |
|
| Back to top |
|
 |
white
Joined: 21 Jun 2009 Posts: 4
|
Posted: Sun Jun 21, 2009 8:13 pm Post subject: |
|
|
it didn't work.
and i tried to understand the help file about the other send methods and the setkeydelay but i failed too
could you help me about this some more? |
|
| Back to top |
|
 |
lilalurl.T32
Joined: 17 May 2007 Posts: 391 Location: Titan
|
Posted: Mon Jun 22, 2009 12:47 am Post subject: |
|
|
| white wrote: | | could you help me about this some more? |
Well, you will have to experiment by yourself (unless another AHK user plays the same game and could therefore help directly).
Here is what the FAQ in the help file says:
| Quote: | Why do Hotstrings, Send, and Click have no effect in certain games?
Some games use DirectInput exclusively. As a side-effect, they might ignore all simulated keystrokes and mouse clicks. To work around this, try one of the following (or a combination):
Use SendPlay via: 1) the SendPlay command; 2) using SendMode Play; and/or 3) the hotstring option SP.
Increase SetKeyDelay. For example:
SetKeyDelay, 0, 50
SetKeyDelay, 0, 50, Play
Try ControlSend, which might work in cases where the other Send modes fail.
|
Here is something to try:
| Code: |
1::Send {r down}{r up}{t down}{t up}
|
If that still does not work, use Sendplay instead of Send. If that does not work either try SendInput and SendEvent.
________
Volcano digital
Last edited by lilalurl.T32 on Fri Feb 11, 2011 9:07 pm; edited 1 time in total |
|
| Back to top |
|
 |
happytodd
Joined: 12 Nov 2007 Posts: 142 Location: South Australia
|
Posted: Mon Jun 22, 2009 7:33 am Post subject: |
|
|
There is a gunz the duel mouse rebinder. Just google gunz mouse rebinder and there should be a program which emulates most stuff in the game. Its all coded in Autohotkey. _________________
 |
|
| Back to top |
|
 |
vcordie
Joined: 15 Jun 2009 Posts: 12 Location: Horizontally parked in a parallel universe.
|
Posted: Tue Jun 23, 2009 4:28 pm Post subject: |
|
|
I happen to play gunz and I know why you cant use autohotkey with gunz.
You could even get yourself banned for having autohotkey script running while playing gunz. Gunz uses gameguard and gameguard screws over autohotkey. Simple as that. |
|
| Back to top |
|
 |
|