New to SCAR? Read here.

Discussion in 'Scar/Simba General Discussion' started by Gofez0r, Mar 26, 2007.

New to SCAR? Read here.
  1. Unread #1 - Mar 26, 2007 at 9:16 AM
  2. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    New to SCAR? Read here.

    EDIT: Move this if this isnt the correct section (just noticed that this is the general discussion, stupid me)

    Alright.. What is SCAR? U most likely already know its a color macro for a certain game (Runescape) but works for pretty much any games unless they have some weird security systems that wont allow SCAR to find/pick colors... But runescapes security is crap so we can forget about that right?

    This guide will be updated when im bored again. Took about 15 mins to make.

    Why did i make this guide?

    .. I was just bored. I hope this helps atleast someone. The SCAR scripting guide will come out soon too (ill edit it to this one.)

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

    The chapters of this guide:

    1. Setting up SCAR.

    2. Downloading/Installing includes.

    3. Setting up scripts and running them.

    4. What kind of scripts to use.

    5. Making your own scripts (coming soon)

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

    1. Setting up SCAR.

    Now this part should be easy to anyone, atleast i think.

    First go to www.dylock.net/scar/ to download SCAR (this is the official link, if downloaded from other places SCAR can contain viruses/keyloggers or other crap.) Then just choose one of the links.

    The options are:

    Setup.Exe -Just the setup, not archived.

    Archive File(zip) -Archived in a zip file. Required winrar or winzip to extract

    Archive File(rar) -Same as above but requires winrar (www.rarlabs.com)

    Then download the setup and extract it (if archived) and double click the setup.

    A window should pop up and then just follow the instructions to install SCAR (i personally installed it in program files but its up to u).

    Now go to the location where u choosed to install SCAR and there should be a folder SCAR 2.03. If there is a folder called this then u have successfully installed SCAR, congratulations.


    2. Downloading/Installing includes.

    Now this part is tricky for some people (the SRL part).

    First open SCAR. A window should pop up (if you are using SCAR for the first time or u havent disabled it).

    Click "File" and there should be options such as "New" "Open" and so on.

    Click the option "Download Includes" under "Save as..."

    Note: Make sure ur firewall allows SCAR to connect to web.

    A window should pop up with a list of the includes. I suggest u just choose to download all of them.

    Wait for a while and there should come text about the progress at downloading the includes in SCARs debug window.


    SRL

    What is SRL?

    SRL is "SCAR Resources Library". Basically a advanced include made by many great scripters.

    Why do i need SRL?

    SRL is currently the only include (i think) that has working antirandoms. Also in most includes many things such as compass finding is outdated (Jagex has changed the compass and the includes havent been updated). Also most of the scripts are currently made using SRL, atleast runescape scripts so its also easier to get working scripts.

    Where can i get SRL?

    www.SRL-Forums.com

    Choose "Forums" and register. The download link is very visible at the site, and theres also a small public forum.. The full site is visible for SRL members only, to get to be a SRL member u need to be able to make a decent script, if u dont have any clue about scripting, dont even try.. Learn SCAR first.

    Installing SRL.

    This is sort of tricky for some people.. Ive got alot of pms and people talking to me on msn about how its "confusing" and "impossible" but its actually simple.. I think the file is .rar so u most likely need to get winrar to extract it ( www.rarlabs.com )

    Theres alot of guides about this, but its easiest to just cut and paste the SRL file in ur SCAR folder and choose extract here. Should work after that.

    Its easy to test if SRL is installed right by trying to compile this script:

    Code:
    program New;
    {.Include SRL/SRL.scar}
    
    begin
    SetUpSRL;
    end.
    
    If u get some errors, i suggest reading other tutorials about this.


    3. Setting up scripts and running them

    This should be easy to do.

    First open the script. This can be done by either doubleclicking a .scar file, or copying/pasting the script straight to the SCAR window (i suggest saving the script if done that way). Then read about the script (there should usually be comments above the code.) the instructions are in green (commented) and the spot to start and what to have with u etc. are usually explained there.

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

    Dragging the crosshair to the window:

    Why do i need to do this?

    This is done so SCAR focuses in the client window. For example if ur looking for color "5849128" in the RS screen if u wouldnt drag the crosshair it would most likely search the whole screen (or just a part of it.. For example area 0,0,500,500 would be checked from the top of ur monitor, not runescape client).. Always remember to do this.

    Heres a guide about it:

    [​IMG]

    Picture explains it well enough.

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

    Picking colors:

    Just click the color picker (should be familiar from paint :p) and move your mouse around. You should see the color under the mouse in a square next to the coordinates and the color code. Then just click where u want to pick the color from and there should come text in the debug box such as:

    Code:
    Color Picked: 16777215 at (790, 433)
    
    Then just press ctrl+V to paste the color in SCAR to the correct place.

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

    Where is the setup at?

    Should be clearly visible, but if its not then just search for the word "const" most likely in the beginning of the script. Const comes from constant (or some other similar word :p) Theres usually 3 types of things in the setup.

    Booleans: Either true or false, very simple.

    Strings: Theyre in '' always and the text is pink (unless u have changed it) such as 'cookies';

    Numbers: U should get the point ;) Just numbers. Such as Loads = 10; Colors also count to these.

    Simple enough isnt it :)

    Things to remember:

    Dont remove the ; after the line when filling setups.

    Such as:

    Loads = 10; //Amount of loads to do?
    Color = 8245845; //the color
    Name = 'Gofez0rOwnsUrAss';//so true
    Eat = true;//Eat?

    .. Dont fill it like:

    Loads = 10 //Amount of loads to do?
    Color = 8245845 //the color
    Name = 'sumthen 1337' //Fail
    Eat = false //eat

    cause then SCAR will give errors about the ; marks.

    I hope u understand most of this now..

    NEW: Filling SRL Player arrays: (Already added something :p)

    From Wizzup?'s SRL Varrock east miner.. Added some comments there.

    NOTE: Theres a const for current player in this script, but if there isnt then put the number of the player (the number in Players[TheNumberIsHere]) in there.

    Code:
    procedure DeclarePlayers;
    begin
         HowManyPlayers:= 4;                 // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);    // Sets the Players Array Length;
         CurrentPlayer:= StartPlayer;        // CurrentPlayer = Array Index
    
         Players[0].Name :=''; //These can be understood easily, they just need to be strings (pink text)
         Players[0].Pass :='';
         Players[0].Nick :='';
         Players[0].Loc  :='Varrock'; //Location of player, not usually any need to edit.
         Players[0].Skill:='Tin';  // Type of Ore you wish to mine.
                                   // Valid arguments: Copper, Tin, or Iron
                                   // Make sure the first letter of the ore is
                                   // capitalized.
                                   // U should be careful with these.. For example if u type coper there it wont work.. And u get errors and yell at the scripter and u get called stupid..
         Players[0].Active:=True;//Is the account active?
    
         WriteLn(IntToStr(HowManyPlayers) + ' Players');
    end;
    
    Now that looks alright but theres a error there..

    Code:
         HowManyPlayers:= 4;                 // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);    // Sets the Players Array Length;
         CurrentPlayer:= StartPlayer;        // CurrentPlayer = Array Index
    
    And then look at the amount of the arrays.

    This is a common mistake leading to "Out of range in line" error, which ive seen posted about TONS of times.

    So if u want to use only 1 account make sure HowManyPlayer is at 1. If u use 10 then make it 10. But u need to add a array to each of them.. Very easy and i think u should already get it.

    Code:
    procedure DeclarePlayers;
    begin
         HowManyPlayers:= 2;                 // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);    // Sets the Players Array Length;
         CurrentPlayer:= StartPlayer;        // CurrentPlayer = Array Index
    
         Players[0].Name :='';
         Players[0].Pass :='';
         Players[0].Nick :='';
         Players[0].Loc  :='Varrock';
         Players[0].Skill:='Tin';  // Type of Ore you wish to mine.
                                   // Valid arguments: Copper, Tin, or Iron
                                   // Make sure the first letter of the ore is
                                   // capitalized.
         Players[0].Active:=True;
    
         Players[1].Name :='';
         Players[1].Pass :='';
         Players[1].Nick :='';
         Players[1].Loc  :='Varrock';
         Players[1].Skill:='Iron';
         Players[1].Active:=True;
    
         WriteLn(IntToStr(HowManyPlayers) + ' Players');
    end;
    
    Very simple math.. Easy to just copy and paste more arrays and add to the numbers [0]'s to [1]'s and so on and so on. After u get this its easy to use scripts (this is most likely the most common error after "Include file does not exist."


    4. What kind of scripts to use?

    I highly recommend SRL scripts. www.SRL-Forums.com is a good source of scripts, just because most of the scripters rather release their work there than here (some people release in both).

    When thinking of using the script or just looking around it to see how its done to either learn something or if ur just curious look for these

    Code:
    clickmouse
    movemouse
    movemousesmooth
    movemousesmoothex
    
    Let me know if i missed any of these horrible bannage things.

    Those are same as if ur looking to get banned, and many old and outdated scripts use these.

    How do i know if the scripter know what hes doing?

    Its quite easy to find respected scripters. Usually SRL devs/admins such as Sumilion, Lorax, Wizzup? (theres been lots of posts at script requests of hes essminer, how can u not find it?), WT-Fakawi and so on..


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

    A list of scripts i recommend (ill remove if u dont like me telling u have made a good script):

    Sumilions guildminer (havent used much but hasnt broken any pics or got me killed) but it costs money.

    StarBlaster100's essminer (well duh, its StarBlaster.. Even if he refuses to contact me to sell it, im convinced its good) costs money.

    [SL] PSWW (port sarim willow whacker) Verry nice, even if i did some editing to it (i will never train my macro accs to 40 att)

    Wizzup?'s [VEM] Got me 2 accs from 1-40-50 mining in 2 days. Ran for 6 hours in a row with 2 accs without messing up any of them.

    Wizzup?'s Ess Miner Possibly the best free essminer currently.. Havent tested much, i hate ess.

    And many WT-Fakawis/Wizzups SRL member scripts. Just search the forums.

    I hope this was helpful for atleast someone.
     
  3. Unread #2 - Apr 4, 2007 at 2:18 AM
  4. Th3mast0r
    Joined:
    Feb 26, 2007
    Posts:
    81
    Referrals:
    0
    Sythe Gold:
    0

    Th3mast0r Member

    New to SCAR? Read here.

    Nice,, But remember me at msn? u just sended Smileys, haha.
     
  5. Unread #3 - Apr 4, 2007 at 3:21 AM
  6. WhoCares357
    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0

    WhoCares357 Forum Addict

    New to SCAR? Read here.

    Nice tut. Will help some newbs.
     
  7. Unread #4 - Apr 4, 2007 at 6:42 AM
  8. mag1nmag3r22
    Referrals:
    0

    mag1nmag3r22 Guest

    New to SCAR? Read here.

  9. Unread #5 - Apr 4, 2007 at 8:01 AM
  10. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    New to SCAR? Read here.

  11. Unread #6 - Apr 4, 2007 at 10:28 AM
  12. mag1nmag3r22
    Referrals:
    0

    mag1nmag3r22 Guest

    New to SCAR? Read here.

    sorry i wrote scar by mistake...its srl...idk how to download tht...
    cud u jst tell me hoe to download it and install it after wards
    ty
     
  13. Unread #7 - Apr 4, 2007 at 10:50 AM
  14. mag1nmag3r22
    Referrals:
    0

    mag1nmag3r22 Guest

    New to SCAR? Read here.

    Cud U Tell Me Your Msn Id So We Can Chat Ow Plzzzzzzzzzzzz
     
  15. Unread #8 - Apr 4, 2007 at 9:08 PM
  16. mag1nmag3r2
    Referrals:
    0

    mag1nmag3r2 Guest

    New to SCAR? Read here.

    i m gettin tooooooo frusterated....i dont understand how to download and install srl...i tried a few wayz but i dont know if it has got installed..so cud u jst tell me one way in which in will work for sure....i really need your help...plzzzzzzzzzz help
     
  17. Unread #9 - Apr 5, 2007 at 8:10 AM
  18. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    New to SCAR? Read here.

    U just need Winrar, SCAR installed and knowledge how to use copy paste.

    Sorry i forgot u need to be able to use the MOUSE to click at the download link ;) Yea installing SRL is kinda hard if ur not too familiar with this stuff.
     
  19. Unread #10 - Apr 5, 2007 at 9:27 PM
  20. mag1nmag3r2
    Referrals:
    0

    mag1nmag3r2 Guest

    New to SCAR? Read here.

    so cud u help me with it??
    plzzz
    or just tell me(in detail) how to see if srl is installed
    ty
     
  21. Unread #11 - Apr 6, 2007 at 9:23 AM
  22. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    New to SCAR? Read here.

    Try to compile this:

    Code:
    program New;
    {.Include SRL/SRL.scar}
    
    begin
      Writeln('Testing');
      SetUpSRL;
    end.
    
    If that doesnt give any errors then u should have SRL installed right.
     
  23. Unread #12 - Apr 12, 2007 at 11:28 PM
  24. lrdilpalazzo
    Joined:
    Apr 12, 2007
    Posts:
    166
    Referrals:
    0
    Sythe Gold:
    0

    lrdilpalazzo Active Member

    New to SCAR? Read here.

    plz help i keep getting an

    Failed when compiling
    Line 345: [Error] (347:4): Unknown identifier 'IsTextAt2' in script C:\Program Files\SCAR 3.0\includes\OSi.txt

    error

    do i have to erase all the green words (comments) or wat plz plz help!:confused:

    pm me or email me at: [email protected]

    plz help!! ty
     
  25. Unread #13 - Apr 13, 2007 at 1:26 AM
  26. +Tyler
    Joined:
    Feb 10, 2007
    Posts:
    355
    Referrals:
    0
    Sythe Gold:
    0

    +Tyler Forum Addict

    New to SCAR? Read here.

    ^^^You didn't download includes. On SCAR go to file Download includes and it will work.

    Btw nice guide Gofez0r =]
     
  27. Unread #14 - Apr 13, 2007 at 6:50 AM
  28. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    New to SCAR? Read here.

    Thanks.. Im working on a way bigger scripting guide too.. Just will take a while.. having problems thinking examples for all basics.
     
  29. Unread #15 - Aug 6, 2007 at 10:55 AM
  30. born2code
    Joined:
    Jun 12, 2007
    Posts:
    6
    Referrals:
    0
    Sythe Gold:
    0

    born2code Newcomer

    New to SCAR? Read here.

    VEM is now a members script.
     
  31. Unread #16 - Aug 14, 2007 at 12:18 PM
  32. range4lyfe
    Joined:
    Aug 3, 2007
    Posts:
    453
    Referrals:
    0
    Sythe Gold:
    0

    range4lyfe Forum Addict
    Banned

    New to SCAR? Read here.

    nice ty.
     
  33. Unread #17 - Sep 2, 2007 at 10:18 PM
  34. harleytdawg
    Referrals:
    0

    harleytdawg Guest

    New to SCAR? Read here.

    this did help me cuz i didn't know what SCAR was, thanks
     
  35. Unread #18 - Sep 25, 2007 at 5:57 PM
  36. Hail Vlad
    Referrals:
    0

    Hail Vlad Guest

    New to SCAR? Read here.

    Yo G0f3z0r dude you mind adding me on msn pl0x? my email is [email protected]... I really need your help please. my main just got banned w/ 200m in items and cash. and i wana learn to auto to make my cash back :O please add me? :}
     
  37. Unread #19 - Oct 8, 2007 at 5:06 AM
  38. Just_Joshin
    Joined:
    Oct 8, 2007
    Posts:
    95
    Referrals:
    0
    Sythe Gold:
    0

    Just_Joshin Member

    New to SCAR? Read here.

    wow, thats confuseing
     
  39. Unread #20 - Oct 19, 2007 at 9:50 AM
  40. superfirecaper
    Joined:
    Jan 27, 2007
    Posts:
    276
    Referrals:
    0
    Sythe Gold:
    0

    superfirecaper Forum Addict
    Banned

    New to SCAR? Read here.

    this is very complex lol
     
< Some Q&A about scar. | where to download scar >

Users viewing this thread
1 guest


 
 
Adblock breaks this site