Results 1 to 4 of 4

Thread: Yeah ummm whats wrong..

  1. #1
    Join Date
    Sep 2008
    Location
    Earth
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Yeah ummm whats wrong..

    Thanks!

  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    You never ended your procedure "Send". You need an end after Wait(WaitTime);

  3. #3
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program AutoTalker;
    {.include srl/srl.scar}

    const
      TheMessage = 'Hey everyone';
      Color = 'Green:';
      Effect = 'Wave2:';
      WaitTime = 5000;//Wait time in between messages
      TimesToSpam = 10;
    var
      a : Integer;
     
    procedure Send;
    begin
     TypeSend(Color + Effect + TheMessage);
     A := A + 1;
     Wait(WaitTime);
    end;

    begin
      SetupSRl;
      ActivateClient;
      repeat
        Send;
      until(A=TimesToSpam);
    end.

  4. #4
    Join Date
    Sep 2008
    Location
    Earth
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh rofl!! my bad sorry

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Whats wrong?
    By essex_jay in forum OSR Help
    Replies: 5
    Last Post: 02-22-2008, 06:35 PM
  2. whats wrong..
    By Maxine in forum OSR Help
    Replies: 6
    Last Post: 05-09-2007, 02:15 PM
  3. Replies: 8
    Last Post: 03-23-2007, 04:20 PM
  4. Can someone tell me whats wrong with this?
    By Hey321 in forum OSR Help
    Replies: 5
    Last Post: 12-17-2006, 09:49 PM

Posting Permissions

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