hey what happend to ftflag and if its gone what was it repalced by and waht do i use instead of it to update my scripts
hey what happend to ftflag and if its gone what was it repalced by and waht do i use instead of it to update my scripts

FTFlag is gone because of the randoms update.. theres a thread about what's removed added..
http://www.villavu.com/forum/showthread.php?p=551724






FTFlag? Do you mean FTWait? FTWait was removed because FindTalk was removed. You can no longer get talking randoms so FindTalk was made redundant. If your scripts complain just replace FTWait() with Wait(). Remember though the parameter of FTWait is the number of multiples of 200 + Random(50) millisecs. So FTWait(2) will wait 400 + Random(100).
Or if you can't be bothered changing all your FTWait, copy this to your script.
SCAR Code:function FTWait(I: Integer): Boolean;
begin
Result := False;
Wait(I * 200 + Random(I * 50));
end;
There are currently 1 users browsing this thread. (0 members and 1 guests)