Page 1 of 6 123 ... LastLast
Results 1 to 25 of 132

Thread: flax picker spinner banker

  1. #1
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default flax picker spinner banker version 1.2

    hey guys saying there wasnt much intrest in my flax spinner i decidece to try make a flax picker spinner banker instead. its not 100% complete but it still works well.

    please post progress reports an any bugs you should find

    please auto with care thanks

    big update finished multipaths an added some more anitban an randomness

    i also added fail safes to all my loops

    known bugs

    if it levels up on the spinning wheel it stops spining can someone please tell me how to make it click click to continue so it continue if it levels up thanks


    version 1 was downloaded 20 times

  2. #2
    Join Date
    Sep 2006
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice. I will be using this soon!

  3. #3
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks man talk about leaching i was open to get some feed back on ways i can make it better but only one person has post

    i have made great progess in multipathing finaly got it to work should be out tomorrow if all goes well also added more anitban function incase you get lost

  4. #4
    Join Date
    Nov 2006
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    looks good....need more paths stuff and forums...at least 5 paths...

  5. #5
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i have currently finish 3 paths but just needs a bit more testing

  6. #6
    Join Date
    Jun 2006
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good job dude
    I will use this sometimes maybe, to get my crafting enough to do lost city on my pure

  7. #7
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    I am sorry. I dont own a Member account, so I cant check it...
    But browsing through your code now:

    PHP Code:
    procedure login1;
    begin
    if(not(loggedin)) then LoginPlayer;
    end
    Thats exactly what LoginPlayer does. Obsolete.

    PHP Code:
    procedure findbank1;

    begin
    makecompass
    ('N');

    if (
    FindSymbol(x,y'bank')) then
        wait
    (2002 random(2));
       
    MMouse(xy00);
        
    wait(1002 random(40 1));
       
    Mouse(x20true);
      
    antirandoms;
      
    flag;
    end
    If you check for the banksymbol while walking, you will end up with the wrong x and y coords, since you wait at least 2 seconds, and the minimap has moved. It will miss the bank.


    Does your pickflax procedure checks for not loggedin? otherwise please insert everywhere there is a chance of infinite loop:
    PHP Code:
    if not LoggedIn then Exit; 

    PHP Code:
    procedure tospiningwheel;

    .
    .
    .
    FindBitMapTol(XYladder5528714148);
    Mouse(x1true);
    .
    .
    .
    end
    Make MouseClick more random. 1,1 randomisation is not enough, do at least 4,4!



    PHP Code:
    procedure Door;
    begin
      MakeCompass
    ('N');
      
    repeat
        
    if FindObj(xy'Door'24536485then //Only one of the FindObj was necessary
        
    begin
          
    if IsUpText('Open'then //Only need to check for the 'Open' text
          
    begin
            Mouse
    (xy00False);
            
    Wait(500+Random(250)); //Use a random timing to reduce detectability
            
    ChooseOption(xy'Open');
            
    Flag;
          
    end else
            Break;
        
    end;
        
    Wait(500+Random(500));
      
    until(false);
      
    antirandoms;
    end
    What happens if this procedure doenst find the Door? Exactly, it loops....


    There are more situations where you use repeat until, without a failsafe. Look for instance at my Draynor melter. There is a lot of loops in there, but all will failsafes. Eventually your script gets stuck somewhere in a loop for sure. Believe me, I have been there Anything that can go wrong, will....

    But, good clean code, easy to follow and I am sure it works even though I couldnt test it
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  8. #8
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks for the feed back wt-fawaki

    weibs made that ladder finding procedure lol

    next version should be alot more random should be done by today

    edit: hmmm cant seem to find your dranyour smelter dam that would been a big help

  9. #9
    Join Date
    Aug 2006
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I will try this soon.

  10. #10
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    k thanks please post progess report if you do next version will have the option of spining or not so you ccan just pick or you can pick an spin

  11. #11
    Join Date
    Dec 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, nice script.

  12. #12
    Join Date
    Dec 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default good work

    im new but it sounds good ill download

  13. #13
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks guy i have nearly finish the next update it has the option of spining or not an i am also trying to add fourms to make it look alot cleaner should be done in a day or two

  14. #14
    Join Date
    Dec 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Looks good scarscaper. Will try to post progress report soon.

  15. #15
    Join Date
    Dec 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, spellings. Line 255, unimportant error. However, line 303 FindObj3( x, y, 'adder' ,2642028, 8);

    'adder' should be 'ladder', no?

  16. #16
    Join Date
    Dec 2006
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    RSC font has been loaded
    18.11.2006

    If you have purchased this program, reverse the payment NOW!
    1) SCAR can be freely downloaded from http://www.dylock.net/scar/
    2) SCAR does not change stats on RuneScape




    Successfully compiled
    Line 170: [Hint] (198:43): Variable 'NEWLINE' never used in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Globals.scar
    User specified a new RS window
    Successfully compiled
    Line 170: [Hint] (198:43): Variable 'NEWLINE' never used in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Globals.scar
    SRL Compiled in 734msec.
    rachelishot0
    10:00:06 am welcome to runescape.
    path1
    10:00:57 am you pick some flax.:
    10:01:46 am you can't carry any more flax.
    path2
    10:03:11 am
    10:04:03 am congratulations, you've just advanced a crafting l
    10:04:10 am you have run out of flax.
    10:05:50 am you have correctly entered your pin.
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
    THIS SCRIPT IS MADE BY SCARSCAPER4LIFE
    WORKED FOR 0
    DONE 1 TIMES SO FAR
    PICKED AN SPUN 28FLAX SO FAR
    YOU HAVE MADE5600GP so far
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
    10:06:00 am sparrow haw2: paying anyone to take me to common kebbi
    path1
    10:06:10 am hardlion: buy lava bettle stuff!!!!!!!!!!!!!!!!!!!
    10:06:36 am you pick some flax.:
    10:07:22 am you can't carry any more flax.
    path3
    10:08:43 am the forsake1: go west....till u reach the gnome agilit
    10:08:58 am the forsake1: its a long walk
    10:09:14 am rachelishot0: heh
    10:10:02 am you have run out of flax.
    10:11:33 am tubesisgod: buying laws
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
    THIS SCRIPT IS MADE BY SCARSCAPER4LIFE
    WORKED FOR 0
    DONE 2 TIMES SO FAR
    PICKED AN SPUN 56FLAX SO FAR
    YOU HAVE MADE11200GP so far
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
    path1
    10:12:15 am rachelishot0: crazy
    10:12:16 am you pick some flax.:
    path2
    10:14:15 am hineshummer: max hit
    10:15:10 am you pick some flax.:
    10:15:36 am you have run out of flax.
    Successfully executed


    There is the proggy. The adder thing, i got that wrong sorry. After he comes back from picking, he usually goes into the graveyard and then into some completely random house and just stops. Also, after he has finished spinning, if you sort of help him a lil bit to get there, he went into the building on the left of the bank, and started to search for the bank booth. And another one, you need to widen the area that he looks through in the bank to find the booths, with my char he needed me to keep mving the mouse over it.

    Other than that, mazin' script mate! Keep bringing out new versions!

  17. #17
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks yeah for some weird reason it clicks the avil in the room left of the bank when looking for bank symbol which is really really weird...
    the bank procedure is in SRL so i guess i will make my own which or use someone else

    thanks for feed back i need it so i can keep updating

  18. #18
    Join Date
    Dec 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Ya...

    Umm where can i find the includes in the script? because i have SCAR 2.03 and i've downloaded all the includes that come with it, but the ones in your script aren't included! help is appretiated!

  19. #19
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  20. #20
    Join Date
    Nov 2006
    Location
    basingstoke(u.k woot!)
    Posts
    382
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    would it be worth me buying a membership pin?

  21. #21
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    don't know up to you

  22. #22
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Wish I could try this out but I currently dont have a members account. I will soon though and I will try to post bugs and proggies.

  23. #23
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks man sorry i have realsed the next version been doing boring x-mas shopping

  24. #24
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    1,610
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    EDIT: this was posted by a guy who keylogged me. Hes a idot. I never ran this script.

    Accept that the waters around you have grown.

  25. #25
    Join Date
    Jun 2006
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    were abouts did it crash? i fix a few bugs an its alot more stable in the next version

Page 1 of 6 123 ... 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 + Spinner
    By Town in forum RS3 Outdated / Broken Scripts
    Replies: 170
    Last Post: 08-29-2007, 12:55 AM
  2. Need auto flax picker, spinner, banker
    By Killmar in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 08-07-2007, 11:19 PM
  3. Flax Picker/Spinner/Banker [EDITED]
    By marneus901 in forum RS3 Outdated / Broken Scripts
    Replies: 19
    Last Post: 07-06-2007, 07:23 AM
  4. Error with flax picker,spinner and banker
    By Crazyiom in forum OSR Help
    Replies: 1
    Last Post: 03-29-2007, 11:28 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
  •