Results 1 to 8 of 8

Thread: [f2p] TylerT's WellShafter

  1. #1
    Join Date
    Jun 2014
    Location
    Vancouver
    Posts
    150
    Mentioned
    1 Post(s)
    Quoted
    89 Post(s)

    Default [f2p] TylerT's WellShafter



    TylerT's WellShafter



    Version: 1.0
    Status: Works



    What does it do?
    • Using the Donation Well below the Grand Exchange, it processes regular logs into arrow shafts for some profit.

    How much does it make?
    • At current (28/09/14) Grand Exchange prices, profit is around 17k/hour

    Features
    • Progress Report with Time Running and Profit made.
    • Script will stop if you run out of logs.
    • Uses custom Donation Well banking to avoid botting hot spots.
    • Frequent and varied Antibans
    • No DTM's/Images/Bitmaps, just a script.
    • Is a F2P Runescape script, no membership required.



    Setup
    • Just follow the picture
    • Setup Simba and SRL following this tutorial.
    • Have your logs in bank slot 10 (last slot, top row) (see picture below).
    • Have one arrow shaft or more in your first inventory space.
    • Make sure your camera is zoomed all the way in.
    • Make your chatbox the smallest possible.
    • Start player at the Donation Well, south of the Grand Exchange.
    • Start the script.





    Credits


    Progress Reports
    Progress Reports

    • Post some up!


    Download



  2. #2
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Nice first script

    Simba Code:
    fletchBox := intToBox(292,333,500,350);
    wait(randomRange(20,150));
    mouseBox(fletchBox, MOUSE_LEFT)
    Can simply be:
    Simba Code:
    productionScreen.clickStart();
    and
    Simba Code:
    if tabBackpack.waitSlotPixelChange(28,50000) then
      writeln('Last backpack slot has changed, we''re done!');
      made := made + 28;
    should be the following if you don't want to add 28 on a failed load.
    Simba Code:
    if tabBackpack.waitSlotPixelChange(28,50000) then
    begin
      writeln('Last backpack slot has changed, we''re done!');
      made := made + 28;
    end;
    and lastly this can be shortened:
    Simba Code:
    if not isLoggedIn() then
    begin
      players[currentPlayer].login();
      exitSquealOfFortune();
      minimap.setAngle(MM_DIRECTION_NORTH);
      mainScreen.setAngle(MS_ANGLE_HIGH);
      mainscreen.setZoom(true);
    end;

    repeat
      if not isLoggedIn() then
        players[currentPlayer].login();
    until isLoggedIn();

    //mainloop shizzz
    repeat
      openBank();
      withdrawl();
      antiban();
      craft();
      antiban();
      report();
    until not isLoggedIn();
    to something like:
    Simba Code:
    repeat
      if not isLoggedIn() then
      begin
        players[currentPlayer].login();
        exitSquealOfFortune();
        minimap.setAngle(MM_DIRECTION_NORTH);
        mainScreen.setAngle(MS_ANGLE_HIGH);
        mainscreen.setZoom(true);
      end;

      openBank();
      withdrawl();
      antiban();
      craft();
      antiban();
      report();
    until false;

  3. #3
    Join Date
    Jun 2014
    Posts
    463
    Mentioned
    27 Post(s)
    Quoted
    229 Post(s)

    Default

    Congratulations on your release Tyler, I can't wait to see more from you! I'll test this when I have the opportunity.
    Tsunami

  4. #4
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Congrats on your first release

  5. #5
    Join Date
    Dec 2011
    Posts
    266
    Mentioned
    16 Post(s)
    Quoted
    185 Post(s)

    Default

    Congratz on the release!

  6. #6
    Join Date
    Jul 2014
    Location
    Europe
    Posts
    182
    Mentioned
    7 Post(s)
    Quoted
    103 Post(s)

  7. #7
    Join Date
    Nov 2013
    Location
    North of Hell
    Posts
    271
    Mentioned
    7 Post(s)
    Quoted
    171 Post(s)

    Default

    gratz on the release man

  8. #8
    Join Date
    Jun 2014
    Location
    Vancouver
    Posts
    150
    Mentioned
    1 Post(s)
    Quoted
    89 Post(s)

    Default

    Thanks everyone for the nice words, Thanks Mayor for the quick fixes, I will add them. Even if nobody uses the script, I enjoyed coding it!

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
  •