Search found 18 matches

by sh00ter666
03 Feb 2023, 10:18
Forum: Ask for Help (v1)
Topic: GUI Position Does not Reset After SetTimer Loop
Replies: 1
Views: 310

GUI Position Does not Reset After SetTimer Loop

Three questions: Why does my Gui fail to set its new position after a few loops? See code sample How can I set a condition to hotkeys being active? How can I permanently check the status of a window to display my Gui accordingly? Been fiddling with my macro for a while. In order to display varying s...
by sh00ter666
16 Mar 2019, 08:04
Forum: Ask for Help (v1)
Topic: Using PixelSearch to identify all possible entities on screen (MMORPG Bot)
Replies: 2
Views: 2133

Re: Using PixelSearch to identify all possible entities on screen (MMORPG Bot)

Hi Imstearn! First off, thank you for taking the time to respond. The image link has been broken up automatically by the forum software. It doesn't seem to want me to include any images (although it worked in the past). The idea you mention is something I tried to implement in the code sample, by re...
by sh00ter666
15 Mar 2019, 12:46
Forum: Ask for Help (v1)
Topic: Using PixelSearch to identify all possible entities on screen (MMORPG Bot)
Replies: 2
Views: 2133

Using PixelSearch to identify all possible entities on screen (MMORPG Bot)

Hey there folks, I am trying to realize a simple click/grind bot for an old MMORPG. I opted with the PixelSearch method, because that seemed to be the easiest solution to wrap my head around for this point in time. I am not sure if ImageSearch would be optiomal, since the game is 3D and monsters ten...
by sh00ter666
03 Aug 2017, 13:39
Forum: Gaming Help (v1)
Topic: Nexon Game Security prevents AHK from working. Topic is solved
Replies: 2
Views: 2144

Re: Nexon Game Security prevents AHK from working. Topic is solved

Really? That simple, haha? I'ma give it a try!
by sh00ter666
03 Aug 2017, 08:47
Forum: Gaming Help (v1)
Topic: Nexon Game Security prevents AHK from working. Topic is solved
Replies: 2
Views: 2144

Nexon Game Security prevents AHK from working. Topic is solved

Hey, so I am trying to get my simple key repeater Script to work in the game MapleStory. Apparently its Game Security Software is blocking everything AutoHotKey does to prevent people from automating their gameplay. I thought it would hopelessly block any virtual keystrokes, but when I assign keys t...
by sh00ter666
15 Jul 2017, 10:06
Forum: Ask for Help (v1)
Topic: Elegant solution to send multi-line text line by line? Topic is solved
Replies: 9
Views: 7568

Re: Elegant solution to send multi-line text line by line? Topic is solved

What the actual hell? I have tested this so many times now. . . What could possibly be wrong with my machine? Image URL Nvm, works now. Apparently the lazy bit of reload code caused trouble because no line breaks? This means that it doesn't work in my main script, because something before the snippe...
by sh00ter666
15 Jul 2017, 07:45
Forum: Ask for Help (v1)
Topic: Elegant solution to send multi-line text line by line? Topic is solved
Replies: 9
Views: 7568

Re: Elegant solution to send multi-line text line by line? Topic is solved

Yeah, I think I know what you're saying and it is something that I had tried prior to posting. But even those two examples you linked above, yield the same result for me. In both instances, an empty Message Box. This should be happening, right? Does the snippet that you have provided in post#2 work ...
by sh00ter666
15 Jul 2017, 06:39
Forum: Ask for Help (v1)
Topic: Elegant solution to send multi-line text line by line? Topic is solved
Replies: 9
Views: 7568

Re: Elegant solution to send multi-line text line by line? Topic is solved

Thank you guys, as always you two are of immensurable help!! :bravo: :dance: The snippet is looking very good, unfortunately it's not working in either of the two applications I tested it within. This is what I have: $F8:: sendLyrics(song) return song= ( this is a test ) sendLyrics(lyrics){ Loop, Pa...
by sh00ter666
12 Jul 2017, 04:45
Forum: Ask for Help (v1)
Topic: Elegant solution to send multi-line text line by line? Topic is solved
Replies: 9
Views: 7568

Elegant solution to send multi-line text line by line? Topic is solved

Greetings, I would like to accomplish an easy to maintain source for inserting and swapping out multi-line texts that are being sent line by line. In essence I bet it is quite easy to realize, though I cannot quite come up with anything efficient and elegant. The core idea is to send song lyrics lin...
by sh00ter666
08 Jul 2017, 03:21
Forum: Gaming Help (v1)
Topic: Help me implement a sequence of keypresses more elegantly Topic is solved
Replies: 8
Views: 2044

Re: Help me implement a sequence of keypresses more elegantly Topic is solved

Thanks a thousand times to everyone who has helped so incredibly quickly!!! I am currently using Rohwedder's approach and it's working like a charm! :D :rainbow: Another suggestion, j:: SetKeyDelay, 55, 50 SendEvent,e{left}{up}y{down}y return :clap: :clap: :clap: :thumbup: Ahhh so this is how you ar...
by sh00ter666
08 Jul 2017, 02:34
Forum: Gaming Help (v1)
Topic: Help me implement a sequence of keypresses more elegantly Topic is solved
Replies: 8
Views: 2044

Help me implement a sequence of keypresses more elegantly Topic is solved

Hey, up until now I used to write my hotkey script squences like so: #NoEnv SendMode Input SetWorkingDir %A_ScriptDir% $j:: SendInput {e down} Sleep 50 SendInput {e up} Sleep 55 SendInput {left down} Sleep 50 SendInput {left up} Sleep 55 SendInput {up down} Sleep 50 SendInput {up up} Sleep 55 SendIn...
by sh00ter666
21 Apr 2017, 04:48
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Re: Multi-threaded key-spamming / rapidfire Topic is solved

I think the script currently does not allow me to set a time to keep the key down like : SendInput {e down} Sleep 50 SendInput {e up} Maybe it could solve the problem of keys getting stuck :eh: But I will need help on editing this segment, since I still don't quite grasp this entire snippet, except ...
by sh00ter666
20 Apr 2017, 01:00
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Re: Multi-threaded key-spamming / rapidfire Topic is solved

@ sh00ter666 , this was meant for you, Greetings! Yeah I didn't miss your message and tested it even though @robx99 mentioned that it didn't work :xmas: Well... at least this is what I tried: ; [...] $*lbutton up:: $*q up:: $*w up:: $*e up:: ; [...] No improvement :oops: Should be fixed by adding \...
by sh00ter666
19 Apr 2017, 14:12
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Re: Multi-threaded key-spamming / rapidfire Topic is solved

label: loop, parse, hks, `, { if !getkeystate(A_LoopField, "p") { hks := RegExReplace(hks, "(,)" hk ",|,{0,1}" hk ",{0,1}", "$1") continue } sendInput % "{blind}{" A_LoopField "}" } return Maybe force it to double check. Thank you tons for your suggestion but this created another inexplicable and v...
by sh00ter666
18 Apr 2017, 05:52
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Re: Multi-threaded key-spamming / rapidfire Topic is solved

The * and blind should solve your number three problem. As for your number one problem, if sendInput works in your game that should solve it, Wooow!! You are incredible Xeno234! I thank you very much for taking the time and patience to help me! The code you provided works like a charm indeed! And i...
by sh00ter666
17 Apr 2017, 16:17
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Re: Multi-threaded key-spamming / rapidfire Topic is solved

Thank you very much for the reply guys! Especially evilC. I have used your method and the script looks something like this now: Enter:: Suspend Sleep 20 Send {Enter down} Sleep 25 Send {Enter up} return ; ====================== R B U T T O N ========================= $RButton:: SetTimer, SendClick, ...
by sh00ter666
12 Oct 2016, 05:16
Forum: Ask for Help (v1)
Topic: Multi-threaded key-spamming / rapidfire Topic is solved
Replies: 17
Views: 6022

Multi-threaded key-spamming / rapidfire Topic is solved

Hello there. I have a problem where I set up a AHK script to repeatedly self-send keys when held down according to a guide in the old forums. When I hold down the F-Key and D-Key, only on of them is sending, meaning that the script can only perform one loop at a time the way it is setup. What I want...
by sh00ter666
12 Oct 2016, 05:15
Forum: Forum Issues
Topic: Welcome and if you need help
Replies: 87
Views: 125191

Re: Welcome and if you need help

Hello, I don't k now whether my account is activated but I cannot create a new thread.

I tried while logged in and while logged out. As soon as I want to submit my post I get the nondescript message "take a break!!"...

End me.

Go to advanced search