Page 4 of 5 FirstFirst ... 2345 LastLast
Results 76 to 100 of 118

Thread: AIO Flax Picker & Spinner - Renzanity

  1. #76
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Quote Originally Posted by Miningboy11 View Post
    Not fix :-( was runing good for 2.4h
    i.gyazo.com/064c7cf9687abbcd5a52e3ccb4ce2faa.gif
    Try changing the waitTime on this part of the script (line 211):
    Lodestone procedure

    From this:
    Simba Code:
    {*Taverley lodestone*}
    procedure lodeTav();
    begin
      if (not isLoggedIn()) or (tabBackPack.isFull()) then
        exit;

      writeLn('Using Taverley lodestone..');
      lodestoneScreen.teleportTo(LOCATION_TAVERLEY);
      wait(randomRange(16800, 18000)); //To wait for the screen to load..
    end;
    To this:
    Simba Code:
    {*Taverley lodestone*}
    procedure lodeTav();
    begin
      if (not isLoggedIn()) or (tabBackPack.isFull()) then
        exit;

      writeLn('Using Taverley lodestone..');
      lodestoneScreen.teleportTo(LOCATION_TAVERLEY);
      wait(randomRange(19000, 20000)); //To wait for the screen to load..
    end;


    If that still doesn't work...

    The last advice I can give you right now is to stop running too many clients at once because your PC simply can't cope with the amount of SMART clients simultaneously opened. I can't replicate your problem so I'm currently unable to clarify if I need to fix the script or the problem is with your PC.

    Goodluck.

  2. #77
    Join Date
    Jun 2014
    Posts
    369
    Mentioned
    14 Post(s)
    Quoted
    217 Post(s)

    Default

    Quote Originally Posted by Renzanity View Post
    Try changing the waitTime on this part of the script (line 211):
    Lodestone procedure

    From this:
    Simba Code:
    {*Taverley lodestone*}
    procedure lodeTav();
    begin
      if (not isLoggedIn()) or (tabBackPack.isFull()) then
        exit;

      writeLn('Using Taverley lodestone..');
      lodestoneScreen.teleportTo(LOCATION_TAVERLEY);
      wait(randomRange(16800, 18000)); //To wait for the screen to load..
    end;
    To this:
    Simba Code:
    {*Taverley lodestone*}
    procedure lodeTav();
    begin
      if (not isLoggedIn()) or (tabBackPack.isFull()) then
        exit;

      writeLn('Using Taverley lodestone..');
      lodestoneScreen.teleportTo(LOCATION_TAVERLEY);
      wait(randomRange(19000, 20000)); //To wait for the screen to load..
    end;


    If that still doesn't work...

    The last advice I can give you right now is to stop running too many clients at once because your PC simply can't cope with the amount of SMART clients simultaneously opened. I can't replicate your problem so I'm currently unable to clarify if I need to fix the script or the problem is with your PC.

    Goodluck.
    I done that before i'm go to see i can test code but not code it.

  3. #78
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Quote Originally Posted by Miningboy11 View Post
    I done that before i'm go to see i can test code but not code it.
    Just change line 211 into this
    Simba Code:
    wait(randomRange(19000, 20000));
    Or what time works for you. 19000 = 19 seconds and 20000 = 20 seconds. You can change it to 25000 if you're getting that much lag.

  4. #79
    Join Date
    Apr 2015
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    21 Post(s)

    Default

    Works flawlessly, thanks!

    FlaxProggy.png

  5. #80
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Quote Originally Posted by SmallP3n0r View Post
    Works flawlessly, thanks!

    FlaxProggy.png
    I appreciate the progress report, man.

    Welcome to the community.

  6. #81
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Update: v3.2
    -Changed the findObj function.
    -Added random mouse actions while picking flax.
    -Edited the antiBan a bit.

  7. #82
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Update: v4.0
    -Added the break, break length and run timer on the playerForm. (You may now specify how long before you take breaks or to run the script)
    -Now uses DTM to count the bowstrings for the progress report.
    -Pretty much updated the whole script.
    -Sadly, still no multiplayer capabilities. (If there's somebody who can help me out, leave me a PM)

    P.S.
    Been a while since I've updated my scripts. Enjoy.

    Leave suggestions and/or bugs on a post below, thanks!

  8. #83
    Join Date
    May 2015
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    32 Post(s)

    Default

    How much does this make per hour?

  9. #84
    Join Date
    Dec 2011
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by rickhunley View Post
    How much does this make per hour?
    From what I remember of doing Flax is that you are able to pick roughly 1k flax per hour. Correct me if I'm wrong

  10. #85
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Quote Originally Posted by rickhunley View Post
    How much does this make per hour?
    I'm not sure how much, I made this script so that I can collect bowstrings. :P

    But if you checkout the progress report of SmallP3n0r: 'Click Me', you can see that it picks and spins bowstrings for about 589 an hour before, but I think it reaches 650-700 now(haven't been running this for a while now).

  11. #86
    Join Date
    Jun 2014
    Posts
    369
    Mentioned
    14 Post(s)
    Quoted
    217 Post(s)

    Default

    Quote Originally Posted by Renzanity View Post
    I'm not sure how much, I made this script so that I can collect bowstrings. :P

    But if you checkout the progress report of SmallP3n0r: 'Click Me', you can see that it picks and spins bowstrings for about 589 an hour before, but I think it reaches 650-700 now(haven't been running this for a while now).
    bug

  12. #87
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Quote Originally Posted by Miningboy11 View Post
    bug
    Hey there,

    Your camera's off angle. Messed up the bank finding because the colors are different when your camera angle's in that position.

  13. #88
    Join Date
    May 2015
    Location
    I'm not sure.
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    hey man, good script! nice work.

  14. #89
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Update: v4.1
    -Edited the paths to each areas
    -Changed the break procedure
    -Edited a few minor details on the script
    -You now have a choice whether to use the lodestone to go back to the flax field or run back there after banking
    -Uses the lodestone if you suddenly wander off the taverley area or if you start the script outside of the said area

  15. #90
    Join Date
    Jun 2014
    Posts
    369
    Mentioned
    14 Post(s)
    Quoted
    217 Post(s)

    Default

    Quote Originally Posted by Renzanity View Post
    Update: v4.1
    -Edited the paths to each areas
    -Changed the break procedure
    -Edited a few minor details on the script
    -You now have a choice whether to use the lodestone to go back to the flax field or run back there after banking
    -Uses the lodestone if you suddenly wander off the taverley area or if you start the script outside of the said area
    This is just a idea.
    Make it so you can use the flax out of your bank.

  16. #91
    Join Date
    May 2015
    Posts
    54
    Mentioned
    0 Post(s)
    Quoted
    24 Post(s)

    Default

    Hey man, for some reason the script will get stuck at saying this. It has done it multiple times now, not sure if I have something setup wrong?

    KvNeCkj.jpg


    Then just started it up and this is all it did, but this time it actually logged back in. I must have something wrong on the previous times.

    4uQ0EXV.jpg


    Like these other pictures I post it keeps only running for about 2-10 minutes killing the client then says it will reload with a negative number so like -2.
    Last edited by Oratic; 06-04-2015 at 02:33 PM.

  17. #92
    Join Date
    Apr 2015
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    So the bot only spins 5 bow strings, anyway to change that? Because I tried looking for the code but was unable to. I really tried :c

  18. #93
    Join Date
    Jul 2015
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Mine is not banking my bow strings.

    Code:
    -- sps.getPlayerPos(): result = {X = 110, Y = 178}, took 78 ms
    -- sps.walkPath(): result = True
    -- TRSBankscreen.__openChest()
    ---- ERROR: Failed to find enough good bank chest edges
    -- TRSBankscreen.__openChest(): result = false
    -- sps.getPlayerPos(): result = {X = 110, Y = 178}, took 93 ms
    ---- Waiting while the player is moving...
    -- sps.walkPath(): result = True
    -- TRSBankscreen.__openChest()
    ---- ERROR: Failed to find enough good bank chest edges
    My camera angle is exactly north, all the way zoomed out.

  19. #94
    Join Date
    Jul 2015
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the script! I was just wondering though is it meant to only turn 5 bowstrings each time? because if not i dont know

  20. #95
    Join Date
    Mar 2014
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    works great for me! but i want logg back on, if its get disconnected. which would be nice

  21. #96
    Join Date
    Sep 2015
    Posts
    8
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    I have used this script to pick over 8k flax with no problem, I really like this script and I will post a proggy next time I run it.

  22. #97
    Join Date
    Dec 2015
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Is this worth getting members for?

  23. #98
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Update: v5.0
    -Updated the script to make it work again
    -New SPS map
    Last edited by Renzanity; 05-01-2016 at 04:37 AM.

  24. #99
    Join Date
    Feb 2015
    Location
    Taguig, Philippines
    Posts
    342
    Mentioned
    15 Post(s)
    Quoted
    137 Post(s)

    Default

    Update: v5.2
    -Edited the findObj function to click on random offsets from the middle of the ATPA

  25. #100
    Join Date
    Oct 2007
    Posts
    187
    Mentioned
    7 Post(s)
    Quoted
    61 Post(s)

    Default

    I'm getting stuck with the error "Please wait...now installing Renzanity's Taverley Flax Pick n Spin assets to your computer...
    -- INSTALLATION STATUS: Script Paint exists." any idea what i'm doing wrong?

    EDIT: just noticed an update broke the login functions.
    Last edited by klamor; 05-09-2016 at 04:56 PM.

Page 4 of 5 FirstFirst ... 2345 LastLast

Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •