Adblock breaks this site

[TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

Discussion in 'Scar/Simba Help' started by WhoCares357, Mar 25, 2007.

  1. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Good luck.
     
  2. Chrisooo1012

    Chrisooo1012 Active Member

    Joined:
    Mar 27, 2007
    Posts:
    102
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    I love you forever.

    That was amazing.

    Go you.
    I'm going to study up on some SRL commands, but I'm a quick learner, so I'll be scripting in no time!
    THANK YOU!
     
  3. Ilikepie1995

    Ilikepie1995 Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    When i make var thin in script i get an error for example this...

    var

    Hello: String;
    begin
    Somethinhere somethin here
    Hello: 'wee';
    end.

    i get error line same where 'hello: 'wee';' is....

    SOMEONE HELP!
     
  4. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Should be Hello:='Wee';
     
  5. lilboy543

    lilboy543 Member

    Joined:
    Apr 1, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Hi. I have a few questions and I hope u can answer them :) .
    -First, Is SRL needed to use new working anti-randoms?
    -Second, is SRL even needed to run scripts? And what is so special about it?
    -Third, Does SRL make scripts undetectable? And are the codes you put in this guide detectable?
    -Fourth, The long one :confused: . If the codes you listed are highly detectable and/or you know any new anti random codes that work without SRL can you please post or pm them to me and tell me or the readers how to input them into the script?

    Ps. Great Tutorial!!! And I know this is only a beginners guide, but if you were to post replies to those questions I asked this guide would become advanced!!!
    :) THANK YOU VERY MUCH!!!!!!!!!!!!!!!!
     
  6. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    You could make your own, but it would be easier to get SRL, since it has the most advanced ones (made by experts).

    SRL is needed to script for Scar. Scar commands and functions are very detectable in RuneScape. SRL functions like Mouse and MMouse are virtually undetectable by RuneScape.

    Answered two questions with one answer :p. Just look at the answer to the last question.

    I truly recommend using SRL anti-randoms. They will save you so much time making your own. To make anti-randoms you would have to be pretty good at scripting. I released a guide that will help you use SRL (functions and anti-randoms) in your script. http://www.sythe.org/showthread.php?t=196041
     
  7. lilboy543

    lilboy543 Member

    Joined:
    Apr 1, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    OMG !! ty so much!!!! ur fast too!!! one more quick favor/question... do u have a download link and/or tutorial for SRL
     
  8. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

  9. I will always like "w"

    I will always like "w" Member

    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    instead of SendKeys ('I want to type something then hit ENTER' +chr13))
    ..there is a better way :)

    If it is SRL script in other words there is this in script
    {.include SRL/SRL.scar}

    you can do this TypeSend ('I want to type something then hit ENTER')

    TypeSend does the same thing but is specifically meant for that!

    here is my nooby script that uses typesend:

    {------------------------------------------------------------------------------]
    [ _____ __ __ .__ __ ]
    [ / _ \ __ ___/ |_ _____/ |______ | | | | __ ___________ ]
    [ / /_\ \| | \ __\/ _ \ __\__ \ | | | |/ // __ \_ __ \ ]
    [ / | \ | /| | ( <_> ) | / __ \| |_| <\ ___/| | \/ ]
    [ \____|__ /____/ |__| \____/|__| (____ /____/__|_ \\___ >__| ]
    [ \/ \/ \/ \/ ]
    [ By: I will always like "w" ]
    [------------------------------------------------------------------------------]
    [ ---->> IMPORTANT STUFF <<---- ]
    [ figlet generator: http://www.network-science.de/ascii/ font: graffiti ]
    [ Sorry if this is kinda crapy =) ]
    [ Just for learning purposes. ]
    [------------------------------------------------------------------------------]
    [ ---->> SETUP <<---- ]
    [ -Have RS client open ]
    [ -Drag crosshair into window ]
    [ -Start script and minimize SCAR window ]
    [ -10 things typable ]
    [ -type what you want to say in lines 32 through 56 ]
    [------------------------------------------------------------------------------}

    Program New;
    {.include SRL/SRL.scar}

    begin;
    ClearDebug;
    writeln (' _________________________')
    writeln (' // Josephs Autotyper!!! \\ ')
    writeln (' //----------<] :) [>---------\\ ')
    writeln (' //_____________________________\\ ')
    sleep (1000)
    writeln (' is now running!')

    repeat
    typesend ('v ') //1
    Wait (1000 + random (500))
    typesend ('d ') //2
    Wait (1000 + random (500))
    typesend ('d ') //3
    Wait (1000 + random (500))
    typesend ('d ') //4
    Wait (1000 + random (500))
    typesend ('d ') //5
    Wait (1000 + random (500))
    typesend ('d ') //6
    Wait (1000 + random (500))
    typesend ('dw ') //7
    Wait (1000 + random (500))
    typesend ('dw ') //8
    Wait (1000 + random (500))
    typesend ('fe ') //9
    Wait (1000 + random (500))
    typesend ('q ') //10
    sleep (1000)
    Wait (500 + random (1500))
    until (false);

    writeln ('please restart script again for more autotyping')
    end.

    // Don't copy my crappy script plz =)


    oh and how do u make code boxes
     
  10. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Lol, thanks for telling. Code boxes are made with BB tags.
    Code:
     //your script [/c0de]
    
    Just replace the 0 with o.
     
  11. lilboy543

    lilboy543 Member

    Joined:
    Apr 1, 2007
    Posts:
    79
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Its me again =) That thread for srl download instructions was kinda hard to understand so i looked at thick as bloods thread which was excelent! but i keep geeting an error in scar check out my question with pics at this thread
    http://www.sythe.org/showthread.php?t=148512&page=14
    If you have any scar or srl skills that can fix this error other then undownloading srl then redownloading it because i have done that over 25 times!!!!!! if u know or anyone else knows anything please help me!
     
  12. Abu.

    Abu. Active Member
    Banned

    Joined:
    Mar 23, 2007
    Posts:
    177
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    this is the best SCAR guide ive seen because it is hands on unlike all the others
     
  13. falcon700

    falcon700 Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    nice tut really helped whocares357
     
  14. JasonManson

    JasonManson Member

    Joined:
    Apr 22, 2007
    Posts:
    71
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    WoW! Great Guide, thanks! Ill be scripting like a master in no time!
     
  15. pro_spider13

    pro_spider13 Forum Addict

    Joined:
    Apr 2, 2007
    Posts:
    325
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    Thanks, i printed this out, OMG it took 22 pages. you wernt lieing when u said Hands on. anyway great guide .
     
  16. 4tt4k 0f u

    4tt4k 0f u Member
    Banned

    Joined:
    May 6, 2007
    Posts:
    60
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    very nice helped me alot
     
  17. K o 4 lyphe

    K o 4 lyphe Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    (Y) TY alot
     
  18. Noob Killa

    Noob Killa Newcomer

    Joined:
    May 26, 2007
    Posts:
    16
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    :cool: ok i have a good wcing and bank script here but i need to know how to identify north in script.this part,

    If (FindFight) Then RunWhere('N', true);

    how do I make 'n' north where SCAR will not say,

    Failed when compiling
    Line 396: [Error] (15167:21): Unknown identifier 'RunWhere' in script C:\Documents and Settings\Owner\Desktop\School Stuff\Willow Cutter.scar

    plz tell me because this is like the only problem.:)
     
  19. SmAcKmE

    SmAcKmE Active Member

    Joined:
    May 18, 2007
    Posts:
    105
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    I'm one of the people he tought over msn :D
     
  20. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide To Scripting Scar (Hands On)

    http://www.zamorak.org/showthread.php?t=460

    Look in the last part. It shows you how to do anti-randoms with SRL.

    And thanks for the vouch SmAcKmE.
     
< listing mcas movie theater | Need scar Tin miner. >


 
 
Adblock breaks this site