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?
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?
Originally Posted by juozuxp
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.
Originally Posted by unkbody
Not at all. Seems that developers don't give a heck about it.
Great to know thanks
Originally Posted by juozuxp
Great to know thanks
Hope you get it to work man, thank you for working on this!
Originally Posted by Toonsie.
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.
Originally Posted by a353228396
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
Originally Posted by xXGhostXx1230
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?