Results 1 to 10 of 10

Thread: [For Other Users]Bone Burier!

  1. #1
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [For Other Users]Bone Burier!

    I just made this since i have been asked about it. You can implement it into your script if you want to, but you have to give 100% credit to me on this function ok!

    All it is is it goes through the inv without having object dtm's so it will bury any bones without dtms and with other things spread out through out the inventory! I might put this one in my caff kill script since this is better than the one in there!

    Simba Code:
    program Bury;

    {$DEFINE SMART}
    {$i SRL\SRL.simba}


    Procedure Bury;
      var
        I: Integer;
    begin
        for i := 1 to 28 do
        begin
        InvMouse(I, 3);
          if IsUpText('Bury') then
          begin
            ClickMouse2(True);
            Wait(RandomRange(950, 975));
            end;
         end;
            exit;
        end;

    procedure SetupChar;

    begin

    SetupSRL();
    SetAngle(0);
    ClickNorth(0);
    end;
    procedure Startup;
    begin
      Smart_Server := 69;
      Smart_Members:= true;
      Smart_Signed := true;
      Smart_SuperDetail := false;
      SetupSRL;
      MouseSpeed := 10;
      wait(100+random(100));
    end;

    Begin
    Startup;
    SetupChar;
    Repeat
    Bury;
    Until Not(loggedin);
    end.

  2. #2
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    I don't think you can "claim" a simple for to do statement. But that is a good procedure none the less.

  3. #3
    Join Date
    Jan 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I would love it if you updated cafinated killer

  4. #4
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol nebula that works 100% flawless. Put it in as
    If InvFull then
    Begin
    Bury;
    end;

    With a simple pickup method, more than likely someone would rip them from one of my scripts but ya.

  5. #5
    Join Date
    Feb 2012
    Location
    Wilkesboro, NC
    Posts
    146
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    laakerrules, your awesome bro.

  6. #6
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks brah! Im working on making a soul wars burying script!

  7. #7
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Quote Originally Posted by laakerules View Post
    Lol nebula that works 100% flawless. Put it in as
    If InvFull then
    Begin
    Bury;
    end;

    With a simple pickup method, more than likely someone would rip them from one of my scripts but ya.
    I'm not saying this procedure isn't flawless, but I don't think you can force people to give you credit for using a for..to..do statement in their bone burying script. If I were to make a bone burying script, I would use a for..to..do statement to make things shorter and easier to read. but that doesn't mean that I should have to give you credit for it just because you made this thread.

  8. #8
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No im saying if you use this method like copy paste give me credit. If you can come up with one on your own then great im happy to see others do it! we need more combat scripters! :P

  9. #9
    Join Date
    Jan 2012
    Location
    I live in awesomeness.
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    doesnt bank?

  10. #10
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Quote Originally Posted by tepovre View Post
    doesnt bank?
    Lol this is only a function not a script
    Current Project: Retired

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
  •