Can this ban me ?
Hi,
I was given a dump of scripts by a friend (AHK). I was just wondering if this could get me banned and if it's actually a trigger bot.
Thanks in advanced
- ReVamp
I was given a dump of scripts by a friend (AHK). I was just wondering if this could get me banned and if it's actually a trigger bot.
Code
color = 0x808000 ;<- your color(you can change it)
xloc = 960 ;<- your coordinate(you can change it)
yloc = 554 ;<- your coordinate (you can change it)
return
$V::
Suspend, On
If (fnCheckPixel(color,xloc,yloc))
{ fnDoShoot(color,xloc,yloc)
}
Suspend, Off
return
fnCheckPixel(color, x, y)
{ PixelGetColor,thiscolor,%x%,%y%, RGB
If (Thiscolor = color)
{ return 1
}
else
{ return 0
}
}
fnDoShoot(color,x,y)
{ If (GetKeyState("v","p"))
{ While ((GetKeyState("v","p")) && (fnCheckPixel(color,x,y)))
Click, %960%, %530%
Sleep, 100
}
}
xloc = 960 ;<- your coordinate(you can change it)
yloc = 554 ;<- your coordinate (you can change it)
return
$V::
Suspend, On
If (fnCheckPixel(color,xloc,yloc))
{ fnDoShoot(color,xloc,yloc)
}
Suspend, Off
return
fnCheckPixel(color, x, y)
{ PixelGetColor,thiscolor,%x%,%y%, RGB
If (Thiscolor = color)
{ return 1
}
else
{ return 0
}
}
fnDoShoot(color,x,y)
{ If (GetKeyState("v","p"))
{ While ((GetKeyState("v","p")) && (fnCheckPixel(color,x,y)))
Click, %960%, %530%
Sleep, 100
}
}
Thanks in advanced
- ReVamp
