Ok, i keep getting this error, can anyone tell me how to fix it please.
SCAR Code:
procedure Healing;
begin
repeat
GameTab(2);
if (HpPercent <= HpAmount) then
begin
WriteLn('You have low HP :( Time to heal ;D');
Wait(500+Random(100));
WriteLn('Looking for a Monk to BS Muwhahaha');
if ( FindMonk ) then//This is the error( I think :S), not the error line thru.
begin//This is the error line
Mouse(x,y,0,0,False);
ChooseOption(x,y,'lk-');
ClickToContinue;
ChooseOptionEx('heal');
TalkToRand;
Wait(500+Random(100));
DoAntiRandoms;
HealTime:= HealTime + 1;
until(HpPercent >= HpAmount);
end else
MonkSaftey;
end;
end;
Please help ;/
-Ashur