This will Goto Colors in an MS Paint drawing and erase them, or change then to a different color...
This is My First Script so I don't expect to get SRL- Scripter status or anything
because
#1 it's not SRL 
This Script does work pretty good though
SCAR Code:
{|/////////////////////////////////////////////////////////////////////|
/|/////////////////////////////////////////////////////////////////////|
/|////////////////////This Is My First Script//////////////////////////|
/|//////////////////////////By: FrOgY//////////////////////////////////|
/|/////////Draw a picture in Paint With Some Of These Colors///////////|
/|////////////Dark Blue, Dark Yellow, Red, Black, or White/////////////|
/|/////////Go To The Setup and Type the color you drew with////////////|
/|////////Assign Scar to the Paint Window, then run the Script/////////|
/|//The Script Will Erase or Draw Over all of the color you drew with//|
/|/////////////////////////////////////////////////////////////////////|
/|///////////////Make The Image At Least 10x10/////////////////////////|
/|///////Use The Large Brush Tool or Eraser not pencil/////////////////|
/|/////////////////////////////////////////////////////////////////////|
/|////Start the Mouse By where you want it to start on the picture/////|
/|//////////////////and use ctrl+alt+s to start////////////////////////|
/|/////////////////////////////////////////////////////////////////////|}
program New;
var x,y,w,h: integer;
const
blue = 16711680;
red = 255;
yellow = 65535;
black = 0;
white = 16777215;
// Setup Section
color= blue; //type One Of Above Colors Here
// End Of Setup
procedure ClickColor;
begin
FindColorSpiral(x,y,color,3,3,w-1,h-1);
MoveMouseSmooth(x,y);
ClickMouse(x,y,true);
end;
begin
GetClientDimensions(w,h);
GetMousePos(x,y);
repeat
ClickColor;
until(false)
end.
http://www.villu-reborn.com/showthre...3554#post33554 for more info