Search found 17 matches

by adrenalinskr
30 Jun 2021, 11:52
Forum: Ask for Help (v2)
Topic: Auto HotKey - learning/guide
Replies: 4
Views: 1245

Re: Auto HotKey - learning/guide

Thank you. Any info on v1? I believe that’s what some of my scripts are written in then
by adrenalinskr
30 Jun 2021, 11:28
Forum: Ask for Help (v2)
Topic: Auto HotKey - learning/guide
Replies: 4
Views: 1245

Auto HotKey - learning/guide

Instead of bombarding with questions — I am here to ask one simple question.

Are there any books/videos that can give me the training wheels to start learning?
by adrenalinskr
03 Sep 2019, 09:18
Forum: Gaming Help (v1)
Topic: Xbox 360 controller on PC - LT / RT
Replies: 1
Views: 1570

Xbox 360 controller on PC - LT / RT

Just had an idea.. I’ve created key press scripts before.. but thinking outside of the box.. maybe this would work.

I have a xbox360 controller laying around. Is there anyway I can turn the LT or RT to feather or simulate a “tapping” of the “f” key? And when fully pressed.. a full “f” hold?
by adrenalinskr
03 Sep 2019, 07:20
Forum: Gaming Help (v1)
Topic: Game not registering AHK
Replies: 0
Views: 570

Game not registering AHK

As the title states. Game I play came out with a pretty big update.. making changes to some of the mechanics. A script I had working pretty well.. all of a sudden.. no longer works. The only way it works (registers).. is if the delay is set way higher. But making the delay higher.. makes it pointles...
by adrenalinskr
01 Sep 2019, 07:20
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

Dumitas wrote:
31 Aug 2019, 20:27
Just replace the Send for SendInput.
Like this?

$g::


{
{
SendInput, {g Down}
sleep 120
SendInput, {g Up}
}
}

return

F2::Suspend
by adrenalinskr
31 Aug 2019, 17:24
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

SendInput SendInput is generally the preferred method to send keystrokes and mouse clicks because of its superior speed and reliability If that's the game somehow blocking that, try to compile it. I feel crappy asking.. but I dont even know where to start writing a SendInput script. Anyway you can ...
by adrenalinskr
31 Aug 2019, 15:30
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

Dumitas wrote:
31 Aug 2019, 12:29
Try with SendInput instead. :think:

Also elevate the script / Run as admin.
I dont really know what I am doing with send input.. ill give it a try. does it work differently?

I tried running as admin, same thing.

I do really appreciate the help.
by adrenalinskr
31 Aug 2019, 12:21
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

It should work with a bigger delay because a second its 1000ms, you need to increase the Sleep time. I understand.. if I do it manually by hand.. it equates to about 250ms.. give or take. When I put it into the script.. it doesnt respond the way I need it to. I have 4 seconds to complete an action....
by adrenalinskr
31 Aug 2019, 10:52
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

You need it to happen once? Can you explain what you need this script exactly for? I play the game Scum. -- I dont need it to happen once. I need it to simulate that I am tapping "f". Dowwn, up, down up, down, up. But with some new patch, the script only works with a bigger delay... but.. that dela...
by adrenalinskr
31 Aug 2019, 08:43
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

Anyone have any ideas?

It's like.. as soon as I drop below a certain ms.... the game no longer registers that click. It just tap tap taps and it doesnt move as it should.
by adrenalinskr
31 Aug 2019, 00:56
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

Re: My code no longer works.. weird

Remove the keydelay and divide the times like this: $g:: Send, {g Down} sleep 40 Send, {g Up} sleep 20 return F2::Suspend Play with those times instead, because from Up to Down, there is no sleep time. Meaning, you are pressing immediately after the release. So it somewhat works.. when i put the g ...
by adrenalinskr
31 Aug 2019, 00:14
Forum: Gaming Help (v1)
Topic: My code no longer works.. weird
Replies: 14
Views: 3357

My code no longer works.. weird

Ok. Attached is my code that changed with some sort of update.. no idea. Here is my code: $g:: SetKeyDelay, 30, { { Send, {g Down} sleep 60 Send, {g Up} } } return F2::Suspend My problem is... It spams "g" in text editor.. but in game.. it like rapid fires it and it doesnt hold down for a split seco...
by adrenalinskr
20 Aug 2019, 11:30
Forum: Tutorials (v1)
Topic: Intro to AutoHotkey Udemy course
Replies: 20
Views: 20942

Re: Intro to AutoHotkey Udemy course

@adrenalinskr I didn't "go deep" on hotkeys, but it was one of the topics. Here's the overall itinerary Section 1: Introduction and Overview 23 min Section 2: Setting-up AutoHotkey 11 min Section 3: Critical Concepts 15 min Section 4: Powerful Built-in Tools 1hr 1 min Section 5: Basic Programming 2...
by adrenalinskr
20 Aug 2019, 09:20
Forum: Tutorials (v1)
Topic: Intro to AutoHotkey Udemy course
Replies: 20
Views: 20942

Re: Intro to AutoHotkey Udemy course

I’m having trouble understanding the provided tutorial. This may be for me.. perhaps the intro may be all I need? Let me ask you. I’m not looking to create lines and lines of code. I am looking for simple tasks... at least what seems simple. For example.. make a simple Keyboard keystroke T rapid fir...
by adrenalinskr
19 Aug 2019, 18:56
Forum: Ask for Help (v1)
Topic: Help with Code, quick easy?
Replies: 1
Views: 493

Help with Code, quick easy?

My problem is.. I want to be able to hold down the f key and it spams F, with a slight delay and being able to control the mouse as well. My f key doesnt work when its loaded. What gives?

Here is my code:

f::
send {f down}
sleep 250
send {f up}
return
by adrenalinskr
18 Aug 2019, 15:06
Forum: Ask for Help (v1)
Topic: Spam key and still use mouse
Replies: 1
Views: 520

Re: Spam key and still use mouse

bump
by adrenalinskr
17 Aug 2019, 22:02
Forum: Ask for Help (v1)
Topic: Spam key and still use mouse
Replies: 1
Views: 520

Spam key and still use mouse

I was wondering if anyone can help me out. I am looking to spam my F key.. without losing my mouse functionality. So.. Spam F.. every 50ms-150ms or so... while still being able to fine tune my mouse. I tried using the script below.. but i cannot use my mouse anymore. It like locks up. ~~ I do need a...

Go to advanced search