ok, thanks, where would i go if i wanted to change some of them?
and now i have another problem.
SCAR Code:
program smith;
{.include srl/srl.scar}
var
x, y : Integer;
procedure GetIron;
begin
if(FindColorTolerance(x,y,2902109,171,139,201,162,10)) then
begin
Mouse(x,y,1,1,false);
y := y+70;
Mouse(x , y, 3, 3,True);
end else
end;
procedure WalkToSmelt;
begin
if(FindColorSpiral(x,y,5409966,643,113,699,126)) then
begin
Mouse(x,y,1,1,true);
end else
end;
begin
SetupSRL;
GetIron;
WalkToSmelt
end.
it will take out the iron, but i wont walk to the smelter.
**nvm, got it working**