Just Though i'd help you out with some important errors that were made
SCAR Code:
Program PieRuner;
{.include SRL/SRL.scar}
//This Script Doesnt Need Anti-Randoms.
//<--- Will need randoms i think, as they appear just about everywhere
Procedure GetRunes;
begin
repeat
if FindColor(x,y,8414294,0,0,400,400)then
// After a If statement, if the result is more than one line long then a
//and end must be put around it such as here...
Begin
MMouse(x,y,1,1);
Wait(1000+random(500));
end;
until(IsUpText('agi'));
if(IsUpText('agi'))then
// Same again
begin
Mouse(x,y,1,1,false);
Wait(500+random(500));
ChooseOption(x,y,'aim');
end;
end;
Procedure GoOut;
begin
// This may need some checks such as get colors or find color spirals etc...
// just to check it has worked...
Mouse(642,486,5,5,true);
Wait(500+random(1000));
Mouse(636,378,5,5,true);
Wait(300000+random(2000));
end;
begin
SetupSRL;
// The begin and end here aren't needed
//begin
GetRunes;
GoOut;
//end;
end.