Results 1 to 11 of 11

Thread: Bone?

  1. #1
    Join Date
    Nov 2008
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Bone?

    HEY,,
    I just bought 2.5k BB and I need to burry them.... I cannot find a good bone burrier in varrok and suggestions?

    thanks,,

    good..

    (will be deleted one i find one )

  2. #2
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Make one Shouldn't be that hard. Just a few mouse clicks and a banking procedure. I can make a quick one tonight when I get off of work if you would like. I would just need a .bmp of a bone.

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  3. #3
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    program New;
    {.include srl/srl/misc/smart.scar}
    {.include SRL/SRL.scar}
    {.include srl/srl/misc/Users.scar}

    var x,y:integer;

    procedure term;
    Begin
      logout;
      terminatescript;
    end;


    {*******************************************************************************
    Procedure BuryBones(HowMany : Integer; WhatType : String);
    by: NaumanAkhlaQ
    Description: Burries The amount of bones specified.
    WhatType - enter in part of the uptext
    *******************************************************************************}


    Procedure BuryBones(HowMany : Integer; WhatType : String);
    Var III, C0l, IMark : Integer;
    Begin
     If HowMany > CountColorTolerance(14013914, MIX1, MIY1, MIX2, MIY2, 10) Then
       srl_Warn('BuryBones', 'Not Enough Bones Found', warn_AllVersions)
     else
      GameTab(4);
      Repeat
       If FindColorTolerance(x, y, 14013914, MIX1, MIY1, MIX2, MIY2, 15) Then
         Begin
           MMouse(x, y, 0, 0);
           C0l := GetColor(x, y);
           SRL_Procs[srl_OnFindRandom] := @Term;
           Wait(20 + Random(80));
         end;

       If IsUpText(WhatType) Then
         Begin
           Case Random(5) Of
             6 : Begin
                   Mouse(x + Random(5), y, 0, 0, False);
                   Wait(200 + Random(200));
                   ChooseOption('ury');
                   MMouse(x, y, 0, 0);
                 end
              else Mouse(x + Random(5), y, 0, 0, True);
           end;
         Inc(III);
        end;

         MarkTime(Imark);
          Repeat
            Wait(1 + Random(200));
          Until(Not(SimilarColors(c0l, GetColor(x, y), 3))) or
          (TimeFromMark(IMark) > 600 + Random(800));

      Until(III >= HowMany) or (Not(FindColorTolerance(x, y, 14013914, MIX1, MIY1, MIX2, MIY2, 10)));
      WriteLn('Bones Burried!');
    end;

    Procedure SetUpSMART;
    Begin
       WriteLn('Getting Ready - SMART');
       SmartSetupEx(108, false, true, false);
       SetTargetDC(SmartGetDC);
       repeat
         wait(100);
       until(SmartGetColor(253, 233)<>1118604);

       wait(1300+Random(2000));
        WriteLn('Loaded SMART!');
        Exit;
    end;

    Begin
      SetUpSMART;
      SetupSRL;
      SRLPlayerForm(True, [], [], [], []);
      wait(999);
      LoginPlayer;
    Repeat
      SRL_Procs[srl_OnFindRandom] := @Term;
      OpenBankFast('vwb');
      Wait(200 + Random(300));
      Withdraw(1, 1, 0);
      Wait(200 + Random(300));
      ChooseOption('ll');
      SRL_Procs[srl_OnFindRandom] := @Term;
      Wait(200 + Random(300));
      CloseBank;
      BuryBones(28, 'ones');
    Until(False);
    end.

    Its very messy, I use it for my own private usage to get randoms . Please dont critize me that much

    Use it in varrock west bank .
    Have bones in first bankslot

  4. #4
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Grr...Nauman lol. That looks nice tho.

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  5. #5
    Join Date
    Nov 2008
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Its uhh not working... it dosent click the bank it just trys and fails?

    ^^
    ya

  6. #6
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    are you at the right bank?

  7. #7
    Join Date
    Nov 2008
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Anyother ones?
    (I suck at Scripting.. trying to learn.... no patience im sorry)

  8. #8
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    SRL_Procs[srl_OnFindRandom] := @Term;


    ... How will it ever call Term if it never calls FindNormalRandoms? and why would you terminate a script if it found, per se, a certer?

    GoodPeople, i have a bone burier in the Junior Member prayer secton, probably just need some updating. go check it.

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  9. #9
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Whoops, Sorry, I forgot about that

  10. #10
    Join Date
    Nov 2008
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What is the bone burriur called and when will it be update?

    Goodpeople

  11. #11
    Join Date
    Mar 2008
    Location
    New Jersey
    Posts
    1,673
    Mentioned
    1 Post(s)
    Quoted
    9 Post(s)

    Default

    this should work, it has a good antiban of burying bones 3 different ways and sleeps every 5 loads since you get randoms a lot with bone burying as mentioned before. Tell me how it works. (works at any bank, just change which bank to where you wanna auto db-draynor, -veb-varrock eat, etc.) I'll help you setup if you want.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Bone Picker
    By jis777 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 03-06-2009, 06:59 AM
  2. big bone bury
    By mattman709 in forum First Scripts
    Replies: 15
    Last Post: 08-08-2008, 04:19 AM
  3. bone collector
    By pockets08 in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 05-18-2008, 09:44 PM
  4. Bone Burier!
    By Lancelot074 in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 03-24-2008, 05:16 PM
  5. Bone Burier 2.0
    By Wanted in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 02-04-2007, 08:49 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
  •