i doubt his method would be very copy paste friendly for editing your own bots with lol, i read somewhere his does something like 120 pixel searches? o.o
however he managed all that though is amazing to me, he is a super scriptor rofl.
the pixel detection is pretty easy and straight forward, you can even make a very simple autoit script to find pixels for you
WinWaitActive ("Vindictus");
Sleep (10000)
$pos = MouseGetPos()
$var = PixelGetColor( $pos[0] , $pos[1] )
MsgBox(0,"The decimal color is", $var)
MsgBox(0,"The hex color is", Hex($var, 6))
for instance is a pixel colour getter. my problem is i dont know how to loop anything properly so that it does such and such and if it finds this then it does this, if not then continue the script etc. I will eventually read up on it when the gameui errors piss me off enough lol
Edit: for completions sake here is the pixel position getter script as well
WinWaitActive ("Vindictus");
Sleep (5000)
$pos = MouseGetPos()
MsgBox(0, "Mouse x,y:", $pos[0] & "," & $pos[1])