Page 1 of 2 12 LastLast
Results 1 to 25 of 34

Thread: My First Script - Flax Picker!! :D

  1. #1
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    My First Script - Flax Picker!! :D

    UPDATES!

    v1.1 - Picks Slightly Faster. A little bit more accurate but not much different to v1.0

    v1.2 - Time between mouse movement and mouse click is decreased, random time between 3-4 seconds in between picks.

    v1.3 - WAY more accurate, Faster pick times (Between 1.8-2.5 seconds) WORKS WITH ANY CAMERA ANGLE! Picks flax only when its close to you. PICKS 28 FLAX THEN STOPS!!!! MAJOR UPGRADE!

    v1.3b -Exactly the same as 1.3 except written for Normal Quality. v1.3 is written for HD

    v1.4 - Called off, I am not a member anymore so i cannot continue working on it

    -= I'm starting to work on the banking function =-

  2. #2
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    I'm currently working on a script that will bank them. I'm so happy i finally got one working!!!

  3. #3
    Join Date
    Oct 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice ill be sure to use this one

  4. #4
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    When i have put the banker function in, it will work much better

  5. #5
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    is this even YOURS!?


    SCAR Code:
    {Made by Qwerty_9990}
    (in line 3)

    i added in what i fixed (login player) pickflax (fixed) anti randoms anti ban and dropping procedure.


    ok for a few things, try to not use that high detail...most/all scripts are made in low.

    secondly

    DONT USE
    SCAR Code:
    MouseMouseSmooth(x,y);
    ClickMouse(x,y,True);

    that =

    SCAR Code:
    if MoveMouseSMooth(x,y);
    ClickMouse(x,y,True) then
    =BANN!!!

    use MMouse and Mouse

    SCAR Code:
    MMouse = //Move mouse\\
    Mouse = //CLick mouse\\

    there basic clicking things

    also under

    SCAR Code:
    program example;
    //put this in\\
    {.Include SRL/SRL.Scar}

    that will let you use basic SRL functionssuch as DTM's etc..

    ill add in what you have + a new verions just with MMouse/Mouse

    just so you learn

    here it is add me to creds if you use this
    SCAR Code:
    {Made by Cycrosism(i think:P) and JOELSTER!#$}
    {Go to the flax feild and run the script}
    //drops flax now :) (added in by Joelster134\\
      //Added by Joelster134\\
    program FlaxPicker;
    {.Include SRL/SRL.Scar}


    const
    FlaxColor = 11842636; //Use color dibber if this doesn't work

    var
    x,y: Integer;
    i: Integer;


    procedure DeclarePlayers;       //added by Joelster134\\

    begin
       HowManyPlayers:= 1; //Change to your liking :)
       NumberOfPlayers(HowManyPlayers);

       Players[0].Name:='te'; //username
       Players[0].Pass:='flls'; //Password
       Players[0].Nick:='eh'; //Nickname here 3-4 letters no nums
       Players[0].Active:=  True  ; //Are you using this player?
       Players[0].Worked:= 100     ; //How many Loads you wanna do

      { Players[1].User:='Username'; //username
       Players[1].Pass:='Password'; //Password
       Players[1].Nick:='Nickname'; //Nickname here 3-4 letters no nums!
       Players[1].Active:='True'  ; //Are you using this player?
       Players[1].Worked:= 100    ; //How many Loads you wanna do }


    end;
    ///////////////---------->>>>>DO NOT TOUCH BELOW!!!<<<<<<---------\\\\\\\\\\\\\


    procedure AntiBan; //added by Joelster134\\
    begin

        if not LoggedIn then Exit;
         case (Random(30)) of
          1:  RandomRClick;
            5:  HoverSkill('Woodcutting', False);
              11:  RandomMovement;
               15: BoredHuman;
              21: DoEmote(400 +Random(90));
             24:  PickUpMouse;
             27: begin
              Gametab(1 + Random(12));
               Wait(3220 + Random(2415));
              Gametab(4);
             end;
         30: SleepAndMoveMouse(3600);
      end;
    end;

    {~~~~~~~~~~~~~~~~~~~~~~~~)
    (Anti-Randoms are here!  )
    (~~~~~~~~~~~~~~~~~~~~~~~~}

    procedure AntiRandoms;
    begin
         findnormalrandoms;
         if findfight=true then
         begin
          runaway('E',true,1,5000+random(1000));
      end;
    end;


    begin
      ClearDebug;
      if FindColorTolerance(x,y,FlaxColor,0,0,1280,1024) then   //this way it will find it on anyones\\    //Added by Joelster134\\
      Begin
       repeat
       FindColorTolerance(x,y,FlaxColor,0,0,1280,1024);  //Added by Joelster134\\
       Writeln('Picking Flax');
       MMouse(x,y); //instead of MoveMouse\\    //Added by Joelster134\\
       AntiRandoms; //Stops Randoms\\        //Added by Joelster134\\
       Wait(1+random(5));
       Mouse(x,y,true); //instead of CLickMouse\\   //Added by Joelster134\\
       AntiRandoms;//Stops Randoms\\     //Added by Joelster134\\
       Wait(3000+random(1000));
       AntiBan;//Stops ban\\    //Added by Joelster134\\
       AntiRandoms; //STops randoms\\  //Added by Joelster134\\
      end;
    end;
    procedure DropLogsFast;//Credits to P1nky from his Anywhere PowerChopper
      var
      i: Integer;
    begin
      AntiRandoms;
      AntiBan;
      if not (InvFull) then exit; Gametab(4);
      for i := 2 To 28 Do
      begin
        AntiRandoms;
        If ExistsItem(i) then
          DropItem(i);
        until(false);
      end;
    Writeln('You will NEVER see this message');
    end.

    //also  dont add in the line
    //AntiBan; to often because it will make the script slow..

    keep reading tutorials and keep posting

    Welcome to SRL

    ~~Joel~~
    IM BACK!!!!!!!!!!!!!!!!!

  6. #6
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    Qwerty_9990 is my runescape username. Look me up

  7. #7
    Join Date
    May 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice nice nice

  8. #8
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cycrosism View Post
    Qwerty_9990 is my runescape username. Look me up
    then change it to ur SRL name please.

    Quote Originally Posted by kevin_cook2oo7 View Post
    nice nice nice

    it's not a nice script. i WILL bann you + WILL not work properly
    IM BACK!!!!!!!!!!!!!!!!!

  9. #9
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    you will bann me?

  10. #10
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think it looks good for a first script, instead of telling people to make their angle to than, then id do this:
    MakeCompass('n');

    (if thats the case)
    Put it in the procedure right after it logs in your player

    Edit: and for walking to the bank, I would use the function called RadialWalk(it uses the minimap to walk on places without roads).

  11. #11
    Join Date
    Oct 2008
    Location
    I Forgot
    Posts
    193
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    good start of a script lol, now all u need is for it to walk there, walk back and bank it then loop it

  12. #12
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    New Version Released!

  13. #13
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    mate, read a post by me a few above this. MOVEMOUSE/CLICK MOUSE WILL BAN YOU.

    his co-ords wont work on ur comp read more tuts

    THIS SCRIPT WONT WORK PROPERLY/WILL BAN YOU
    IM BACK!!!!!!!!!!!!!!!!!

  14. #14
    Join Date
    Nov 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks! Just what i needed for bow strings

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

    Default

    Keep up the good work (Y)

  16. #16
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hennil View Post
    thanks! Just what i needed for bow strings


    this script will bann you...please read posts other then jsut posting for SRL-Jun mems.
    IM BACK!!!!!!!!!!!!!!!!!

  17. #17
    Join Date
    Jul 2008
    Posts
    907
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you put a procedure after the mainloop joelster, noob mistake, you cant use it in the mainloop there.And for dropping just do DropAll; :P


  18. #18
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    it won't ban you, runescape mods can't detect scar, all they see is you clicking on flax. so mouseclick doesn't matter

  19. #19
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dude, i have been using scar longer then uve been joined. so shush.

    even if you have the most sofisticated script with anti ban etc... if u use to much you will get banned neway..i thought they couldnt detect it ? lol..you are very wrong.

    use your scripts in moderation and ull b fine.

    once flagged they start monotoring your movements.

    also mouvemouse/clickmouse is more detectable so if you wanna get banned be my guest. also
    SCAR Code:
    if(findcolor(x,y,100,100,100,100))then
    movemouse(x,y);
    Clickmouse(X,y,True);

    thats set to your co-ords on your computer..

    that means..you move the screen and its different

    plus everyone else has a different computer making it not work properly.

    read more tutorials. also it would click a full load and sit there clicking on them with a full inv...


    nice attempt but read more tut's

    ~~Joel~~
    IM BACK!!!!!!!!!!!!!!!!!

  20. #20
    Join Date
    Oct 2008
    Location
    I Forgot
    Posts
    193
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  21. #21
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    yes i am working on the radialwalk now

  22. #22
    Join Date
    Jan 2008
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I might have to give this one a try, theres not to many good flax pickers out there.

  23. #23
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    Could someone who is experianced please help me with the radial walk?

  24. #24
    Join Date
    Nov 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I will try this

  25. #25
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cycrosism View Post
    Could someone who is experianced please help me with the radial walk?
    read some tut's or add me on msn Joelster134@hotmail.com , aslo use symbol finding if there is like rare tree symbols near flax fields...you need major imrpovement on this script...im not working on anything so im willing to help.
    IM BACK!!!!!!!!!!!!!!!!!

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Flax Picker Help?
    By Lukeboy_19 in forum OSR Help
    Replies: 19
    Last Post: 07-28-2008, 03:48 PM
  2. Flax Picker And Banker Script Needed Plz!!!
    By sundeep125 in forum OSR Help
    Replies: 10
    Last Post: 11-25-2007, 05:23 PM
  3. Taking flax picker wit spinner script
    By kingsownage1 in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 08-19-2007, 05:10 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
  •