Search found 26 matches

by Galakrond
15 Jun 2023, 07:45
Forum: Gaming
Topic: Need suggestion/help about exe liscensing
Replies: 2
Views: 312

Re: Need suggestion/help about exe liscensing

Hello, You could have a Web page that manages downloads and tracks IP addresses to do that, or the script could access a server-based tracking file, and act accordingly. Generally speaking, my feeling is that blocking downloads is always a poor approach, because it will annoy potential future custo...
by Galakrond
15 Jun 2023, 07:22
Forum: Gaming
Topic: Need suggestion/help about exe liscensing
Replies: 2
Views: 312

Need suggestion/help about exe liscensing

Hello, I have a code that gets the current date from a website and expires on the date I set. I have to give this product by connecting to my customers' computers and throwing it into a file. I want to upload it on a website and I want the license to expire after 30 days of use from the day the exe ...
by Galakrond
10 May 2023, 15:01
Forum: Gaming
Topic: How to Re-tracing a certain color and writing changed coords to exe?
Replies: 0
Views: 413

How to Re-tracing a certain color and writing changed coords to exe?

How can I find the coordinate of a displaced pixel again and write it into an exe? The particular pixel to be searched is in a square whose color can be adjusted as desired on screen. When the location of the pixel to be searched changes, the location of the square whose color can be adjusted change...
by Galakrond
09 May 2023, 15:02
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

I guess you’re looking to do something like this: Colors := [0xFFFFF0, 0x593FFF, 0x92349, 0x23494] for Num, Color in Colors { PixelSearch,,, 569, 555, 990, 672, Color, 0, Fast RGB if !ErrorLevel Send, % Num } Hello boiler, how can i set the keys not like 1 , 2 , 3 but with shift; +{1}, +{2}, +{3}?
by Galakrond
09 May 2023, 07:00
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

One last thing left, defining the keys to be pressed for the colors. Like; press 1 for 0xFFFFF0 color. press 2 for 0x593FFF color. press 3 for 0x92349 color. Nope. Also done for those numbers (and 4 for the last color). Also it would be awesome if its in loop Put the word loop on a line before the ...
by Galakrond
09 May 2023, 06:45
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

I guess you’re looking to do something like this: Colors := [0xFFFFF0, 0x593FFF, 0x92349, 0x23494] for Num, Color in Colors { PixelSearch,,, 569, 555, 990, 672, Color, 0, Fast RGB if !ErrorLevel Send, % Num } Yes,nearly. Defining the coordinate. Done. Defining colors. Done. One last thing left, def...
by Galakrond
09 May 2023, 04:51
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

Sure its like this, but please ignore the coords.

Code: Select all

PixelSearch, FoundX, FoundY, 569, 555, 990, 672, 0x940000, 0, Fast RGB
Also with these structure, im editing all other colors coords again an again. :( (pain)
by Galakrond
09 May 2023, 04:37
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

Regarding your post, in a recent post, you tried to make a search rectangle when using PixelGetColor. Now your search rectangle is only one pixel, so you really should be using PixelGetColor in this case. Sorry for making confusion. This part of the script is important for me. '' If win active RAYG...
by Galakrond
09 May 2023, 04:11
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Re: Need a basic script and help

We have again had to move your thread from the main section, which is for AHK v2 code. Please notice where this thread has been moved to and post in the appropriate section from now on. Also, makes your subject titles more descriptive about what you need help with. Everyone who posts here needs hel...
by Galakrond
09 May 2023, 03:43
Forum: Ask for Help (v1)
Topic: Need a basic script and help
Replies: 12
Views: 827

Need a basic script and help

Hello, I need a script where I can predetermine the Pixels that will be pressed on the keys. It can be like that, For example; Pixels= 0xFFFFF0 , 0x593FFF , 0x92349 , 0x23494 , If win active RAYGOX LOOP PixelSearch, FoundX, FoundY, 200, 200, 200, 200, if color=0xFFFFF0 sendinput 1 if color=0x593FFF ...
by Galakrond
09 May 2023, 03:17
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1088
Views: 584421

Re: FindText - Capture screen image into text and then find it Topic is solved

I have a few questions for its use, I might have misunderstood. If so, I'm sorry. For example, I will search for an image or pixel at the coordinates 200,200,200,200, and when it is found, I want the 1 key to be pressed. I have 10 different images that I want to be searched at coordinates 200,200,20...
by Galakrond
09 May 2023, 03:03
Forum: Scripts and Functions (v1)
Topic: PaddleOCR - probably the best OCR tool available
Replies: 75
Views: 30709

Re: PaddleOCR - probably the best OCR tool available

I have a few questions for its use, I might have misunderstood. If so, I'm sorry. For example, I will search for an image or pixel at the coordinates 200,200,200,200, and when it is found, I want the 1 key to be pressed. I have 10 different images that I want to be searched at coordinates 200,200,20...
by Galakrond
08 May 2023, 12:35
Forum: Ask for Help (v1)
Topic: Need help about make the code work Topic is solved
Replies: 1
Views: 244

Need help about make the code work Topic is solved

PixelGetColor, color , 686 , 662, 666, 675 RGB if color = 0x442E7D SendInput {1} How can i make this code work? Its actually working with '' PixelGetColor, color , 686 , 662' RGB' But i need to make it work like ''PixelGetColor, color , 686 , 662, 666, 675 RGB'' Thanks for any help. [Mod action: To...
by Galakrond
09 Apr 2023, 06:39
Forum: Ask for Help (v1)
Topic: Would it be possible to make a script expire or otherwise stop working after date?
Replies: 56
Views: 3858

Re: Would it be possible to make a script expire or otherwise stop working after date?

It cannot delete itself ! may be you will need to make use of batch file to delete your script and delete the batch file itself . Warning : this looks like a virus thing , and will be flagged by antiviruses Hello, thanks for your helps. i handled the auto deleting thing. There is last thing for me,...
by Galakrond
08 Apr 2023, 16:46
Forum: Ask for Help
Topic: Need help about understanding what is AHK_H and how can i install it correctly!
Replies: 0
Views: 1279

Need help about understanding what is AHK_H and how can i install it correctly!

I saw a file being compiled with ahk_h on Youtube. First of all, I try to install ahk_h on my computer for 2-3 hours, but I have not been successful. ( Which is driving me crazy ) I have a few questions about ahk_h. Does the autohotkey version installed on my computer matter to ahk_h? I'm using vers...
by Galakrond
08 Apr 2023, 11:14
Forum: Ask for Help (v2)
Topic: How to scan location a file
Replies: 3
Views: 261

How to scan location a file

How can I scan the computer for a specific named file like ''hello.exe''?

And how can I automatically delete it if its location is found?

Thanks, best regards.
by Galakrond
08 Apr 2023, 04:57
Forum: Ask for Help (v1)
Topic: Would it be possible to make a script expire or otherwise stop working after date?
Replies: 56
Views: 3858

Re: Would it be possible to make a script expire or otherwise stop working after date?

mikeyww Hello there. When i paste my code below your code, your code is working, but mine not. Is it possible to combine these two scripts? 1-- Your code expires = 20221031 tz = cet url = http://worldclockapi.com/api/json/%tz%/now format = MM/dd/yyyy WinHttp := ComObjCreate("WinHttp.WinHttpRequest....
by Galakrond
19 Jan 2023, 01:45
Forum: Gaming Help (v1)
Topic: Click Speed/delay/sleep Topic is solved
Replies: 42
Views: 11605

Re: Click Speed/delay/sleep Topic is solved

@Hellbent Nope, i cannot do it. Wish i can but i tried my luck. Community need your help about it my friend 😁
by Galakrond
17 Jan 2023, 16:20
Forum: Gaming Help (v1)
Topic: Click Speed/delay/sleep Topic is solved
Replies: 42
Views: 11605

Re: Click Speed/delay/sleep Topic is solved

@Hellbent I will try it and inform you again my friend. If i can make it, i will post it here for everyone

Go to advanced search