Results 1 to 7 of 7

Thread: Any easy way to add a bone burier to the script?

  1. #1
    Join Date
    Oct 2006
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Any easy way to add a bone burier to the script?

    This post is only for people who have some extra time and don't want to rip on somebody for not wanting to study a tutorial

    I am using Narcle's Fast Fighter and I want to know if I can add in a bone picker and burier in an easy way so that it picks up bones until the inventory is full, then buries them/drops anything else.

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

    Default

    you can do

    SCAR Code:
    {color of bone needs to be set as a var or const}
    if(findcolortolerance(x, y, bonecolor, MSX1, MSY1, MSX2, MSY2,  15)) then
    mmouse(x, y, 1, 1,);
    wait(100 + random(300));
    if(IsUpText('ones'); then
    mouse(x, y, 1, 1, True);
    if(InvFull) then
    begin
      repeat
      if(findcolortolerance(x, y, bonecolor, MIX1, MIY1 MIX2, MIY2, 15) then
      mmouse(x, y, 1, 1);
      wait(1500 + random(500))
      If IsUpText('ones') then
      mouse(x, y, 1, 1, true);
      until(not (findcolortolerance(x, y, bonecolor, MIX1, MIY1 MIX2, MIY2, 15)))
    end else
    {then it would go back to fighting here, and this would have to be in a fighting loop} {didn't test it but should work, if there's any errors where you put this in let me know}


    under constants put

    bonecolor =13421778;

    or if you want it to bury the bones as you get them I could have it do that too. Just let me know, but this waits till you inv is full then buries them all.

  3. #3
    Join Date
    Oct 2006
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    WOW Thank you for the VERY fast response...I'll test it out

    THANKS

  4. #4
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Make a Bitmap of the bones, then if FindBitmapTol(..) then Mouse(x,y,5,5,True);


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  5. #5
    Join Date
    Oct 2006
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Okay. I tried to add the code in procedure and set a const of the color and I'm getting duplicate identifier errors and unknown identifier 'x' errors.

    I'm really sorry but for me to understand this you are going to have to totally speak newb for 1 more post. lol

    Like explain where and how in the fight loop to place the code and how to set the color.

    I tried
    SCAR Code:
    Const
    {------------------------------------------------------------------------------}
    {===============================Player Setup===================================}
    {------------------------------------------------------------------------------}

    MySRLID       = '';//example: '9999'
    MySRLPassword = '';//example: 'password'

    UseForm     = true;//Use form? [true/false] False uses DeclarePlayers
    HaveReport  = true;//Puts some information in Report box
    PublicChat  = 'off';//Public chat on or off?
    LogoutEvery = 18;//Logout and back in every ? minutes. (9-14 is best)
    BoneColor  = 13421778;

    So IDK if thats right because thats what it looks like in the other scripts.

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

    Default

    I think you need to set x under var as an integer maybe?... send me the script and I'll see I'll try to add it in for you and I'll P.M. it back to you, I'll make sure there's no errors before I P.M. it. I'll probably just add in my procedure from my bone burier into it, but it might take me a little while if I can't understand his script right away, but it shouldn't be hard. So just P.M. me with his autofighter, I'll get it back to you probably tomorrow (Tuesday).

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

    Default

    Before the const add this line:

    Var x, y : Integer;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Bone Burier
    By hahicx in forum First Scripts
    Replies: 12
    Last Post: 08-09-2008, 04:27 PM
  2. Bone Burier!
    By Lancelot074 in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 03-24-2008, 05:16 PM
  3. Bone Burier 2.0
    By Wanted in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 02-04-2007, 08:49 PM
  4. Bone Burier
    By Infantry001 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 07-06-2006, 04:42 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
  •