Great skill check script (AHK)

Posts 115 of 31 · Page 1 of 3
Great skill check script (AHK)
This is not a release I have created this thread on "Help" prefix cause I just gave up on this script that should complete every skill check on great. I'm gonna give you the source for those who know AHK so they could finish it or rewrite it in c++, c#, etc. I think it would be a great idea to have something like this around.
Code:
#NoEnv
dots1X := []
dots1Y := []
dots2X := []
dots2Y := []
i = 0
i2 := 0
c = 0
r = 70
en = 10
a := 0
while (i2 <= 360) {
	dots1X[i2] := Round(Cos(DegToRad(i2)) * r) + 963
	dots1Y[i2] := Round(Sin(DegToRad(i2)) * r) + 525
	i2 += en
}
loop {
	X := dots1X[a]
	Y := dots1Y[a]
	PixelGetColor, color, X, Y
	SplitRGBColor(color, Red, Green, Blue)
	if (Red >= 240) and (Green >= 240) and (Blue >= 240) {
		f = 1
		i += 1
		dots2X[i] := X
		dots2Y[i] := Y
	} else if (f = 1) {
		f = 0
		loop {
			c += 1
			if (c > i) {
				c = 1
			}
			PixelGetColor, color, dots2X[c], dots2Y[c]
			SplitRGBColor(color, Red, Green, Blue)
			if (Green <= 240) and (Blue <= 240) {
				if (255 >= Red) and (0 = Green) and (0 = Blue) {
					sendinput {space}
					break
				}
			} else {
				break
			}
		}
	}
	a += en
	if (a >= 361) {
		a = 0
	}
}
DegToRad(deg) {
	static degree := 0.01745329252
	return deg * degree
}
SplitRGBColor(RGBColor, ByRef Red, ByRef Green, ByRef Blue)
{
    Red := RGBColor >> 16 & 0xFF
    Green := RGBColor >> 8 & 0xFF
    Blue := RGBColor & 0xFF
}
Leave your feedback, would you like something like this around?
Personally, I'd love something like this. Hope to see if anyone can get it going.
bro no.....

- - - Updated - - -

hahahaa jk i want this
I cant hit my ds when killer has unnerving, same with ruin, would be very useful
Quote Originally Posted by qwerty555111 View Post
I cant hit my ds when killer has unnerving, same with ruin, would be very useful
Training your reaction:Link.
Or use speedhack.
I only have one problem right now I guess i could get it going but i cannot make my script lock onto a window.
Can anyone please do this? The community will love you.
Btw, does anyone know what is the approach of EAC on ahk scripts? Are they bannable?
Quote Originally Posted by juozuxp View Post
Btw, does anyone know what is the approach of EAC on ahk scripts? Are they bannable?
Not at all. Seems that developers don't give a heck about it.
Quote Originally Posted by unkbody View Post
Not at all. Seems that developers don't give a heck about it.
Great to know thanks
Quote Originally Posted by juozuxp View Post
Great to know thanks
Hope you get it to work man, thank you for working on this!
Quote Originally Posted by Toonsie. View Post
Hope you get it to work man, thank you for working on this!
trying to but not so good on c++ yet and ahk is messing this shit up badly, might not even be possible on ahk so it could take me a while.
Quote Originally Posted by a353228396 View Post
It seems that it can't work.
with ahk probably not but with c++ almost everything is possible .
Good luck with this.
I've been wanting a skillcheck bot since game release XDD
Quote Originally Posted by xXGhostXx1230 View Post
Good luck with this.
I've been wanting a skillcheck bot since game release XDD
Yeah gonna need some. How comes that no one ever thought of this, just use color detection ffs everyone is writing color aimbots and stuff but can't write a simple skill check bot?
Posts 115 of 31 · Page 1 of 3

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?