Results 1 to 4 of 4

Thread: Nooby Question

  1. #1
    Join Date
    Oct 2007
    Location
    uuuuuuuu
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Nooby Question

    Simple
    Code:
    program CoalPimp;
    
    procedure Walking;
    begin
    RadialWalk(7302775,260,200,70,xmod,ymod)
    end.

    Line 5: [Error] (5:1): Unknown identifier 'RadialWalk' in script

    I know its probalbly an easy fix but its been driving me nuts not knowing how to fix it.

    It has somthing to do with {Includes} right?

    And yes I have used the Search Tool.

  2. #2
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Here's the fixed script:

    SCAR Code:
    Program New;
    {.include SRL\SRL.scar}

    procedure Walking;
    begin
      RadialWalk(7302775,260,200,70,1,1);
    end;

    begin
      SetupSRL;
      ActivateClient;
      Walking;
    end.
    :-)

  3. #3
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    first you need to include srl he done that with {.include srl/srl.scar]^^ like he did
    and you need to activate it with setupsrl;

  4. #4
    Join Date
    Oct 2007
    Location
    uuuuuuuu
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you, I knew it was somthing little.

    Now the possibilities are endless.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Nooby question...
    By Drakan in forum OSR Help
    Replies: 17
    Last Post: 05-12-2008, 09:09 PM
  2. Really Nooby Question
    By Peterabott in forum OSR Help
    Replies: 2
    Last Post: 02-23-2008, 03:45 AM
  3. Dumb nooby question.
    By MeetmeDeath in forum OSR Help
    Replies: 2
    Last Post: 12-27-2006, 04:01 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
  •