Like this?
SCAR Code:
Procedure WalkToRuneShop;
Begin
RuneShopColour := 3361881;
if (FindSymbol(x, y, 'magic shop')) then
begin
Mouse(x, y, 5, 5, True);
Writeln('Found the magic shop symbol. Walking there now.');
end else
begin;
RadialWalk( RuneShopColour , 153, 200, 70, 0, 1);
Writeln('Walking to the rune room now.');
end;
end;
You must tell scar what part you want to do after the 'else' statement.
If you don't use begin & end. It will only do 1 line after the else statement.
When you indicate the part by begin & end. It does everything between begin & end x)