Search found 60 matches

by neverlevel
14 Jan 2019, 20:45
Forum: Ask for Help (v1)
Topic: comparing lists of colors
Replies: 0
Views: 488

comparing lists of colors

So i am reading a line of colors and saving them to a file i need to be able to tell which pixel locations have changed colors. sx = 900 sy = 727 Loop, { pixelgetcolor, Canplay, %sx%,%sy% sx-=1 Fileappend, %canplay%, search.txt if sx < 200 break } msgbox, done I need to know which X locations have c...
by neverlevel
05 Sep 2018, 16:30
Forum: Gaming Help (v1)
Topic: I need a quick piece of nifty code. Topic is solved
Replies: 1
Views: 716

I need a quick piece of nifty code. Topic is solved

its pretty simple but..maybe somebody could show me how its really supposed to be done? i need to poll a list or a var for most common response ;Actually a huge loop but.... Loop { PixelGetColor, color, X, Y ;test add to var color Colors := %colors%%color% . ;fileappend, %color%, area\colors.txt ;ad...
by neverlevel
13 Aug 2018, 20:40
Forum: Ask for Help (v1)
Topic: New to Autohotkey... Need some help.
Replies: 2
Views: 653

Re: New to Autohotkey... Need some help.

try lowercase x?
by neverlevel
07 May 2018, 16:33
Forum: Ask for Help (v1)
Topic: Can't figure out how to leave loop
Replies: 9
Views: 1951

Re: Can't figure out how to leave loop

F2::reload? probably not what you want. could always use goto and add a sub up near the top to force the check mutemic() { SoundSet, +1, MASTER, mute,11 SoundGet, master_mute, MASTER, mute, 11 Sleep, 100 Recheck: if master_mute = on { KeyboardLED(1,"on") ; Sleep, 500 KeyboardLED(1,"off") Sleep, 500 ...
by neverlevel
01 May 2018, 20:02
Forum: Gaming Help (v1)
Topic: how to find the direction of the arrow, which is translucent and random in angle Topic is solved
Replies: 3
Views: 1181

Re: how to find the direction of the arrow, which is translucent and random in angle Topic is solved

if you were to pixel get color from left to right across the screen in 4 rows you could determine up down or left and right assuming the colors all come back true but distinguishing between left and right is gonna be tougher. try counting the color changes from the look of it you should be able to t...
by neverlevel
01 May 2018, 19:41
Forum: Gaming Help (v1)
Topic: Market/auction bot closes itself/minimizes game?
Replies: 1
Views: 1016

Re: Market/auction bot closes itself/minimizes game?

when i had this problem i was using a gosub i never intended to return from and it got out of control.. i dont know exactly how it works but is it possible to add a reload Mid script somewhere? if it runs for a while it should run forever..but its not...i would add a screenshot program to catch what...
by neverlevel
01 May 2018, 19:30
Forum: Gaming Help (v1)
Topic: Mouseclick remapping not work ingame Topic is solved
Replies: 3
Views: 864

Re: Mouseclick remapping not work ingame Topic is solved

~ symbol i think is needed? thats the little symbol next to your 1 key.. if your not sure but wanna get an answer...say something crazy and wait for someone to correct you
by neverlevel
01 May 2018, 19:26
Forum: Gaming Help (v1)
Topic: Controlling keyboard like a human
Replies: 3
Views: 2141

Re: Controlling keyboard like a human

do you need to know how to start a new script? copy and paste code? commands to look up?, because until we know exactly what you want it to do.. we cant help much this does not help you much Send {b down}{b up} Send {TAB down}{TAB up} Send {Up down} ; Press down the up-arrow key. Sleep 1000 ; Keep i...
by neverlevel
28 Apr 2018, 15:14
Forum: Gaming Help (v1)
Topic: [HELP] Hotkey then fire at moving target 2D GAME
Replies: 3
Views: 1256

Re: [HELP] Hotkey then fire at moving target 2D GAME

to help with this we need a copy of your script you are trying to fix. also a screenshot of your target and environment you want it to work in.. a description of your attempt and what you think it should do but does not..
by neverlevel
24 Apr 2018, 16:28
Forum: Gaming Help (v1)
Topic: Does a script like this exist???
Replies: 1
Views: 710

Re: Does a script like this exist???

this highly depends on the image. . if the image is solid and you can cut out the center of it<so as not to get any background> loop imagesearch and mousemove could be an easy solution.. screenshot your image and cut out a piece that only shows up in it.. then you can look up those commands in the h...
by neverlevel
24 Apr 2018, 16:20
Forum: Gaming Help (v1)
Topic: Need Help with Background Script
Replies: 2
Views: 946

Re: Need Help with Background Script

i think you need control send to send commands to inactive windows..best i can do for you
by neverlevel
21 Apr 2018, 06:28
Forum: Gaming Help (v1)
Topic: Loop problem ? Topic is solved
Replies: 7
Views: 1803

Re: Loop problem ? Topic is solved

does AHK care what your screens refresh rate is? isnt it checking what your computer is telling your screen to be? as in..if you didnt HAVE a monitor..it would still work
by neverlevel
16 Apr 2018, 17:22
Forum: Gaming Help (v1)
Topic: Is it possible to make a script that corrects the path of a player character?
Replies: 4
Views: 1047

Re: Is it possible to make a script that corrects the path of a player character?

is it possible? probably.. is it easy not very likely from the sound of it.. it depends on what you can check to align yourself with
by neverlevel
15 Apr 2018, 21:00
Forum: Ask for Help (v1)
Topic: Viewing Currently Executing Line
Replies: 4
Views: 984

Re: Viewing Currently Executing Line

well.... i have put F1::pause in almost all of my scripts and double clicking the icon near time brings up last few lines executed...but i am sure this isnt what you were hoping for. maybe write a script to insert a tooltip with a var doing count+=1 after each line? it would double the size of your ...
by neverlevel
15 Apr 2018, 20:56
Forum: Gaming Help (v1)
Topic: Need help with checking 2 different pixel colors Topic is solved
Replies: 2
Views: 751

Re: Need help with checking 2 different pixel colors Topic is solved

Loop { PixelGetColor, colorfound, 2502, 542 if (colorfound = 0x00E900) if this color is found start the next bracket section otherwise skip this section { ;start first section PixelGetColor, colorfound, 2502, 542 ;change this for second location if (colorfound != 0x00E900) ; change this for second ...
by neverlevel
15 Apr 2018, 19:29
Forum: Ask for Help (v1)
Topic: Help Topic is solved
Replies: 7
Views: 1769

Re: Help Topic is solved

i do not understand any of this code. i would.. get a printscreen and cut out a piece of the login screen get the coordinates for username and password get a printscreen and cut out a unique piece of the logged in screen get the coordinates for the logout procedure get a printscreen of a failed logi...
by neverlevel
15 Apr 2018, 19:12
Forum: Gaming Help (v1)
Topic: I need help with script :(
Replies: 9
Views: 2328

Re: I need help with script :(

nothing. i am probably misinterpreting his request and overstressing the random request and counting his cannot repeat as the 4 digit number cant repeat..not each digit .
by neverlevel
15 Apr 2018, 18:56
Forum: Gaming Help (v1)
Topic: I need help with script :(
Replies: 9
Views: 2328

Re: I need help with script :(

i got 256 possibilities..
by neverlevel
15 Apr 2018, 18:24
Forum: Gaming Help (v1)
Topic: I need help with script :(
Replies: 9
Views: 2328

Re: I need help with script :(

the big delay is probably a random number being repeated over and over.. i was working on something for you but... it will stall a while until it finds every possibility and/or gives up..what i had so far.. 1:: { random, r, 2, 5 send, %r% sleep, 200 random, r2, 2, 5 send, %r2% sleep, 200 random, r3,...

Go to advanced search