I don't know why they aren't working, but they just aren't. I never had a problem with them before. I will post the procedure I am making and point out where it is, maybe I'm doing something wrong? Oh well, here it is, and if you see anything I'm doing wrong or something I can do to fix it to work, please let me know.
SCAR Code:
procedure SmeltBars;
begin
if not (LoggedIn) then Exit;
case Players[CurrentPlayer].integers[0] of
0: begin
MouseBox(32, 388, 74, 430, False);
Wait(100 + random(100));
if (IsUpText('ronze')) then
begin
Mouse(x, y, 2, 2, false);
Wait(25+random(25));
ChooseOption('X'); //<--------------- There's ChooseOption
Wait(300+random(200));
TypeSend('14');
end else
WriteLn('Bronze Bar was not found!');
end;
end;
end;