Results 1 to 2 of 2

Thread: in chat

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

    Default in chat

    ok is there anyway that thsi procedure

    Code:
     MarkTime(M);
                       repeat
                         wait(10);
                         Findrandoms;
                       until(InChat('manage')) or (TimeFromMark(M) > 10000);

    can jsut look on to the first line of the text box instead of the whole thing cause it jsut go crazy after 10 milliseconds

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

    Default

    do like..

    SCAR Code:
    repeat
      Wait(RandomRange(1, 100));
      Inc(i);
      if(i = RandomRange(50, 100))then
        FindRandoms;
    until(blahblah);

    might want to make the waits longer, or make i have to be bigger.. (this will only find randoms every few seconds..)

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
  •