Results 1 to 12 of 12

Thread: My road of how to make an sr member worthy script. (In progress)

  1. #1
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default My road of how to make an sr member worthy script. (In progress)

    Please note that this is only the progress of making this script, I will post what I learn every day, and what I did. (I don't know much of srl scripting other than the basics)

    Hi all.
    I am planning on to learn scripting, and I am now planning on making a script (for real). I will post what I learn, and the progress of the script every day, hopefully this will help my self and others (who also want to learn).

    First of all, a brief history about my self:
    I've been here for almost a year now, and I've want it to become a member (Back then I want it to leech *like every leechers here* but now its an new story) ever since. Some times this year, I got the idea of actually start to learn and make an script and apply to sr member, I had every thing planned out (what I need to learn, what the script will do...etc). but I got banned on my main, and never want to get back to rs (and srl). I came back in late july because I didn't want to play counter strike on steam any more, (because it was soo boring that I was about to fall a sleep).

    Now that I am back, I want to to stop bashing my rs hops on others (their script to be exact), I want to be able make my own, (with better anti ban and functionality because I take anti ban VERY serious, serious enough that I even made a guide on it). I am planning to make script, not ONLY for getting-some-good-script-to-benefit-my-rs-experience, but also to improve my programming-language-learning-ability for future, and also to make my OWN scripts (which will run very smoothly and effective).

    My computer knowledge:
    I know html, css, java script fairly well, I was able to pass and get the w3school's HTML Certification. I know basics of Vb and java. but to my surprise, I find scar is harder to learn them.

    Functionality of the script:
    This will be the description of the function in this script (I will not put out stuff like log in..set up players...etc in this description.
    Axe checker
    Cut willow
    Banks
    Walk back
    Fail safe (always have fishing spot in range)
    Support all axe
    support summoning? (NEVER! My main was 99str at 106 cb, owns 99% people at 114- cb because 1 summoning)
    If I can: My own/modified anti ban procedure and anti random (I will try to learn how to do that) but will not try to do that yet.
    *I will add more upon time goes by*

    The script (I will add more as I go)
    SCAR Code:
    {
    ******************************************
    *WELCOME TO M_A_I_N_FTW'S WILLOW CUTTER!!*
    ******************************************
    ******************************************
    *PLACE YOUR CHARACTER IN DRAYNOR BANK AND*
    *WEILD OR HAVE AN AXE IN THE INVENTORY!!!*
    ******************************************
    ******************************************

    }

    program Willow FTW;
    {.include SRL/SRL.scar}

    const


    // This is NOT your srl-forums.com login information. you can and MUST get an srl id from stats.srl-forums.com for script to work
    YourSrlId = '';
    YourSrlPass = '';

    procedure Declareplayers;
    begin
      NumberOfPlayers(1); // Number of players, if you wish to add more. please copy the form and past it under.
      CurrentPlayer := 0;
     
      Players[0].Name := 'andrew'; // Your runescape user name please
      Players[0].Pass := 'iamhomo'; // Your runescape password please
      Players[0].Nick := 'rew'; // This is used to find talk randoms. You can put your full name here, but you need to take off first letter
      Players[0].Active := True; // Wanna use this character?
      Players[0].Booleans[0] := True; // Always run?
      Players[0].Booleans[1] := False; // Use custom willow color? IN WORKS, DO NOT SET TO TRUE
      Players[0].Booleans[2] := False; // Quick chat world?
      // EXTRA PLAPYER FORM! CHANGE X TO THE NUMBER OF THE PLAYER. IN THIS CASE, THE X WOULD BE 1
    {
      Players[X].Name := '';
      Players[X].Pass := '';
      Players[X].Nick := '';
      Players[X].Active := true;
      Players[X].Booleans[0] := true;
      Players[X].Booleans[1] := False;
      Players[X].Booleans[2] := False;
    }

    end;


    procedure setup;
    begin
         SRLID := YourSrlId
         SRLPassword := YourSrlPass;

    begin
      SetupSRL;
      Setup;

    List of the things to add:
    Set up player (Both form and regular)
    USER
    PASS
    NICK
    BANK PIN
    SRLID
    SRLPASS
    login (Both smart and non smart *better anti ban*)
    CHECK SRL ID AND PASS (Stop script if failed to submit *I will submit 1 minute upon running to check*)
    CHECK PLAYER STATS (Stop script if cb under 30 and overall lower than 500)
    SET BRIGHTNESS..ETC
    SET CHAT
    Procedures
    Walk to willow
    Make compass S
    Walk to tree via symbol or reflection
    (Don't know how to walk yet)
    Chop willow
    Let player pick willow color
    Click color..
    (I don't know how to yet, but I will learn!)
    Walk to bank
    Find bank symbol, then click.
    (need to learn)
    Oh Hai Dar

  2. #2
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey, why don't you check around, there is probably a more apropriate place for this
    ~ Metagen

  3. #3
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just an FYI, if you use reflection in your script, you won't have a choice to use SMART or not

  4. #4
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    o boy.


    also, what is a more appropriate place for this?


    according "read this before you post" thread.

    This Section Is For Help With Scripts That YOU Are Making


    EDIT: I got the first few parts done, gonna read some tut and go sleep.
    also, yes I do realize reflection requires smart. so maybe i'll add a old fashion way and a smart way. (old fashion way you can talk to people, which I like, and less ban)
    Oh Hai Dar

  5. #5
    Join Date
    Oct 2007
    Location
    If (Online) then Loc := ('On comp') else Loc := ('Somewhere else!');
    Posts
    2,020
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    there is loads of draynor cutter i will give you a lil advice don't apply for members wityh a draynor woodcutter that woodcuts willows

  6. #6
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    I want to make a perfect working draynor willow cutter, because it fastest exp. and the only willow cutter I've used that was very fast was out dated (paul32).

    Maybe I won't apply to srl member yet, because I just realized I have soo much more to learn, but this will be a good start.
    Oh Hai Dar

  7. #7
    Join Date
    Oct 2007
    Location
    If (Online) then Loc := ('On comp') else Loc := ('Somewhere else!');
    Posts
    2,020
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yer this will be a good start to learn from a draynor willow cutter because yer basicaly they are very simple and easy to make. need any help with anything just ask!!

    also we like in the membes application scripts

    things with DTMs/DDTMs
    rrw etc
    they alays go down a treat

    basicaly somthing woith walking is a goo start for a member app but has to be good walking woth fail safes etc

  8. #8
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh yes, just one thing. If you get into Members, don't expect us all to type like Waddo.

    He's an exception.
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  9. #9
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    What did waddo do?
    Oh Hai Dar

  10. #10
    Join Date
    Aug 2008
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is nice script, but you could make the walking better, I find its buggy.

    But way to go I'm also trying to get SRL member but first i need to get better in scripting with SCAR.

  11. #11
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    what do you mean "make walking better?" It doesn't even have walking,at least not on the public version. there is a run a way procedure that I am working on, but the reason its called "private" its because I have it... but I do need to work on it h): so are you like a psychic? lol.. any ways..

    I am trying to make it run away via radial walk, but the tutorial on intermediate section doesn't have the examples.. and I am not getting it without.

    or should I use the good'ol ways.
    SCAR Code:
    Mouse(x + 17, y - 5, 10, 5, true);
    Flag;
    wait(xx + Random(xxx));
    ?

    and is there also a tutorial on reflection walking?
    Oh Hai Dar

  12. #12
    Join Date
    Mar 2007
    Location
    <3
    Posts
    2,683
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Rock on!
    There is a Tut on reflection walking Located in Smart -> Reflection tuts
    Good luck with it

    Also this is the right place to post ^^

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to make a detailed progress report!
    By Naike in forum OSR Intermediate Scripting Tutorials
    Replies: 9
    Last Post: 06-21-2012, 08:04 PM
  2. How to make a cool Progress Report
    By Bigfish58 in forum Outdated Tutorials
    Replies: 6
    Last Post: 08-15-2007, 10:12 PM
  3. Make your character walking the road?
    By Kingofptw in forum OSR Help
    Replies: 4
    Last Post: 03-15-2007, 01:11 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
  •