Page 1 of 12 12311 ... LastLast
Results 1 to 25 of 284

Thread: Setting up Scar So you can Auto Properly

  1. #1
    Join Date
    Feb 2006
    Location
    London, England
    Posts
    2,045
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default Setting up Scar So you can Auto Properly

    - Setting up Scar So you can Auto Properly -




    Make sure you have downloaded the include Files

    These are commands which scripters have written to help other scripters make their script easier, and if you dont have one of the includes, error messages will come up and your script wont start.

    Code:
    Include file C:...SCAR 2.03includesSRL.scar does not exist.
    Failed when compiling
    If you have not installed Scar + SRL (properly) then read THIS tutorial.


    Turning off Silent Mouse

    Silent mouse was originally used in RSC so that you could auto and do other things on the computer at the same time. Unfortunately, Jagex caught on and so now Silent mouse has to be turned off for you to be able to auto. This means your mouse will be controlled by scar and you wont be able to do anything else whilst the script is running.
    Silent Mouse is off by default, but you should check just in case.
    In Scar, hit 'Tools' and make sure the first option 'Silent Mouse' is Unticked



    Dragging crosshair onto the Runescape Window

    This is so Scar knows the boundaries of the RuneScape screen so that you can auto properly.
    • Drag this symbol : : onto the runescape screen.
    • You must drag the symbol every time you open up scar, or change world!
    • A huge box will appear around the Selected Client and shrink to fit it. A new message will appear on the debug box saying:
    Code:
    'User specified a new RS window'
    • If the message comes up, but the box doesn't, drag the crosshair again and repeat until the message and shrinking box both appear.




    Picking Colors

    This is so scar knows what colors to click and what colors to look for in RuneScape, so the script functions properly. This is a very important step and must be done properly. You must do it yourself, because each time you log onto runescape, the colors change slightly. No one else can do this for you. If you change worlds, you must repick all of the colors asked for. There are 2 ways in which a script will tell you which colors to pick.


    'Const' Colors

    Code:
    banksymbol = 5825779;   //Green part of $ sign
    yewtree = 1282831;      //middle of yew tree on minimap
    roadcolor = 5921634;    //road color on minimap
    Under the word 'Const' in the script is a list of all the colors you need to pick. The writing to the right of the numbers (e.g '//middle of yew tree on minimap') describes what color you need to pick.
    To pick the color asked for, login to runescape, and go next to the color which the script asks you for.
    ]With both Scar and Runescape visible, click this Symbol in Scar : : and your screen will freeze.
    Click the color asked for and a new message wil appear in the debug box:

    Code:
    Color Picked: 16777215 at (214, 203)
    The numbers will always be different, so dont worry if you didn't get the same numbers as me.
    Copy the long number using Ctrl + c and paste it over the existing color under 'Const'.
    Repeat this for all the colors asked for and you will setup all of the colors.
    An example of the colors setup after selecting all of the colors would be

    Code:
    banksymbol = 3047422;   //Green part of $ sign
    yewtree = 16777215;      //middle of yew tree on minimap
    roadcolor = 262913;    //road color on minimap
    Remember, the above are just examples!



    'Form' Colors

    This is an example of a form asking for colors.



    It works in basically the same way as the 'Const' colors, except you have to type in the colors asked for since you can't copy and paste. The other different is you wont be able to select the color picking tool, you will have to press the shortcut Ctrl + Alt + P to activate it. Fill in the form and the colors will be saved.



    No Colors!

    If you are lucky, you may be using a script which has autocolor in it! This means that the scripter has made the script choose its own colors, and you dont have to do anything. Just skip this step and run the script!



    Other Setup

    Other setup is required so that the script knows what to do incase something 'irregular' happens, such as you log out by accident, you get a lamp for a genie, you are attacked etc.

    Code:
    TheLampskill = 'prayer';//Skill to use lamp on if found
    RunDirection = 'N';     //Direction to run away in
    UsingTiera = True;      //Are you using a Tiera?
    esslimit = 1000;        //Number of Essence you have in bank
    The different types of options you have to setup are as follows:
    • String - This is a word which you type in. The word Must be surrounded by quote marks (' ')
    • Boolean - This means 'true' or 'false' No quote marks here
    • Integer - This is a number. again no quote marks.

    Again the writing to the right informs you about what you have to set.
    The first one in my example is the skill to use the lamp on if youfind one in your inventory. Type in the skill you want to use lamps on.
    Next is the run direction you want to run away in if you are being attacked. Type in 'N', 'E', 'S' or 'W'
    This comes from my air crafter script, and so you have to tell the script if you are wearing a tiera or using a tally. If you are wearing one, type in true and if not, type in false.
    The Ess limit is how much essence you have in your bank. Type in the number of essence you have so the script knows when to stop.
    An example of my setup:

    Code:
    TheLampskill = 'Mining';//Skill to use lamp on if found
    RunDirection = 'E';     //Direction to run away in
    UsingTiera = False;      //Are you using a Tiera?
    esslimit = 587;        //Number of Essence you have in bank
    This could again be written in a form, but thats easy to fill in and its basically the same thing as above.
    Note - Scar Scripts cannot steal your Username or Password, so it is OK to fill it out into a script. Just make sure you delete it before sending the script to anyone!
    Make sure you fill out any other setup the script asks for, like standing in a specific place, having something in your invenotry etc.



    Starting, Stopping and Pausing the Script

    This is so the script can run and stop when you tell it to.
    Make sure scar is completely setup by following the instructions above.
    • Hit the green arrow the run the script
    • Hit the Yellow / Orange double lines to pause the script
    • Hit the Red square to stop the script

    Alternatively, use these shortcut keys:
    • Start: Ctrl + Alt + R
    • Pause: Ctrl + Alt + A - Note, to start the script again after pausing, hit the shortcut for 'Start'
    • Stop: Ctrl + Alt + S




    And thats it! Thats everything you need to setup SCAR. If you need anymore help, just ask.

    Hope that Helps

    Starblaster100
    SRL Wiki | SRL Rules | SRL Stats
    Ultimate SCAR Scripting Tutorial | Starblaster100's Auth System | Join the official SRL IRC now!


    Help Keep SRL Alive! Please disable Advert Blockers on SRL! Help Keep SRL Alive!


  2. #2
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    Vey well done. Nice background info. Valuable.
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  3. #3
    Join Date
    Mar 2006
    Location
    Igloo #201702,Canada
    Posts
    188
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very good tutorial for beginers, well done


    ^ My next tutorial will teach you how to make this ^

  4. #4
    Join Date
    Feb 2006
    Posts
    328
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow this owns soo bad, sticky it. I know I have no power but I vote to sticky it

    Wtf is with this popup?

  5. #5
    Join Date
    Feb 2006
    Location
    Australia, NSW.
    Posts
    1,461
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by I remember first post=p
    Wow this owns soo bad, sticky it. I know I have no power but I vote to sticky it
    I agree.

    -Chants- Sticky!

  6. #6
    Join Date
    Mar 2006
    Location
    Northern Kentucky
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    /Bump
    /Sticky

  7. #7
    Join Date
    Feb 2006
    Posts
    406
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good information, very useful

    stickied, lol

    (i'm a mod now )

  8. #8
    Join Date
    Mar 2006
    Posts
    509
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm very nice maybe i can get you some attention on sythe.org if you post it over there *god knows those noobs need all the help they can get*

  9. #9
    Join Date
    Feb 2006
    Location
    London, England
    Posts
    2,045
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default

    Congrats on mod dude, and sure thing Mutant
    SRL Wiki | SRL Rules | SRL Stats
    Ultimate SCAR Scripting Tutorial | Starblaster100's Auth System | Join the official SRL IRC now!


    Help Keep SRL Alive! Please disable Advert Blockers on SRL! Help Keep SRL Alive!


  10. #10
    Join Date
    Feb 2006
    Posts
    328
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Mutant Squirrle
    hmm very nice maybe i can get you some attention on sythe.org if you post it over there *god knows those noobs need all the help they can get*
    Sythe, much like Kaitnieks after the sudden Aryan boom, has a constant flood of noobs. Actually leechers. But for some reason Fakawi Ok-ed it to be mass flooded, does he want noobs? XD

    Wtf is with this popup?

  11. #11
    Join Date
    Mar 2006
    Location
    USA
    Posts
    948
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    For all you people out there who like shortcuts...when you color pick the color is automaticly copied to clipboard.

  12. #12
    Join Date
    Jun 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good info helped me alot

  13. #13
    Join Date
    May 2006
    Posts
    120
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    wasent there a pacific setting your screen's color had to be set???

  14. #14
    Join Date
    Feb 2006
    Location
    London, England
    Posts
    2,045
    Mentioned
    2 Post(s)
    Quoted
    0 Post(s)

    Default

    32 Bit True Color
    SRL Wiki | SRL Rules | SRL Stats
    Ultimate SCAR Scripting Tutorial | Starblaster100's Auth System | Join the official SRL IRC now!


    Help Keep SRL Alive! Please disable Advert Blockers on SRL! Help Keep SRL Alive!


  15. #15
    Join Date
    May 2006
    Posts
    120
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    thanks

  16. #16
    Join Date
    Jun 2006
    Location
    United Kingdom
    Posts
    116
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    very helpful, i now can work scripts properly, its time to learn how to script them
    Thanks

  17. #17
    Join Date
    Jun 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    help i've dowloaded the includes and stuff i've also dowloaded SRL pack and plugned them.

    this is the error.

    Include file C:\Program Files\SCAR 2.03\includes\SRL/SRL.scar does not exist.
    Failed when compiling

    plz help

  18. #18
    Join Date
    Mar 2006
    Posts
    549
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Extract to... SCAR 2.03, and Click includes, dont make it collapse. And click OK. There u go.

  19. #19
    Join Date
    Sep 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    2 words u own

  20. #20
    Join Date
    Oct 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So i think i understand now, you download the script, then you type in everything it wants, then you double click it to make it run?

  21. #21
    Join Date
    Oct 2006
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok how do u get to the screen with the colers.I never ran a auto before alwways"failed compiling and stuff like that".plz help.

  22. #22
    Join Date
    Oct 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I know what to do mostly, but i need to know what to download to run the scripts, i have scar and SRL, so yeah.. btw

    This is like my 3rd post.. just posting it a bit more to maybe increase the rate of reply

    Edit: Im also a fast learner , so dont think im some stupid noob who will never learn how to use it.

    1. Where do i put the scripts at.
    2. What program do i use to run them.
    3. What do i do if i get an error?

  23. #23
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    1. SCAR-if you don't know what this is you're on the wrong forum
    2. SCAR-if you don't know what this is you're on the wrong forum
    3. Play legitly

  24. #24
    Join Date
    Oct 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    2nd time ( lol )

    Where do i get this.

  25. #25
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

Page 1 of 12 12311 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How To Auto Properly For Dummies
    By Kingofptw in forum Outdated Tutorials
    Replies: 175
    Last Post: 03-09-2009, 08:29 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
  •