Just add this somewhere at the top of you script and put find fastrandoms where ever you need it to check for randoms...also you can put findnormalrandoms...
*Note* This was made By WT-Fakawi
SCAR Code:
//------------------------------------------------------------------------\\
{ FindFastRandoms - By WT-Fakawi. ||
\\------------------------------------------------------------------------//}
function FindFastRandoms: Boolean;
var
i: Integer;
begin
for i:=1 to 9 do
begin
case I of
1: If FindDead then
Result := True;
2: If FindMod then
Result := True;
3: If FindMime then
Result := True;
4: If FindMaze then
Result := True;
5: If FindQuiz then
Result := True;
6: If FindDemon then
Result := True;
7: If NoGameTab then
Result := True;
8: If InBlack then
Result := True;
9: If FindTalk then
Result := True;
end;
wait(1);
end;
end;
Hope this helps!