Do that, and also, here I fixed it anyways. =]
SCAR Code:
program CatherbyCooker;
var
i: Integer;
s: string;
{.include SRL/SRL.Scar}
begin
SetUpSRL; // Don't forget. :]
OpenBank;
Withdraw(1, 1, 28);
if (FindSymbol(x, y, 'Cookery'))then
begin
Mouse(x, y, 4, 4, true);
FFlag(0); // Wait's until flag dissapears.
end;
if (FindObj(x, y, 'Test', Color, 10))then/
// Replace 'Test' with the range up text, you get when you
// hover your mouse over it.
// Using the color picker, grab the color of the range, and replace
// color. Leave 10, it's a good tolerance for the range. =]
begin
Mouse(x, y, 3, 3, false);
//?ChooseOption?
end;
end.