Search found 22 matches

by yessorryno
22 Nov 2017, 21:57
Forum: Gaming Help (v1)
Topic: Request Help Writing Simple Macro
Replies: 2
Views: 763

Re: Request Help Writing Simple Macro

So I'm new to AHK and am hoping someone can help me write what should be a really simple script. The thing is, the game I need it for, SW:TOR, has an ability queue system which doesn't always recognize a key press unless it's held down for a certain period of time. I've found 150 ms to work very we...
by yessorryno
06 Nov 2017, 02:16
Forum: Gaming Help (v1)
Topic: Write command on game chat- script request Topic is solved
Replies: 2
Views: 2685

Re: Write command on game chat- script request Topic is solved

Szynsz wrote:Hello

I need script that click "t" button wait half second and type "/squirrels" and hit enter, and all of this must be start with F2. Can anyone make it for me?

Hi

Code: Select all

F2::
send {t}
sleep 500
send /squirrels
sleep 500
send {enter}
by yessorryno
04 Oct 2017, 21:32
Forum: Ask for Help (v1)
Topic: Search text and generate file with specific content
Replies: 2
Views: 845

Re: Search text and generate file with specific content

Hello, I want a script, that will after closing specific program search the chatlog.txt file if below line examples exist; Example line 1. [23:15:56] JAILED: [AA]Gamer(1) has been jailed by Admin [GG]Killer(6) . Reason: attacking innocent Example line 2. [13:01:12] MUTED: [AA]Gamer(1) has been mute...
by yessorryno
04 Oct 2017, 21:11
Forum: Gaming Help (v1)
Topic: Arrow key --> Mouse Click
Replies: 1
Views: 937

Re: Arrow key --> Mouse Click

hello, im playing this 2d side scrolling game, where you move using arrow keys so i want to make my mouse as arrow key : Left arrow key => Left mouse click Right arrow key => Right mouse click Up arrow key => Wheel-down Down arrow key => Wheel-up and i want my capslock button as the toggle, because...
by yessorryno
03 Oct 2017, 04:43
Forum: Gaming Help (v1)
Topic: Sending keystrokes to multiple windows that have the same process name
Replies: 6
Views: 1662

Re: Sending keystrokes to multiple windows that have the same process name

I made this script that types in username and password of an account to login into a game. Now I have 35 of these accounts and they differ in username by one number and they all have the same password. My question is how could I make this code work so it types in this text for example in all of the...
by yessorryno
03 Oct 2017, 04:39
Forum: Gaming Help (v1)
Topic: eaasy hotkey script please help
Replies: 14
Views: 3317

Re: eaasy hotkey script please help

how to make this work same time ? space and e in same moment. Hi, sendmode,play ;or input n:: send {space}{e} return it dont work without *. And with * sometimes it work sometimes not.its sbout gameping? Hi, sendmode,play ;or input ,To execute in the game, please add this line of code, and vice ver...
by yessorryno
27 Sep 2017, 01:36
Forum: Gaming Help (v1)
Topic: eaasy hotkey script please help
Replies: 14
Views: 3317

Re: eaasy hotkey script please help

ZergShadow wrote:how to make this work same time ? space and e in same moment.
Hi,

Code: Select all

sendmode,play ;or input
n::
send {space}{e}
return
by yessorryno
26 Sep 2017, 21:57
Forum: Gaming Help (v1)
Topic: Holding 2 keys by holding 1
Replies: 2
Views: 871

Re: Holding 2 keys by holding 1

Hello , So, I want to make a script that'll HOLD the keys Space + C, when I'm holding the space key. Which means - I'm holding space, the macro will hold space then C, it's important that space will be held first but the delay between the space and the C has to be pretty short for the jump to work....
by yessorryno
22 Sep 2017, 04:11
Forum: Gaming Help (v1)
Topic: The game reads the color problem
Replies: 2
Views: 799

Re: The game reads the color problem

Xtra wrote:Try again running the game in fullscreen windowed mode.
Thank you for your answer, but this method is not valid for me.
by yessorryno
21 Sep 2017, 22:31
Forum: Gaming Help (v1)
Topic: The game reads the color problem
Replies: 2
Views: 799

The game reads the color problem

Hi All,

Get the color in the game always shows 0x000000, how to write the code in order to correctly read the color of the game?

Hope someone can help me, thanks
by yessorryno
21 Sep 2017, 03:04
Forum: Ask for Help (v1)
Topic: how do I repeat this script ?
Replies: 9
Views: 23485

Re: how do I repeat this script ?

+v:: Send, 1 sleep, 3300 Send, 3 sleep, 3300 Send, 3 sleep, 3300 Send, 3 sleep, 3300 Send, 1 added code tags How do I make this basic script repeat its self ? Hi The following is a demand directive, hope to help you. Stop when F1 is pressed. +v:: loop { Send, 1 sleep, 3300 loop 3 { Send, 3 sleep, 3...
by yessorryno
20 Sep 2017, 21:14
Forum: Gaming Help (v1)
Topic: [Path of Exile] Auto Potion
Replies: 37
Views: 26330

Re: [Path of Exile] Auto Potion

Hi All,

I will be stopped by nProtect GameGuard when I use CE.

How to use CE is not detected by nProtect GameGuard?

Can someone help me find the way?

Thanks
by yessorryno
20 Sep 2017, 21:03
Forum: Gaming Help (v1)
Topic: Left Click
Replies: 1
Views: 811

Re: Left Click

Hello, i need a script that every time that i move the cursor of the mouse, it will spam the left click until i stop moving it or i press F1, (the script can start pressing only 1 time the left click) Pls help!! :) and thanks for everyone who trys to help me Hi, The following is my program, the fun...
by yessorryno
18 Sep 2017, 20:37
Forum: Ask for Help (v1)
Topic: ControlSend command to send the problem
Replies: 3
Views: 2304

Re: ControlSend command to send the problem

This worked for me: q:: ;google chrome - refresh active tab ControlSend, Chrome_RenderWidgetHostHWND1, {F5}, Google - Google Chrome return It may be that you had an extra space after the word 'Google'. As a more general solution, this also worked: q:: ;google chrome - refresh active tab DetectHidde...
by yessorryno
18 Sep 2017, 03:28
Forum: Gaming Help (v1)
Topic: The click command can not be executed in the game
Replies: 3
Views: 1005

Re: The click command can not be executed in the game

Try adding a delay between pressing the mouse button and releasing it. MyClick(x, y) { Click, % x " " y " down" Sleep, 50 Click, % x " " y "up" } Hi, I am adding a delay, the function is still unable to send to the game, probably because the game has nProtect GameGuard protection, is there a way to...
by yessorryno
18 Sep 2017, 03:17
Forum: Ask for Help (v1)
Topic: ControlSend command to send the problem
Replies: 3
Views: 2304

ControlSend command to send the problem

Hi All, In the implementation of the background to send instructions to the file and IE browser are normal, but sent to the GOOGLE browser failed, someone can give me help? The code is as follows: F1:: ControlSend, Edit1,abc,test.txt ControlSend,Internet Explorer_Server1,{F5 down},20170830 - Interne...
by yessorryno
17 Sep 2017, 20:21
Forum: Gaming Help (v1)
Topic: Having trouble with ControlClick with autoclicker
Replies: 1
Views: 798

Re: Having trouble with ControlClick with autoclicker

Hi,

Makes Send synonymous with SendInput or SendPlay rather than the default (SendEvent).
by yessorryno
14 Sep 2017, 21:55
Forum: Gaming Help (v1)
Topic: 2 Macros in 1 Script With Toggle Topic is solved
Replies: 2
Views: 1062

Re: 2 Macros in 1 Script With Toggle Topic is solved

Hi The problem is duplicate label. There can not be two identical to the address(SendTheKey:,SendTheKey1:) Change the code to the following, you can successfully execute LShift:: RepeatKey := !RepeatKey If RepeatKey SetTimer, SendTheKey, 20 Else SetTimer, SendTheKey, Off Return SendTheKey: SendInput...
by yessorryno
14 Sep 2017, 00:17
Forum: Gaming Help (v1)
Topic: BunnyHop script, but how do I stop it? Topic is solved
Replies: 3
Views: 1627

Re: BunnyHop script, but how do I stop it? Topic is solved

Hi,

Try the following.

!Q::
IfWinActive, BLOCKADE3D
{
loop, 25
{
IfWinNotActive, BLOCKADE3D
{
Exit
}
Send, {Space}
Sleep, 630
}
}

+F::
Exit
return
by yessorryno
13 Sep 2017, 02:31
Forum: Gaming Help (v1)
Topic: The click command can not be executed in the game
Replies: 3
Views: 1005

The click command can not be executed in the game

Hi ALL, I play online games, to write a click function, but in the game did not achieve the click function, the keyboard function can be used normally, what method can help me achieve the click function? The instructions are as follows. XButton1:: SendMode Play Send {click X,Y} return The mouse will...

Go to advanced search