Results 1 to 8 of 8

Thread: SRL has some errors...

  1. #1
    Join Date
    Dec 2006
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    SRL has some errors...

    Failed when compiling
    Line 136: [Error] (144:112): Unsatisfied Forward FIXCHAT in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Globals.scar

    I looked all over the Globals.scar script, there is no word "FIXCHAT" in the entire script.

    This is with the SRL 360b. I've installed it properly, haven't touched the script, didn't remove anything. How should I fix this.

  2. #2
    Join Date
    Oct 2006
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Never heard of that, Maybe try contacting Dankness, he might help you.

  3. #3
    Join Date
    Sep 2006
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Take a look in Text.scar.
    SCAR Code:
    procedure FixChat; forward;
    {*******************************************************************************
    function SaveToChatLog: Boolean;
    By: WT-Fakawi / masquerader
    Description: Saves chat to log file
    *******************************************************************************}


    procedure SaveToChatLog;
    begin
      FixChat;
      OldLine := TheLine;
      if (GetLastChatText(theline)) then
      begin
        if OldLine <> theLine then
        begin
          LastChatter(thename)
            WriteFileString(thefile, TheTime + ' ' + thename + ': ' + theline +
            Chr(13));
        //  writeln(thetime+' '+thename+': '+theline);
        end
      end else
      begin
        LastChatter(theline)
          if OldLine <> theLine then
        begin
          WriteFileString(thefile, TheTime + ' ' + theline + Chr(13));
      //    writeln(thetime+' '+theline);
        end
      end
    end;

    Don't know what the error means though...

  4. #4
    Join Date
    Feb 2006
    Location
    Myrtle Beach, SC USA!
    Posts
    841
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by uber jesus View Post
    Failed when compiling
    Line 136: [Error] (144:112): Unsatisfied Forward FIXCHAT in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Globals.scar

    I looked all over the Globals.scar script, there is no word "FIXCHAT" in the entire script.

    This is with the SRL 360b. I've installed it properly, haven't touched the script, didn't remove anything. How should I fix this.
    and the script u are running is?

  5. #5
    Join Date
    Dec 2006
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm running my auto-bow maker that I wrote, I wanted to {.include srl\srl.scar}, but when I tried to run it, it gave me that error, but now I have a new problem (the globals patch fixed the last problem)

    Failed when compiling
    Line 92: [Error] (100:32): Unknown identifier 'Banks' in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Globals.scar

    edit: I replaced Globals.scar in srl\core with GlobalStats.scar, back to square 1.

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

    Default

    May we see the script?

  7. #7
    Join Date
    Dec 2006
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    There is nothing in it, just a few empty procedures. I tried to see if it would work with srl included. There is a problem with my srl, i re-downloaded it, re-copied it, still got those errors.

    Ne ways... here is the script...

    ----------------------------------------------------------------------------

    program BowMaker;
    {.include srl\srl.scar}

    const
    TTR = 0; //Times to repeat

    procedure Bank;
    begin
    end;

    procedure DepositAll;
    begin
    end;

    procedure StartStringing;
    begin
    end;

    procedure ProgressReport;
    begin
    end;


    begin
    end.

  8. #8
    Join Date
    Feb 2006
    Location
    Under a rock.
    Posts
    1,351
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    SetupSRL; ?
    SRL Developer
    ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Errors.....
    By MrDeeds in forum OSR Help
    Replies: 3
    Last Post: 06-04-2007, 07:44 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
  •