Results 1 to 16 of 16

Thread: Srl/srl.scar cannot be found

  1. #1
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Srl/srl.scar cannot be found

    Ok, So my problem is this:
    SCAR Code:
    Program new;
    {.Include srl/srl.scar}
    begin
    end.
    SCAR Code:
    [debug]
    Include file C:\Program Files\SCAR 3.15\includes\srl\srl.scar does not exist.
    Failed when compiling
    [/debug]
    Although its there, i've tried unistalling everything and reinstalling it still doesn't appear to work. Does anyone have any ideas?

  2. #2
    Join Date
    Feb 2009
    Location
    Hungary (GMT + 1)
    Posts
    1,774
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    that should be
    Code:
    Program new;
    {.Include SRL/SRL.scar}
    begin
    end.
    Its case sensitive.

    edit:mehh, no, I am realy tired srrym i wanted to be clever but I have prooved I am a noob thx for watcing
    Last edited by Sabzi; 03-29-2009 at 08:45 PM.

  3. #3
    Join Date
    Jan 2009
    Location
    Somewhere
    Posts
    240
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Check if it exists...

    Download srl if not.

  4. #4
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nope, still doesn't work. Thanks for trying.

  5. #5
    Join Date
    Feb 2007
    Location
    Estonia.
    Posts
    1,938
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Does it exist in your scar folder as Colluci said?
    ~Eerik~

  6. #6
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


    its there....

  7. #7
    Join Date
    Jan 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pascal is not case sensitive, either your doing something wrong or the place your downloading from is corrupted. Also, if you have two different scars in different locations(Like i do, one on my hard drive and one on my SD card) you must make sure your running the right SCAR, cause it will only look unter its include, not the other one(if that made any sense).

    EDIT: By the way, that pic doesnt show SRL/SRL.scar
    Last edited by superbatman; 03-29-2009 at 08:50 PM.

  8. #8
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I only have one scar, and its one of the only programs on my computer atm because I just reformated my hardddrive the day, so I thought I might as well get scar back on because I wanted to finish up my Auto Alcher.

    Ok: After some exploring apparntly it isn't there...It is when I go there from scar. But when I actually go into my harddrive its not there. So I tried to do the checkout thing again and its still not there...Any ideas?
    Last edited by All that is man; 03-29-2009 at 08:54 PM.

  9. #9
    Join Date
    Jan 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, the pic you posted doesnt show SRL/SRL.scar, which is a .scar file, it shows the folder SRL/SRL/Core/. SRL/SRL.scar should be in the INCLUDES/SRL/ folder. Make sure it is there.

  10. #10
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It is but
    Ok: After some exploring apparntly it isn't there...It is when I go there from scar. But when I actually go into my harddrive its not there. So I tried to do the checkout thing again and its still not there...Any ideas?

  11. #11
    Join Date
    Jan 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here it is. Add it to the INCLUDES/SRL/ folder

    SCAR Code:
    //----------------------------------------------------------------------------//
    //--                    Scar Standard Resource Library                      --//
    //----------------------------------------------------------------------------//
    //-- by: Azeroth, Bebe, BenLand100, benleegt, Boreas, c0de,                 --//
    //--   Cheesehunk, dakota, Dankness, driger1592, Flyboy, Freddy1990,        --//
    //--   Hobbit, inferno, Kernel Klink, Knightstreak, Krazy_Meerkat,          --//
    //--   Krichevskoy, Liquid, Lorax, Mad Cow, Markus, masquerader,            --//
    //--   mastaraymond, moparisthebest, Mutant Squirrle, n3ss3s nielsie95,     --//
    //--   phantombmx, pups, Pyro, RAM, realrune, Renax, Ron, RsN,              --//
    //--   SKy Scripter, solemn wishes, Spky, SRL, Starblaster100, S            --//
    //--   tupid3ooo, Sumilion, tarajunky, The Claw, The_Rs_Monkey, Zephyrsfury --//
    //--   Wizzup?, WT-Fakawi, XxKanexX, Yakman, YoHoJo, _ChArMz,               --//
    //--                                                                        --//
    //--                                ....... and the SRL Community.          --//
    //----------------------------------------------------------------------------//


    //----------------------------------------------------------------------------//
    // --                        SRL Level 1 Includes                           --//
    // --                                                                       --//
    // --   Low Level SCAR Math, Mouse Movement and Color Clicking routines.    --//
    //----------------------------------------------------------------------------//

    {.include SRL/SRL/Core/Globals.scar}
    {.include SRL/SRL/Core/Math.scar}
    {.include SRL/SRL/Core/Mouse.scar}
    {.include SRL/SRL/Core/Color.scar}
    {.include SRL/SRL/Core/Players.scar}
    {.include SRL/SRL/Core/Overwrite.scar}

    //----------------------------------------------------------------------------//
    // --                        SRL Level 2 Includes                           --//
    // --                                                                       --//
    // --                 Interface, Object and OCR routines.                   --//
    //----------------------------------------------------------------------------//

    {.include SRL/SRL/Core/Timing.scar}
    {.include SRL/SRL/Core/GameTab.scar}
    {.include SRL/SRL/Core/SRLLog.scar}
    {.include SRL/SRL/Core/Text.scar}
    {.include SRL/SRL/Core/Inventory.scar}
    {.include SRL/SRL/Core/Object.scar}

    //----------------------------------------------------------------------------//
    // --                        SRL Level 3 Includes                           --//
    // --                                                                       --//
    // --      MapWalking, AntiRandoms, Bank, Symbol and many more...           --//
    //----------------------------------------------------------------------------//

    {.include SRL/SRL/Misc/Bitmaps.scar}
    {.include SRL/SRL/Core/FlagChat.scar}
    {.include SRL/SRL/Core/Login.scar}
    {.include SRL/SRL/Core/Mapwalk.scar}
    {.include SRL/SRL/Core/Bank.scar}
    {.include SRL/SRL/Core/Symbol.scar}
    {.include SRL/SRL/Core/RC.scar}
    {.include SRL/SRL/Core/AutoColor.scar}
    {.include SRL/SRL/Core/AntiRandoms/Common.scar}
    {.include SRL/SRL/Core/Globalstats.scar}
    {.include SRL/SRL/Core/CAutoRespond.scar}
    {.include SRL/SRL/Core/AntiRandoms/Box.scar}
    {.include SRL/SRL/Core/AntiRandoms/Certer.scar}
    {.include SRL/SRL/Core/AntiRandoms/Demon.scar}
    {.include SRL/SRL/Core/AntiRandoms/Forester.scar}
    {.include SRL/SRL/Core/AntiRandoms/Quiz.scar}
    {.include SRL/SRL/Core/AntiRandoms/Sandwich.scar}
    {.include SRL/SRL/Core/AntiRandoms/EvilBob.scar}
    {.include SRL/SRL/Core/AntiRandoms/Leo.scar}
    {.include SRL/SRL/Core/AntiRandoms/Frog.scar}
    {.include SRL/SRL/Core/AntiRandoms/ChatRandoms.scar}
    {.include SRL/SRL/Core/AntiRandoms/Molly.scar}
    {.include SRL/SRL/Core/AntiRandoms/Pillory.scar}
    {.include SRL/SRL/Core/Antirandoms/Pinball.scar}
    {.include SRL/SRL/Core/Antirandoms/Maze.scar}
    {.include SRL/SRL/Core/AntiRandoms/AntiRandoms.scar}
    {.include SRL/SRL/Core/AntiBan.scar}
    {.include SRL/SRL/Core/Amount.scar}

    {*******************************************************************************
    procedure  SetupSRL;
    by: SRL Dev Team
    Description: Sets up all variables needed to run SRL.
    *******************************************************************************}


    procedure SetupSRL;
    begin
      MouseSpeed := 15;
      CheckHPFirst := True;
      Reincarnate := False;
      TalkAfterRandoms := False;
      RoadColor := 0;
      WaterColor := 0;
      BankColor := 0;
      LampSkill := 'mining';
      SetUpSRLReport;
      LoadCosineArrays;
      SymbolAccuracy:= 0.8;
      LoadNPCArray;
      LoadSRLBitMaps;
      SolveChatRandoms := True;
      SetupSRLAutoResponder;
      UseFindMod := True;
      LogoutOnMod := True;
      UseFindTrade := True;
      Screenshots := False;
      InitializeSRLLogFile;
      Writeln ('SRL Compiled in '+  IntToStr(GetTimeRunning) + ' msec');
    end;

  12. #12
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Run Scar as admin. Right click and choose run as administrator.

    Your welcome
    I do visit every 2-6 months

  13. #13
    Join Date
    Jan 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by zasz View Post
    Run Scar as admin. Right click and choose run as administrator.

    Your welcome

    You dont need to run SCAR as admin to get to the SRL folder.....

    Besides, hes saying he doesnt have the file, how would running the script as admin help if the file doesnt exist?

  14. #14
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by superbatman View Post
    You dont need to run SCAR as admin to get to the SRL folder.....

    Besides, hes saying he doesnt have the file, how would running the script as admin help if the file doesnt exist?
    It does exist. For some reason on vista, running scar as an admin and downloading scar files is different then running without. Its complicated.

    Don't flame unless your 100% positive im wrong.
    I do visit every 2-6 months

  15. #15
    Join Date
    Mar 2009
    Location
    Georgia
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have the same problem someone plz help!
    Legends.... never die.

  16. #16
    Join Date
    Mar 2009
    Location
    Illinois
    Posts
    292
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by zasz View Post
    Run Scar as admin. Right click and choose run as administrator.

    Your welcome
    Your a beast =D rep+

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
  •