Results 1 to 3 of 3

Thread: what happened to ftflag

  1. #1
    Join Date
    Feb 2009
    Posts
    2,155
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default what happened to ftflag

    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

  2. #2
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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

  3. #3
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    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;

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •