Results 1 to 6 of 6

Thread: Help! SRL/Scar doesnt work.

  1. #1
    Join Date
    Mar 2007
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help! SRL/Scar doesnt work.

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

    var x,y : integer;
    procedure BankSymbol;
    begin
         If (FindSymbol(x, y, 'bank')) then
          begin
            Mouse(658, 56, 5, 5, true);
            FFlag(3);
          end;
          end;

    begin
    ActivateClient;
    BankSymbol;
    end.

    When I run this I just get this error message, and nothing happens (I need it to click the bank symbol).

    Code:
    Successfully compiled (3348 ms)
    ** Warning in GetSymbolColorIn: bank is not a valid name.**
    Successfully executed
    Help!

  2. #2
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Try this:

    SCAR Code:
    program New;
    {.include srl/srl.scar}
     
    var x,y : integer;
    procedure BankSymbol;
    begin
         If (FindSymbol(x, y, 'bank')) then
          begin
            Mouse(x,y, 5, 5, true);
            FFlag(3);
          end;
          end;
     
    begin
    ActivateClient;
    BankSymbol;
    end.

    Thats mainly what you need to do. x,y must be used in mouse as it is the variables in which bank is stored in.

    Hope I Helped

  3. #3
    Join Date
    Mar 2007
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    Successfully compiled (3421 ms)
    ** Warning in GetSymbolColorIn: bank is not a valid name.**
    Successfully executed
    Still doesnt work

  4. #4
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Are you using the Revision Version.

    Try re-installing it all again

    Hope I Helped

  5. #5
    Join Date
    Mar 2007
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry, but I don't get how to install revision . I've tried searching, but I can't really understand how..?

    I just used the update srl button on scar, and it still happens.

    I also keep on getting a 'File Access Error'

  6. #6
    Join Date
    Mar 2008
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 3d-render View Post
    Sorry, but I don't get how to install revision . I've tried searching, but I can't really understand how..?

    I just used the update srl button on scar, and it still happens.

    I also keep on getting a 'File Access Error'
    Get subversion, search it on the forums and you can update to a specific revision.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Why doesnt this work?
    By Tim0suprem0 in forum OSR Help
    Replies: 38
    Last Post: 07-03-2007, 09:40 PM
  2. A function doesnt work in new version of scar
    By fastler in forum OSR Help
    Replies: 3
    Last Post: 04-27-2007, 03:02 PM
  3. Replies: 33
    Last Post: 04-04-2007, 01:20 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
  •