Search found 19 matches

by badnecros
21 Jan 2020, 02:41
Forum: Ask for Help (v1)
Topic: Connection issues in League of legends
Replies: 2
Views: 397

Re: Connection issues in League of legends

there is no key called Click (there is LButton ) in ahk, so i dont get how u even managed to run the script. the script doesnt even compile. u would have encountered an error message telling u exactly that the first time u ever tried running this script no comment on the game disconnecting u thanky...
by badnecros
20 Jan 2020, 21:51
Forum: Ask for Help (v1)
Topic: Connection issues in League of legends
Replies: 2
Views: 397

Connection issues in League of legends

Hi team! im just trying to make a click spam in league of legends because my clicking is driving my girlfriend nuts while she is trying to watch her shows. ive got the basic Script down, $Click:: While GetKeyState("Click","P") Send, {Click} Sleep, 200 Return When i run this, it works fine until i ac...
by badnecros
12 Mar 2019, 13:15
Forum: Ask for Help (v1)
Topic: Block key input for short period of time? Topic is solved
Replies: 2
Views: 960

Re: Block key input for short period of time? Topic is solved

Rohwedder wrote:
12 Mar 2019, 02:03
Hallo,
try:

Code: Select all

~*2::234WasPressedAt:=A_TickCount
~*3::234WasPressedAt:=A_TickCount
~*4::234WasPressedAt:=A_TickCount
#if A_TickCount < 234WasPressedAt + 2500
*2::return
*3::return
*4::return							 						 
#if
Works Brilliantly! thank you so much
by badnecros
11 Mar 2019, 23:43
Forum: Ask for Help (v1)
Topic: Block inputs from a certain key for x seconds Topic is solved
Replies: 4
Views: 4098

Re: Block inputs from a certain key for x seconds Topic is solved

hey! is there a way to freeze multiple keys?
ay Q W E R all freeze if you press 1 for that short period?
by badnecros
11 Mar 2019, 23:03
Forum: Ask for Help (v1)
Topic: Block key input for short period of time? Topic is solved
Replies: 2
Views: 960

Block key input for short period of time? Topic is solved

IE, what i am looking for is essentially 2 or 3 or 4:: 2 or 3 or 4:: Block Input of 2,3,4 for 2.5 seconds Unblock input of 2,3,4 return What should that code look like? Please be advised, i found the code below which works for one key, but i cant figure our how to modify it to freeze all three keys,...
by badnecros
19 Apr 2017, 12:21
Forum: Gaming Help (v1)
Topic: shapeshifting and new skillsets
Replies: 3
Views: 739

shapeshifting and new skillsets

The code listed below is an attempt at making "q" activate a macro, then no activate the macro again until after the ability q is mapped to ends. ;;Stack Tals/Archon $q:: q={q} ;;Cycle Elements send, e sleep, 200 send, r sleep, 200 ;;Activate Archon send, q sleep, 200 ;;Activate Slow Time send, w ;;...
by badnecros
24 Mar 2017, 10:51
Forum: Gaming Help (v1)
Topic: shift Key is not reading in an MMO
Replies: 1
Views: 674

shift Key is not reading in an MMO

Hey guys. im just trying to make macros, and my MMO does not read Shift in my code when it comes to the keystring output. I am trying to make a macro to do the following; Hit 2, and it sends; Shift+2, Waits 2 seconds, hits Shift+3, waits 2 seconds, hits Shift+4. my script is as follows. 2:: send, +2...
by badnecros
20 Mar 2017, 15:11
Forum: Gaming Help (v1)
Topic: Shift Key is causing issues Topic is solved
Replies: 8
Views: 3173

Re: Shift Key is causing issues Topic is solved

Yes, but if you hard-remap 2 to be shift-2, how do you activate unshifted skill 2? That's what is confusing me about your use-case. or do you WANT 2 to activate both unshifted 2 AND trigger the macro? So, i have a skill list, that needs certain spells used, in a certain order. my goal, was to hit t...
by badnecros
18 Mar 2017, 13:44
Forum: Gaming Help (v1)
Topic: Shift Key is causing issues Topic is solved
Replies: 8
Views: 3173

Re: Shift Key is causing issues Topic is solved

I will be getting home late tonight to attempt your suggestion. = I am not sure that I get, however, why you want to map 2 to Shift+2 If you have multiple skill bars, why do you not just put the skill that is on Shift+2 onto 2? This is why I was assuming there was only 1 skillbar. We have broken the...
by badnecros
18 Mar 2017, 10:28
Forum: Gaming Help (v1)
Topic: Shift Key is causing issues Topic is solved
Replies: 8
Views: 3173

Re: Shift Key is causing issues Topic is solved

No, I mean the green box surrounding your post which appeared after you clicked a tick icon. It is used to mark the post which you consider to be the answer, like in stackoverflow. Marking the question as the answer serves no use other than less people looking at your post because they think you ha...
by badnecros
17 Mar 2017, 13:57
Forum: Gaming Help (v1)
Topic: Shift Key is causing issues Topic is solved
Replies: 8
Views: 3173

Re: Shift Key is causing issues Topic is solved

it just goes "234" in game On what are you basing this statement? By the fact that it triggers skill 2, then 3, then 4? If you go into the game then hit SHIFT+2. does it do the same as if you had hit just 2? I am basing this on the fact that i have keymapping for Shift+1,2,3,4,5,6,7,8,9 As well as ...
by badnecros
18 Nov 2016, 15:44
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Re: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

Since computers are really stupid, but supremely fast they can only do one thing at a time very quickly. given what you said about trying to toggle your qwer keys we can get one key at a time but we can combine them to send one after the other. I don't know if that will solve the problem you're fac...
by badnecros
18 Nov 2016, 10:05
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Re: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

Since computers are really stupid, but supremely fast they can only do one thing at a time very quickly. given what you said about trying to toggle your qwer keys we can get one key at a time but we can combine them to send one after the other. I don't know if that will solve the problem you're fac...
by badnecros
17 Nov 2016, 16:57
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Re: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

so pretty much i want a full Down/Up of the button "1" to hold "Q" down, until i press "1" down/up again however, at the same time, i want a full Down/Up of the button "2" to hold "W" down, until i press "2" down/up again, the issue is, they both cannot go at the same time, and thats what i need byp...
by badnecros
17 Nov 2016, 16:54
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Re: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

but i dont want ANYTHING to happen on the release of the key. i want a second press to turn the toggle off

P.S. Thank you for all the help
by badnecros
17 Nov 2016, 16:35
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Re: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

The GetKeyState technique of detecting key events only works for one hotkey at a time. See here: https://autohotkey.com/boards/viewtopic.php?f=7&t=19745 Thats great information. would you be able to show me how that intigrates into my code in order to toggle the up/down of my keys? ive never used t...
by badnecros
17 Nov 2016, 14:52
Forum: Gaming Help (v1)
Topic: Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved
Replies: 11
Views: 2222

Code Needs a tweak, and im not sure what to do (Holding Keys) Topic is solved

So! im playing diablo, and i dont have a NumPad on my laptop, so im trying to creat a hotkey to synthisize the autopress action the numbpad serves. in essence, press a button to toggle a button to be held down there are 4 buttons, in which i need to seperately choose which to hold, and which to manu...
by badnecros
14 Nov 2016, 11:12
Forum: Ask for Help (v1)
Topic: not running steps in order. Topic is solved
Replies: 2
Views: 668

Re: not running steps in order. Topic is solved

Check with the ListLines command to verify that the PgDn is happening at the right time. My suspicion is it is actually your target program is for some reason responding oddly. Maybe it isn't expecting a PgDn key to be sent at that time, but processes it when it would expect it to, which is after y...
by badnecros
11 Nov 2016, 17:28
Forum: Ask for Help (v1)
Topic: not running steps in order. Topic is solved
Replies: 2
Views: 668

not running steps in order. Topic is solved

hi there. im writing my second script right now, and all it is, is a series of mouseclicks. its doing a {pgdn} after doing a mouseclick that is written underneith it. i tried putting a 3sec (3000) sleep on either side of the pgdn, and it still does it. ;;Creates a ticket under GS3-6 With CTRL+3,4,5,...

Go to advanced search