My script was doing things too fast so I looked whats wrong and found this:
Isn't this just waiting approx 0.25 seks not 1 sek?SCAR Code:procedure FTWait(Time: Integer);
By: WT-Fakawi
Description: Performs Wait and FindTalk. Time is multiple of 250 msec, so FTWait(4)
waits approx 1 sec and performs 4 FindTalks;
function FTWait(Time: Integer): Boolean;
var
t: Integer;
begin
for T := 1 to Time do
begin
Wait(200 + Random(50));
if FindTalk then
Result := True;
end;
end;
Should it be:SCAR Code:for T := 4 to Time do





Reply With Quote




