I'm haveing a little problem with the script im making. It isn't finding the bitmaps I made for the empty jug.
(It would be a lot easier if there where Crafting bitmaps...)
If you could help that would be great 
SCAR Code:
function FillJug : boolean;
var
jx,jy,sx,sy, FJTM : integer;
begin
if FindMSColor(sx,sy,9601144) then
begin
if FindBitMapToleranceIn(JugInv, jx, jy, MCX1, MCY1, MCX2, MCY2, 25) then
begin
UseItem(CoordsToInvSpot(jx,jy));
Wait(500);
Mouse(sx,sy,2,3,true);
MarkTime(FJTM);
repeat
if not LoggedIn then Exit;
if TimeFromMark(FJTM) > 15000 then Exit;
FindNormalRandoms;
FindFastRandoms;
Wait(1000);
until(FindBitMapToleranceIn(JugWater, x, y, MCX1, MCY1, MCX2, MCY2, 25))
if FindBitMapToleranceIn(JugWater, x, y, MCX1, MCY1, MCX2, MCY2, 25) then
begin
Writeln('Filled a jug.');
FreeBitmap(JugInv);
FreeBitmap(JugWater);
Result := True;
end else
begin
Writeln('Didn''t fill a jug.');
end;
end else
begin
Writeln('Couldn''t find the empty jug.');
Result := False;
NextPlayer(false)
end;
end else
begin
Writeln('Couldn''t find the sink.');
Result := False;
NextPlayer(false);
end;
end;
Once agin its not finding the Empty Jug! Thanks for the help 
~Stupedspam
Note this is pretty much the only thing in the way of the release...
Edit: Yes I know its *Problem...