Results 1 to 20 of 20

Thread: Bank Bone Burier [EOC]

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

    Default Bank Bone Burier [EOC]


    Thanks DannyRS for the great banner!

    This script withdraws bones from your bank, buries them, then repeats. Please do not confuse it with my bone looter and burier, as this script will not loot, and that one will not bank.

    Locations:
    • Varrock West Bank
    • Varrock East Bank
    • Falador West Bank
    • Draynor Bank


    Features:
    • Runs past 6 hours
    • Support for almost all bones.
    • EOC Burying


    Supported Bones:
    • Any bone that is whitish in colour. PM me if you can't get whitish bones to bury.


    Instructions:
    • Start player in front of any supported bank counter
    • Have your inventory empty
    • Have your bones in the first slot in your bank
    • Have the bone you want to bury in the first slot of your action bar. Set it to 1
    • Fill out the User Setup. Make sure that you set it to bury at least 28 fewer that you have in your bank.
    • Press Run.


    Requirements:
    • Bones in your bank


    Future Updates:
    • None


    Enjoy, please post any questions, suggestions, ideas, feedback, proggies, or anything else that you want to

    Progress Reports:
    Progress Report:
    =========[] Bone Burier 1.1[]=========
    [+] By BMWxi [+]      
    ================
    [] Burying: Normal Bones(4 XP Each)
    [] Prayer XP Earned: 1120  Per Hour: 15215
    [] Bones Buried:     280   Per Hour: 3803
    [] Total Time: 4 Minutes and 25 Seconds
    ========================================


    Update Log
    +V1.0 released
    +V1.1 released - InvCount failsafe added
    Last edited by Ian; 01-27-2013 at 11:46 PM. Reason: Short Proggy Added :)

  2. #2
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Gratz on the release looks great,

    And i love that you take such pride in F2P stuff


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  3. #3
    Join Date
    Nov 2012
    Location
    Runescape
    Posts
    177
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    congrats on the release. I have a couple spare mills. If this scripts buries dragon bones, I'm set .
    Check out my scripts:
    FrostChopper

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

    Default

    Quote Originally Posted by DannyRS View Post
    Gratz on the release looks great,

    And i love that you take such pride in F2P stuff
    Thanks, F2P stuff is what I know
    Quote Originally Posted by Ubuntu View Post
    congrats on the release. I have a couple spare mills. If this scripts buries dragon bones, I'm set .
    Thanks!
    Simba Code:
    begin
      if (DragonBoneColor = (10000799, 30)) then
        WriteLn('This script buries dragon bones, you are set!');
      else
        WriteLn('This script will need some modifying before you can bury dragon bones :(  ');
    end;

  5. #5
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Just wanted to share that your coörds are off at
    Line 142: if FindColorTolerance(Bx, By, 9737370, 47, 294, 114, 328, 10) then

    I think you forgot to deduct the y-Coörds with 50

    Creds to DannyRS for this wonderful sig!

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

    Default

    Quote Originally Posted by Sjoekeloe View Post
    Just wanted to share that your coörds are off at
    Line 142: if FindColorTolerance(Bx, By, 9737370, 47, 294, 114, 328, 10) then
    I'm not looking in the inventory, I'm looking in the first action bar slot . Thanks though

  7. #7
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    I'm not looking in the inventory, I'm looking in the first action bar slot . Thanks though
    Oh , my bad
    Keydown didn't work for me, changed it to actionkey ( from user: Google )
    Other than that, scripts works great.

    Creds to DannyRS for this wonderful sig!

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

    Default

    Quote Originally Posted by Sjoekeloe View Post
    Keydown didn't work for me, changed it to actionkey ( from user: Google )
    Other than that, scripts works great.
    Odd, what keyboard layout/OS do you use? I'm just wondering because KeyDown and KeyUp use virtual keys which may be windows specific.

  9. #9
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    I use windows though, it's weird I know. I got frustrated one time when I was using it to script.

    Creds to DannyRS for this wonderful sig!

  10. #10
    Join Date
    Jun 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I made one tiny change... I'm not a very experienced scripter but this was not working for me.

    I changed the function nobones to

    Function NoBones:Boolean;
    Var
    Bx, By:Integer;
    begin
    If InvCount>1 Then
    begin
    Result :=False;
    if Debug then
    WriteLn('Bones in Inv');
    end else
    begin
    Result :=True;
    if Debug then
    WriteLn('No Bones in Inv');
    end;
    end;

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

    Default

    Quote Originally Posted by padlockcode View Post
    I made one tiny change... I'm not a very experienced scripter but this was not working for me.

    I changed the function nobones to
    Hmm, what bones where you burying? I thought I'd set the tolerance for most whitish bones to work fine but maybe not. I'll update the script to look for InvCount as a backup I guess.

  12. #12
    Join Date
    Jun 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    Hmm, what bones where you burying? I thought I'd set the tolerance for most whitish bones to work fine but maybe not. I'll update the script to look for InvCount as a backup I guess.

    BabyDragon Bones


    also I dont know if your interested but i also changed the 'Bury bones' procedure and added a fail safe... because once it started saying "1111111" in chat for some reason.

    Code:
    Procedure BuryBones;
    var
    x :integer;
    begin
      if not LoggedIn then LoginPlayer;
      if not LoggedIn then Exit;
      if (not AbilityBarUp) then ToggleAbilityBar;
      x:=0;
      begin
        if not (NoBones) then
        begin
          KeyDown(49);
          repeat
          x:=x+1;
          writeln(IntToStr(X));
          if (x>45) then
          begin
             OpenWebPage('http://test-pattern.com/with-sound.htm'); //Its an alarm!
             exit;
             end;
    
    
            Wait(randomrange(400,500));
              If InvCount<3 Then
              begin
              wait(randomrange(700,1000));  // Slows down like a human might
              end;
    
          until (NoBones) or (not AbilityBarUp or (x>45));     // Fail-safes at 45 clicks
          KeyUp(49);
        end
      end;
      Antiban;
      Bones := Bones + 28;
    end;

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

    Default

    Quote Originally Posted by padlockcode View Post
    BabyDragon Bones


    also I dont know if your interested but i also changed the 'Bury bones' procedure and added a fail safe... because once it started saying "1111111" in chat for some reason.

    Code:
    Code
    Was it right when you started it or just randomly in the middle of running that it typed the ones?

    Also I added a new version that will stop if the inventory goes empty as well.

  14. #14
    Join Date
    Jun 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    it was like at 15 minutes... so I dont know, i think the Anti-Ban somehow clicked the chat? does that cause it to happen?


    Working fine otherwise. Gonna run it for 5-6 hours tonight

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

    Default

    Quote Originally Posted by padlockcode View Post
    it was like at 15 minutes... so I dont know, i think the Anti-Ban somehow clicked the chat? does that cause it to happen?


    Working fine otherwise. Gonna run it for 5-6 hours tonight
    It shouldn't, all I can think of is that there was some lag after exiting the bank so bar didn't pop up as fast as it should have. Tell me if it happens using the version I just posted (If it happens again)

  16. #16
    Join Date
    Jan 2012
    Posts
    100
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Looks great!
    Seems simple too
    Very nice!

  17. #17
    Join Date
    Dec 2011
    Location
    Ontario, Canada
    Posts
    1,735
    Mentioned
    5 Post(s)
    Quoted
    89 Post(s)

    Default

    Will be using this soon on my f2p pure after I get the 7th 99 in wc. Are you gonna bring back the bone bury script that finds bones, picks them up and buries them? Might save me some money until I get to the point when I cant stand the slow xp rates Hopefully 99 pray f2p is not super costly. Will take me a long time for sure.
    FEEL FREE TO PM ME ABOUT ANYTHING! Will help over Teamviewer...just ask!! "WITH A NEW QUESTION COMES A NEW CHALLENGE"
    Silentcore's AIO Service team !!! Pm me if you want questing done or service done or post on thread ofc

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

    Default

    Quote Originally Posted by humeruzz View Post
    Looks great!
    Seems simple too
    Very nice!
    Thanks, it is super simple
    Quote Originally Posted by kevin33 View Post
    Will be using this soon on my f2p pure after I get the 7th 99 in wc. Are you gonna bring back the bone bury script that finds bones, picks them up and buries them? Might save me some money until I get to the point when I cant stand the slow xp rates Hopefully 99 pray f2p is not super costly. Will take me a long time for sure.
    I stopped working on that one after Sin reminded me about opportunity cost.

    Basically imagine the bone looter gets 2k xp/h for free, and a money-making script gets 200k/h and then the faster bone burying script that gets 15k/h xp.

    Method 1:
    Run the bone looter and burier for 5 hours at 2k xp/h, giving 10k xp in 5 hours.

    Method 2:
    Run a money-making script at 200k gp/h for one hour.
    Use the 200k to buy 2222 normal bones, which will give 9999 xp once buried. It takes 0.6 hours to bury them (35 minutes), so run the fast burier for 35 minutes.

    So with method 2 it takes 1 hour 35 minutes to get 10k xp

    1.5 hours vs 5 hours for 10k xp

  19. #19
    Join Date
    Dec 2011
    Location
    Ontario, Canada
    Posts
    1,735
    Mentioned
    5 Post(s)
    Quoted
    89 Post(s)

    Default

    I see your logic in that. Problem is that it is costly Should make a better method for f2p. Add 1 guilded altar somewhere maybe. Would make things easier and a little cheaper. Might have to run an extra guy to loot bones somewhere for me while I skill and then transfer and bury them after.
    FEEL FREE TO PM ME ABOUT ANYTHING! Will help over Teamviewer...just ask!! "WITH A NEW QUESTION COMES A NEW CHALLENGE"
    Silentcore's AIO Service team !!! Pm me if you want questing done or service done or post on thread ofc

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

    Default

    Quote Originally Posted by kevin33 View Post
    I see your logic in that. Problem is that it is costly Should make a better method for f2p. Add 1 guilded altar somewhere maybe. Would make things easier and a little cheaper. Might have to run an extra guy to loot bones somewhere for me while I skill and then transfer and bury them after.
    I don't have banking in any locations for the looter, I'd suggest running Sjoekeloe's chocolate grinder, I think that's a few hundred gp/h

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
  •