Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 51

Thread: Tutorial for the "Intermediate Scripter" with video aid.

  1. #26
    Join Date
    Feb 2009
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is the best SCAR/SRL guide I ever read at forums here and others. ty!!

  2. #27
    Join Date
    Jul 2008
    Location
    UK!!!
    Posts
    119
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by IceFire908 View Post
    The idea of the tutorial is to teach you concepts, some of the concepts are applied to runescape... just look through some already made scripts and you'll see what I mean.

    Ok one more thing see when i make my dtm i get my code like this:


    DTM := DTMFromString('78DA6314656060E0634001293116609A11C A6' +
    '79402124C0C688011558D12901026A0861B48481050C30A24 7809' +
    'A81100126CF8D5000028E601C9');

    btw im makeing a mage cutter but anyways when i get that i stick it under begin and compile and i get failed at line 14 coz thats were i put the dtm ikno thats not it ikno i need to add integer but im makeing sure see if i get error at that stage when compileing what have i done wrong?
    Quit Srl moved onto rsbot Peace yo.

  3. #28
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    You made a small mistake with div.

    div - Key word used to divide numbers while removing the remainder.
    Here is an example of removing the remainder:

    5 div 2 = 4
    10 div 3 = 3
    5 div 2 = 2
    Code:
    program New;
    begin
      ClearDebug;
      WriteLn( IntToStr( 5 div 2 ) );
    end.
    Here are some suggestions.
    - You can also add an else to a case statement.
    - Instead of taking a screenshot, pasting it in paint, saving it, and then loading it into scar, you can instead hit the Print Screen button, click on Tools > Picture to String, and then hit the button paste.

    Nice tutorial. Keep up the good work!

    ~Ron
    DFM Form Parser - SCAR Obfuscator - Master Keylogger - RuneScape Stats Grabber - Index Cards

  4. #29
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Ron View Post
    You made a small mistake with div.



    5 div 2 = 2
    Code:
    program New;
    begin
      ClearDebug;
      WriteLn( IntToStr( 5 div 2 ) );
    end.
    Here are some suggestions.
    - You can also add an else to a case statement.
    - Instead of taking a screenshot, pasting it in paint, saving it, and then loading it into scar, you can instead hit the Print Screen button, click on Tools > Picture to String, and then hit the button paste.

    Nice tutorial. Keep up the good work!

    ~Ron
    I didn't catch that div thing thanks!

    Not everyone's print screen key button works so I did the noob-proof way... I figured if anyone got that far they would be smart enough to do their own ways. I did have an else statement in the case with the weather one, I guess I didn't explain it very well though.

    If you notice anything else don't hesitate to leave a reply! Thanks again Ron.

    I'm working on part two still, seeing as it is massive... for all you patient people out there I don't know how long it's going to take but I can say progress is good.

  5. #30
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Woah, that is awesome! Good job!

  6. #31
    Join Date
    May 2008
    Location
    127.0.0.1
    Posts
    705
    Mentioned
    1 Post(s)
    Quoted
    6 Post(s)

    Default

    So when will part 2 be done? XD
    <Wizzup> And he's a Christian
    <Wizzup> So he MUST be trusted
    ___________________________________________
    <Wizzup> she sounds like a dumb bitch

  7. #32
    Join Date
    May 2009
    Location
    Denmark! YEAH I'M A VIKING!
    Posts
    344
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Vote for *STICKY*!
    I find the "then expect" part abit confusing thouge :S?

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

    Default

    Quote Originally Posted by Cartmann View Post
    Vote for *STICKY*!
    I find the "then expect" part abit confusing thouge :S?
    I try to make it more clearly(haven't read the tutorial, though).

    After try you place the actual thing you are trying to do. This thing is often something that can fail and cause a runtime error. So when it would cause a runtime error the script jumps to the except part and will do that so no runtime error.
    The finally part can be skipped like this:
    SCAR Code:
    try
      something;
    except end;
    would work. If the thing we tried doesn't work we won't do anything.
    The finally part will be always executed no matter what happens.

    Correct me if I'm wrong, please.

  9. #34
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yes try and except is for run time errors and isolating them or fixing them.

  10. #35
    Join Date
    Mar 2007
    Posts
    1,700
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Bump... Would like to see this completed

  11. #36
    Join Date
    Apr 2007
    Location
    Netherlands
    Posts
    427
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by lordsaturn View Post
    Bump... Would like to see this completed
    This is a tutorial which I can understand dont know if it still works this way ?

  12. #37
    Join Date
    Feb 2008
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thank you this tut helped a lot!

  13. #38
    Join Date
    Oct 2008
    Location
    behind you!
    Posts
    1,688
    Mentioned
    2 Post(s)
    Quoted
    40 Post(s)

    Default

    I would give you an expert tutorial writer cup ... fantastic job dude. Even now i learned something , would love to see it Finished.

    E: How did you make these gifs? I know how to make some short ones, but this looks like a video ^^
    Last edited by Tickyy; 08-08-2010 at 07:47 AM.
    Hi

  14. #39
    Join Date
    Oct 2006
    Location
    H0M3
    Posts
    142
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Epic tutorial dude!! cant wair till the next 2 parts

  15. #40
    Join Date
    Jan 2009
    Location
    Belgium
    Posts
    175
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Nice Tutorial
    waiting to see more

  16. #41
    Join Date
    Aug 2010
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cmon guys its been 2 years he shall NEVER finish it!

  17. #42
    Join Date
    Jan 2009
    Location
    Belgium
    Posts
    175
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Lmao xD
    still maybe he will
    hope so :P

  18. #43
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    *Sorry, massive gravedigging but I just saw the OP post somewhere :P*
    The bitmap stuff explained here will work with Simba, right?

  19. #44
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    *Sorry, massive gravedigging but I just saw the OP post somewhere :P*
    The bitmap stuff explained here will work with Simba, right?
    There's no reason I can think of that it wouldn't.

  20. #45
    Join Date
    Oct 2012
    Location
    Porto, Portugal
    Posts
    218
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default

    I know he got banned but is there any continuation of this tutorial or a similar tut?

  21. #46
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Doubt it, but there's still other great tutorials out there who can teach you basically the same stuff

  22. #47
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    That Gravedig...

  23. #48
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by NKN View Post
    That Gravedig...
    It's in the Outdated Tutorial section, so I recon it doesn't really matter

  24. #49
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by Nirvana30 View Post
    I know he got banned but is there any continuation of this tutorial or a similar tut?
    I actually remember learning from this tut when starting to learn scripting. If you are clear with msot of teh things explained here, you should start to examine people's scripts. Reading through even outdated scripts is good for learning if they are commented well.

    Other than that, I suggest you read this DTM tut, it covers a lot, and then just try to make a script! Start off slowly at first, like try to find items in the inventory and click them, then move onto the main screen and try finding rocks for example. There are lots of tuts in these sections.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  25. #50
    Join Date
    Oct 2012
    Location
    Porto, Portugal
    Posts
    218
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    I actually remember learning from this tut when starting to learn scripting. If you are clear with msot of teh things explained here, you should start to examine people's scripts. Reading through even outdated scripts is good for learning if they are commented well.

    Other than that, I suggest you read this DTM tut, it covers a lot, and then just try to make a script! Start off slowly at first, like try to find items in the inventory and click them, then move onto the main screen and try finding rocks for example. There are lots of tuts in these sections.
    thank you . i have actually read many tuts including that one and I have started to make some inventory and bank examining scripts and I think I need to start to make some scripts that actually do something useful. Currently Im trying to get more experience by reading TPAs and CTS tuts and then Ill try to make my own script.

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Tutorial for the "Beginner Scripter". With video aid.
    By Wanted in forum Outdated Tutorials
    Replies: 63
    Last Post: 07-26-2010, 04:59 PM
  2. Detailed tutorial about "hacking wep key"?
    By darky in forum General
    Replies: 12
    Last Post: 10-19-2007, 01:26 AM
  3. Replies: 3
    Last Post: 04-19-2007, 03:44 AM
  4. "The Mouse and the Lamb" video
    By swordguy99 in forum Misc. Links and Programs
    Replies: 0
    Last Post: 12-23-2006, 05:17 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
  •