Page 17 of 20 FirstFirst ... 71516171819 ... LastLast
Results 401 to 425 of 483

Thread: Unmatched Beginner's Guide to Scripting Scar

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

    Default

    SCAR Code:
    program AutoMiner;
    {.include SRL\SRL.scar}
    Var
     x,y: integer;
    Const
     Username= '';
     Password= '';
     OreColor = 7044095;
     Ore := DTMFromString('78DA633461626078C380028A631D191881340' +
           '8FF0702465BA09A7B0C6880118904D2764035F78950F38808352F' +
           '09A801B9E7150135964035AF09A801F9FD310135C640352F88B08' +
           'B40F8000026DF1073');
    begin
     if findcolor(x,y,Orecolor,0,0,515,337)then
      begin
       movemousesmoothEx(x,y +random(5),10,30,500,10,0);
       wait(100+random(300));
       If IsUpText('Text here')  then
       Mouse(x,y,1,1,true);
       end else
        writeln('Could Not find rock');
       end;
        if findDTM(Ore,x,y,687,436,711,459)then
         begin
          If findDTM(Ore,x,y,550,208,736,465)then
           begin
            movemousesmooth(x,y +random(12))
            wait(100+random(250))
            Mouse(x,y,1,1,false)
            ChooseOption('rop')
            end;
        end;
    end;
    Here you go.

  2. #402
    Join Date
    Oct 2007
    Location
    everywhere you aint lookin
    Posts
    131
    Mentioned
    1 Post(s)
    Quoted
    6 Post(s)

    Default

    THANK YOU THIS HELPS ME SOOOO MUCH. I <3 you forever. lol JK but THANKS!!

  3. #403
    Join Date
    Jul 2007
    Location
    Atlanta GA , USA
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    In the procedures section, I can't get the WriteIn command to be used as command. Idk if i'm doin it wrong or what... I'm running SCAR 3.15 btw

  4. #404
    Join Date
    Apr 2008
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ty

    i luv u

  5. #405
    Join Date
    Dec 2006
    Location
    SC
    Posts
    692
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Heliabc View Post
    In the procedures section, I can't get the WriteIn command to be used as command. Idk if i'm doin it wrong or what... I'm running SCAR 3.15 btw
    Can you give me the code you're trying to run?

  6. #406
    Join Date
    Apr 2007
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the fish color example, that was what i just needed . Now i can go look and make a little script, and learn and learn and learn

  7. #407
    Join Date
    Apr 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey really good guide thanks alot man helped me alot to get started

  8. #408
    Join Date
    Dec 2007
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow the best guide i ve ever seen!

  9. #409
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Heliabc View Post
    In the procedures section, I can't get the WriteIn command to be used as command. Idk if i'm doin it wrong or what... I'm running SCAR 3.15 btw
    make sure that "Writeln" has a lower cas "L" not a cap "I"

  10. #410
    Join Date
    Dec 2006
    Location
    SC
    Posts
    692
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by sunny View Post
    make sure that "Writeln" has a lower cas "L" not a cap "I"
    I put that in the tut, too.

  11. #411
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by WhoCares357 View Post
    I put that in the tut, too.
    ok just trying to help out

  12. #412
    Join Date
    Apr 2008
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thank you

  13. #413
    Join Date
    Apr 2008
    Posts
    99
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    awesome, iv printed this off so i can read it on the way to work.

  14. #414
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    I love all the noobs posting just to get up post count

    Thanks for the great tut btw. Helped me a lot in my power miner!

    Nava2
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  15. #415
    Join Date
    Apr 2008
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    prty mint tutorial i bet this took you a while to write out gj

  16. #416
    Join Date
    Apr 2008
    Location
    Montana
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks a million for this dude, helps tons

  17. #417
    Join Date
    Jul 2007
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I am a nexus scripter and hopefully that will help me to learn to script with scar thanks for the great tutorial

  18. #418
    Join Date
    Dec 2006
    Location
    SC
    Posts
    692
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have added this little snippet at the beginning of the tutorial:

    !WARNING!
    THE COMMANDS USED IN THIS TUTORIAL ARE OUTDATED.
    Do not use any of the Mouse (moving or clicking) commands on Runescape. Do not use the SendKeys command either.

    The include SRL (made by the generous people on this forum) has created greatly improved commands that are undetectable by Runescape. THE INTERACTIVE COMMANDS USED IN THIS TUTORIAL (mouse movement, mouse clicking, typing) ARE NOW DETECTABLE. DO NOT USE THEM ON RUNESCAPE OR YOU WILL GET BANNED. I made a short tutorial on some of the more common SRL commands. You can find that tutorial Here.

    I have not had time to update this tutorial yet, but I really want to do so once school ends. I put this as a warning because I have seen many people use old commands on Runescape that will quickly get them banned. Don't be one of those people. Learn SRL commands after you finish learning from this tutorial.
    Please take this into consideration. It certainly doesn't mean that this tutorial is unusable. I created it to teach you how to PROGRAM and not how to cheat in Runescape.

    I did spend a few hours working on the tutorial about a month ago, but my old computer crashed and I lost everything. I am now getting ready for exams and such (end of school year ). I hope to start rewriting the tutorial soon.

    Thank you for all of your replies so far. I am glad that my work has helped so many talented people.

    PS, yes, I know my syntax structure is horrible during the tutorial xD. I wrote it when I was still a beginner. I had very weird standards back then. I'll update the standards when I rewrite the tutorial.

  19. #419
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Incredible tutorial!
    TYSM
    Project: Welcome To Rainbow

  20. #420
    Join Date
    Apr 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good tutorial

  21. #421
    Join Date
    Jan 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, Awesome tut

  22. #422
    Join Date
    Apr 2007
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    One word: NEATNESS.

    i'm screwed

  23. #423
    Join Date
    May 2008
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Takes a long time to read but well worth it

  24. #424
    Join Date
    May 2008
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    if it wasn't for this guide i would still be putting my username/password before the '' because i really didn't understand it

    thanks for helping

    anyone having problems with scripting or using scripts should read this tut

  25. #425
    Join Date
    May 2008
    Location
    Beside you d;..;b
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm confused about something in the line
    if(FindColor(x,y,FishColor,0,0,600,600) is
    0,0, = x,y of the top left corner of the screen
    600,600 = x,y of the lower right corner of the screen
    is that correct?

Page 17 of 20 FirstFirst ... 71516171819 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Unmatched Beginner's Guide To Scripting Scar (Hands On)
    By WhoCares357 in forum Outdated Tutorials
    Replies: 44
    Last Post: 09-02-2010, 09:39 PM
  2. UnRivaled Guide To Scripting
    By pwnaz0r in forum OSR Intermediate Scripting Tutorials
    Replies: 119
    Last Post: 11-08-2008, 11:00 PM
  3. All In One Beginner's Guide To Scar Scripting
    By xaviar in forum Outdated Tutorials
    Replies: 4
    Last Post: 07-05-2008, 10:11 AM
  4. Best scripting guide?
    By Conman3030 in forum OSR Help
    Replies: 5
    Last Post: 11-30-2007, 11:07 PM
  5. Guide to Scripting(If you are totally new at it)
    By WhiteShadow in forum Outdated Tutorials
    Replies: 6
    Last Post: 06-01-2006, 04:02 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •