Page 1 of 3 123 LastLast
Results 1 to 25 of 53

Thread: Renzanity's Lumby Vial Filler - (Derived from my other script)

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

    Lightbulb Renzanity's Lumby Vial Filler - (Derived from my other script)

    F2P MONEY MAKING SCRIPT
    "LUMBY VIAL FILLER"
    Version: 5.2


    Hello again everyone, this would be my second "first script" release. And this is just a fragment of my other script. (As far as I know you can actually fill anything up with water using this script? Haha. :P)

    Features:
    -Smartimage progress report and debug progress report.
    -Player Form implemented.
    -Updated price checks.
    -Logs you out when the tasks are finished.

    Instructions of use:
    Instructions

    1. Be sure that your client is properly setup. Click me

    2. Be sure to add your account on Rafiki's Player Manager
    Rafiki Player Manager



    3. Stand infront of the Lumbridge Chest

    4. Set your PRESET 1 to empty vials

    5. Save this file in your Simba\Includes\SPS\img\runescape_other folder and rename it to LUMBY_SPS_00.
    SPS Image


    Updates:
    Updates

    EDIT:
    -Added writeLn calls on the script.
    -Fixed indentations (probably missed some though, please inform me about any improvements that you would recommend)
    I'll be posting my proggy after running 10k vials.
    Proggy for v1.1

    ================================================== =================
    ====================Renzanity Lumby Vial Filler====================
    Time Ran: 3 Hours, 41 Minutes and 53 Seconds
    Vials filled: 8820 pcs
    Batches done: 315 batches
    Estimated Total Profit Gained: 335160 gp
    Estimated profit/hr: 90627 gp
    ================================================== =================


    EDIT: v1.2 is out!
    -Lessened the lag in getting the GE prices
    -Now runs faster than v1.1

    Will be posting a proggy soon.

    EDIT:
    v1.2 proggy



    EDIT: v1.3
    -Fixed some more indentations
    -Finally implemented the antiBan() while you wait for the vials to be filled with water
    -Uploaded as SWF file to see how the script look like while running.
    -Updated the procedure for filling up the vials
    From
    Simba Code:
    //Filling the vials with water
    procedure fillVials();
    var
      x, y: integer;
    begin
      if mainscreen.findObject(x, y, 9477264, 21,colorSetting(2, 1.06, 0.21), mainscreen.playerPoint, 50, 50, 50, ['emo'], MOUSE_LEFT) then
        begin
          writeLn('Clicked the fountain.');
          if productionScreen.isOpen(1000) then
          pressKey(VK_SPACE);
          writeLn('Filling up the Vials with water...');
          wait(randomRange(16500, 17000));
          writeLn('Done filling up this batch of Vials.');
        end;
      inc(vF1);
    end;


    To
    Simba Code:
    //Filling the vials with water
    procedure fillVials();
    var
      x, y: integer;
    begin
      if mainscreen.findObject(x, y, 9477264, 21,colorSetting(2, 1.06, 0.21), mainscreen.playerPoint, 50, 50, 50, ['emo'], MOUSE_LEFT) then
      begin
        writeLn('Clicked the fountain.');

         if productionScreen.isOpen(3000) then
        begin
          writeLn('Pressing Fill.');
          productionScreen.clickStart(true);

          if progressScreen.isOpen(3000) then
          begin
            writeLn('Filling up the vials...');

            repeat
              antiBan();
              wait(randomRange(500, 1000));
            until (progressScreen.getButton() < 1);
              writeLn('Done filling up this batch of Vials.');

          end else
            writeLn('Progress screen didn''t appear within 3 sec');

        end else
          writeLn('Production screen didn''t appear within 3 sec');
      end;
      inc(vF1);
    end;


    EDIT: Proggy of the upcoming v2.0 of this script
    Features to be expected:
    -6 hour fix (Under research)
    -Removed the lag between Filling up the vials and running back to the chest procedure.
    -Working on how to add an hourly minibreak. Any advice will be very much appreciated!
    v2.0


    EDIT: v2.0 Release
    (Giving up on the 6 hour fix and minibreak for now to release v2.0 early. Still researching about it.)

    -Removed the lag between Filling up the vials and running back to the chest procedure.
    Best v2.0 Proggies

    Renz - Still ongoing



    EDIT: v2.1 Release
    -Made a change on a line in the script to get rid of the bug that makes you walk back to the bank chest when the progress screen says "Done". And instead, waits for the progress screen until it's gone on your mainscreen.

    EDIT: v3.0a Release
    -You may now enter the price of the vials on the player form.
    -Updated the script's structure
    -Minibreak/Smart reload
    -New antiBan procedure

    EDIT: v3.0b Release
    -Fixed some bad wrong lines in the script "repeat..until not tabBackPack.isEmpty." etc. (Makes the script stop after 1 batch is filled)

    EDIT: v3.1
    -Added custom paint on SMART (automatically installs the paint, just run the script twice after it spawns an error on the first try)

    EDIT: 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 vials of water 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)

    EDIT: v5.0
    -Rewritten the whole script to make it work again
    -Added an Areachecker
    -New SPS Map
    -Antiban Percentage

    EDIT: v5.2
    -You should now zoom in a little for the bot to be able to find the bankchest better
    Sample Progress Report


    Code:
    v5.2
    /=======================================\
    |======Renzanity Lumby Vial Filler======|
    |=======================================|
    | Time Ran: 05h 09m 33s                 |
    | No. of breaks taken: 2                |
    | Vials filled: 14,168 pcs              |
    | Batches done: 506 batches             |
    | Estimated Total Profit: 680,064 gp    |
    | Estimated profit/hr: 131,814 gp       |
    \=======================================/




    Please leave your concerns and progress reports in a post below!
    Attached Images Attached Images
    Attached Files Attached Files
    Last edited by Renzanity; 05-29-2016 at 08:27 PM.

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

    Default

    Proggy of the upcoming v2.0 of this script
    Features to be expected:
    -6 hour fix (Under research)
    -Removed the lag between Filling up the vials and running back to the chest procedure.
    -Working on how to add an hourly minibreak. Any advice will be very much appreciated!
    v2.0
    Last edited by Renzanity; 03-13-2015 at 05:36 PM.

  3. #3
    Join Date
    Sep 2014
    Posts
    447
    Mentioned
    10 Post(s)
    Quoted
    203 Post(s)

    Default

    Have you been banned with this method yet? I think that the GE area is being monitored too closely for me to consider that method.

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

    Default

    Quote Originally Posted by yourule97 View Post
    Have you been banned with this method yet? I think that the GE area is being monitored too closely for me to consider that method.
    I am not at the GE, I'm operating this at the Lumbridge Chest.

  5. #5
    Join Date
    Sep 2014
    Posts
    447
    Mentioned
    10 Post(s)
    Quoted
    203 Post(s)

    Default

    Quote Originally Posted by renzanity View Post
    I am not at the GE, I'm operating this at the Lumbridge Chest.
    Oh my bad, I don't think I made my post clear enough. I was asking if you've been banned at the lumbridge chest. I am interested in vial filling, but the classic GE method of vial filling has been too risky.

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

    Default

    Quote Originally Posted by yourule97 View Post
    Oh my bad, I don't think I made my post clear enough. I was asking if you've been banned at the lumbridge chest. I am interested in vial filling, but the classic GE method of vial filling has been too risky.
    Oh, there's hardly no people there actually. Unless you're on a mem's world. There are a few worlds that have like 10-20 people smithing/cooking there. And I've actually botted for almost 20hours a day for the past 4 days. (Mostly while I sleep and go out.)
    Last edited by Renzanity; 03-13-2015 at 06:12 PM.

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

    Default

    Version 2.0 is out! Read the edit above for more info.

    Please leave progress reports and/or suggestions on a post below.

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

    Default

    EDIT: v2.0 Release
    -Now with a trial minibreak function. (Exits to lobby after 3hours of running the bot and logs back in after 3mins)
    Last edited by Renzanity; 03-17-2015 at 06:36 PM.

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

    Default

    v2.1 Release
    -Made a change on a line in the script to get rid of the bug that makes you walk back to the bank chest when the progress screen says "Done". And instead, waits for the progress screen until it's gone on your mainscreen.

  10. #10
    Join Date
    Feb 2012
    Location
    Canada
    Posts
    1,164
    Mentioned
    26 Post(s)
    Quoted
    433 Post(s)

    Default

    Had to restart it a couple times for each one, but I made some minor adjustments to make it run well. Going to see how long I can run it.

    Thanks for the share!


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

    Default

    UPDATE: v3.0a Release
    -You may now enter the price of the vials on the player form.
    -Updated the script's structure
    -Minibreak/Smart reload
    -New antiBan procedure

    Enjoy!

  12. #12
    Join Date
    Mar 2015
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by renzanity View Post
    UPDATE: v3.0a Release
    -You may now enter the price of the vials on the player form.
    -Updated the script's structure
    -Minibreak/Smart reload
    -New antiBan procedure

    Enjoy!
    Hey renzity love your wine stealer script but Ive tried this one and it just goes to the fountain dosent fill anything then back to the chest then it repeats without doing anything else..

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

    Default

    Quote Originally Posted by SSGT007 View Post
    Hey renzity love your wine stealer script but Ive tried this one and it just goes to the fountain dosent fill anything then back to the chest then it repeats without doing anything else..
    Thanks for voicing out your concern!

    Things I'd like you to check:
    -Is your screen zoomed out all the way?
    -Did you set your PRESET_1 to empty vials? Click me to see how!

    If the problem still persist, please show me the debug or screenshots and a detailed report so that I may help you more.

    -Renz

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

    Default

    Update: v3.0b Release
    -Fixed some bad wrong lines in the script "repeat..until not tabBackPack.isEmpty." etc. (Makes the script stop after 1 batch is filled)

  15. #15
    Join Date
    Mar 2015
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by renzanity View Post
    Update: v3.0b Release
    -Fixed some bad wrong lines in the script "repeat..until not tabBackPack.isEmpty." etc. (Makes the script stop after 1 batch is filled)
    It actually still stops after one batch and does not open the chest

    | Time Ran: 32s |
    | No. of breaks taken: 0 |
    | Vials filled: 28 pcs |
    | Batches done: 1 batches |
    | Estimated Total Profit: 980 gp |
    | Estimated profit/hr: 85051 gp |
    \=======================================/
    Successfully executed.

  16. #16
    Join Date
    Mar 2015
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    And yes!
    Im zoomed out
    and got Lumby SPS
    and presets

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

    Default

    Quote Originally Posted by SSGT007 View Post
    It actually still stops after one batch and does not open the chest

    | Time Ran: 32s |
    | No. of breaks taken: 0 |
    | Vials filled: 28 pcs |
    | Batches done: 1 batches |
    | Estimated Total Profit: 980 gp |
    | Estimated profit/hr: 85051 gp |
    \=======================================/
    Successfully executed.
    It's working fine for me though. Try to re-download the script above.
    Code:
    v3.0b
    /=======================================\
    |======Renzanity Lumby Vial Filler======|
    |=======================================|
    | Time Ran: 01m 12s                     |
    | No. of breaks taken: 0                |
    | Vials filled: 56 pcs                  |
    | Batches done: 2 batches               |
    | Estimated Total Profit: 2016 gp       |
    | Estimated profit/hr: 94523 gp         |
    \=======================================/

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

    Default

    EDIT: v3.1
    -Added custom paint on SMART (automatically installs the paint, just run the script twice after it spawns an error on the first try)

    Getting ready to move out of my old condo and thought I'd post some updates on my scripts before that.

    Please post any bug you find on the script so I'll know what I did wrong. Thank you and enjoy.

    P.S.
    @Justin Sir, may this post and my other one be moved to the RS3 Public Money Making guide? For this script's being updated and the it's not 'that bad' now.

    Please and thank you.

    EDIT: Oops, uploaded the test script.xD Please download it again.

  19. #19
    Join Date
    Apr 2015
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Not too bad.

    Not much of a money maker nowadays though

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

    Default

    Quote Originally Posted by Zify View Post
    Not too bad.

    Not much of a money maker nowadays though
    Yep, about time this method crashed. Lol.
    Well, it's still a good 1st stepping stone to getting them gp. Since some of the higher profit money makers require a good sum of wealth to start with.

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

    Default

    EDIT: 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 vials of water 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!

  22. #22
    Join Date
    Mar 2014
    Location
    East Coast, USA
    Posts
    291
    Mentioned
    10 Post(s)
    Quoted
    148 Post(s)

    Default

    Quote Originally Posted by Renzanity View Post
    EDIT: 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 vials of water 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!
    Hey Renzanity,

    Just wanted to say I started using this to gain some quick cash and it is going well (the gp/h is great for someone that only had 10k to start) My question is, the output looks like this:
    |=======================================|
    | Time Ran: 19m 48s |
    | No. of breaks taken: 0 |
    | Vials filled: 0 pcs |
    | Batches done: 32 batches |
    | Estimated Total Profit: 0 gp |
    | Estimated profit/hr: 0 gp |
    \=======================================/
    Any reason it isn't recording the vials done or profit? Let me know.

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

    Default

    v5.0 release
    -Rewritten the whole script to make it work again
    -Added an Areachecker
    -New SPS Map
    -Antiban Percentage

  24. #24
    Join Date
    Jan 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey Renzanity
    Downloaded ver 5.0, followed all the steps and atm it's just opening my bank and doing nothing else after that.

    Edit: After going to your jug filler and using the LUMBY_SPS_00 and following the instructions there using it for this script it now works perfectly.
    Last edited by Chilarus; 04-21-2016 at 07:48 PM.

  25. #25
    Join Date
    Dec 2006
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Not working for me, started it a few times and it just runs in all random locations.

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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