ok so im trying to add marktime into my powerchopping procedure and just when i think ive figured it out...Line 97: [Error] (17764:32): Type mismatch in script C:\Program Files\SCAR 2.03\Scripts\gerauchertWcer.scar
sooo ill post the code that its affecting and see what you can make of it
SCAR Code:
procedure Chop;
var WaitTime: Integer;
begin
SetRun(True);
GameTab(4);
Wait(500 + random(250));
if(FindColorTolerance(x,y,TreeColor,MSX1,MSY1,MSX2,MSY2,3))then
begin
repeat
MMouse(x,y,2,1);
if IsUpText('illow') then
Mouse(x,y,3,3,False)
ChooseOption(x,y,'hop');
MarkTime(WaitTime);
while (MarkTime(WaitTime)< 5000) do //THIS IS LINE 97!!!! <<<<<<-----
begin
If(FindEnt(TreeColor)) or (FindFastRandoms)then break;
case Random(12) of
2: MouseBox(MSX1, MSY1,MSX2, MSY2, 3);
4: PickUpMouse;
6: BoredHuman;
8: HoverSkill('Random', False);
10: RandomRClick;
12: AlmostLogOut;
until(InvFull);
end;
end;
end;