Results 1 to 21 of 21

Thread: PM's Chicken Boner! Finds and buries normal bones at the north lumb chicken area.

  1. #1
    Join Date
    Dec 2010
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Thumbs up PM's Chicken Boner! Finds and buries normal bones at the north lumb chicken area.

    PM'S CHICKEN BONER!

    Collects and buries chicken bones at the Lumbridge north chicken area, the one on the path to Varrock.

    This is my first script ever!

    I made it completely off of knowledge gained from solving anti-leeches and simply observing scripts in action.

    Please post bugs!

    I forgot to mention in the script, although I credited Phury in one section of code, I also used his BoneDTM and the particular amount of 11 bones in the inventory before burying was inspired by him as well.

    FEATURES
    • Decent Antiban
    • Automatically selects a world based on your entered preference in the script
    • Logs you out if you get lost, if there's something bad or useless in the inventory, or if there's nobody left killing chickens.
    • Automatic Proggy upon terminating script (scroll up a bit in the debug box)


    PLANNED FEATURES
    • Maybe input GUIs rather than directly editing the script.
    • I am sorry to say that, because the random handler detects the combat going on around you as a combat random, it makes you randomly run around and severely reduces exp/hr, along with occasionally breaking the script. So, unless I can find a way to make it ignore combat randoms (which happen to be common randoms that occur when bone burying), random support will not be added. (You're free to give me some tips though )


    KNOWN BUGS
    • Occasionally gets stuck on feathers and continually mouses over them. The feathers will eventually disappear, making this a minor inconvinience.



    REQUIREMENTS
    • SMART or SMART8 (if using SMART rather than SMART8, remove the 8 from {DEFINE SMART8} at the beginning of the script)
    • SRL for Old School Runescape (SRL-OSR), get it here: https://github.com/SRL/SRL-OSR
    • Simply download it as a ZIP, extract the folder in the zip, rename the folder to SRL-OSR, and put it in your Includes folder, which is in your Simba folder.
    • Don't forget to install the fonts! Get them here: http://villavu.com/forum/showthread....52#post1192252 (Thanks SeanStar for posting the fonts!)
    • Directly extract the ZIP into your Fonts folder, which is also in your Simba folder.
    • Don't forget to have your brightness all the way up!


    SETUP
    • Pick the world you would like the script to choose (must be full world number, like 301 or 302)
    • Enter your login information in the appropriate areas (Name and Pass)
    • That's it!


    Simba Code:
    Procedure setWorld;
    begin
    SelectWorld(9999) //Set your world! Don't change the 9999 if you wish to manually
    end;          //set your world. Don't pick worlds that are always full.

    Procedure declarePlayers; //Enter your info so simba can log you in.
    begin                     //Borrowed from litoris's chickenkiller.
      HowManyPlayers := 1;    //http://villavu.com/forum/showthread.php?t=98595
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      with Players[0] do
      begin
        Name        := 'Your Username Here';
        Pass        := 'Your Password Here';
        Active      := True;
      end;
    end;

    Happy burying!
    Post some proggies.

    Code:
    Ver 1.0: Initial release.
    Ver 2.0: Fixed up code to fit standards, removed call for a method I removed, and added ClearDebug to clear the debug for the proggy.
    Ver 2.01: Quickfix, removed random handler because it breaks the script.
    Attached Files Attached Files
    Last edited by PersonMan; 03-21-2013 at 04:26 AM.

  2. #2
    Join Date
    May 2012
    Posts
    122
    Mentioned
    0 Post(s)
    Quoted
    28 Post(s)

    Default

    Could this possibly work in Falador?

  3. #3
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    Congrats on putting together your own script.
    You can ClearDebug; before your progress report so people don't have to scroll.

  4. #4
    Join Date
    Dec 2010
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by MaetNameno View Post
    Could this possibly work in Falador?
    Not currently as it checks for the churn to make sure you're still in the right area, but it could be added as a location.

  5. #5
    Join Date
    Mar 2013
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    I'm getting "Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba'" can someone explain what i need to do?

  6. #6
    Join Date
    Feb 2012
    Location
    Canada
    Posts
    1,164
    Mentioned
    26 Post(s)
    Quoted
    433 Post(s)

    Default

    Quote Originally Posted by haluwasa View Post
    I'm getting "Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba'" can someone explain what i need to do?
    Dude... You need to install SRL-OSR. If you read the "Requirements" section on the Original Post, you wouldn't be having this problem...

  7. #7
    Join Date
    Mar 2013
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by StickToTheScript View Post
    Dude... You need to install SRL-OSR. If you read the "Requirements" section on the Original Post, you wouldn't be having this problem...
    yea i just realized how stupid I was. lol sorry about that.

  8. #8
    Join Date
    Feb 2012
    Location
    Canada
    Posts
    1,164
    Mentioned
    26 Post(s)
    Quoted
    433 Post(s)

    Default

    Quote Originally Posted by haluwasa View Post
    yea i just realized how stupid I was. lol sorry about that.
    Not a problem.. Just read more next time. XD

  9. #9
    Join Date
    Mar 2013
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Everythings working as intended thanks a bunch, might try making one of these myself.

  10. #10
    Join Date
    Feb 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    It finds the bones and doesn't pick them up why? Do i have my screeen to bright or dark? which setting do i put the brightness on?

  11. #11
    Join Date
    Mar 2013
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by teabag View Post
    It finds the bones and doesn't pick them up why? Do i have my screeen to bright or dark? which setting do i put the brightness on?
    mines is set to max and it works fine

  12. #12
    Join Date
    Dec 2010
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by teabag View Post
    It finds the bones and doesn't pick them up why? Do i have my screeen to bright or dark? which setting do i put the brightness on?
    Ah yes you do, added that to the post.

  13. #13
    Join Date
    Feb 2013
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    what's the xp/hour on this? nice script.

  14. #14
    Join Date
    Dec 2010
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by adeghati View Post
    what's the xp/hour on this? nice script.
    It heavily depends on your world, but calculated from my most recent proggy it's about 2.5k exp/hr of free prayer exp.
    Good for getting new accs up to speed.

  15. #15
    Join Date
    Mar 2013
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    xp/hour is good considering burying bones is the most boring thing to do. Also most worlds have people killing chickens, and if not it's a perfect chance to get feathers double win.

  16. #16
    Join Date
    Mar 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228 doest work for me

  17. #17
    Join Date
    Apr 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Always logs out for me after like a minute. Atleast it's the first script I got to work today.

  18. #18
    Join Date
    Apr 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    its too slow it pauses after picking up a set of bones it should be continuously picking up bones with out pausing for so long other than that its good but sometimes it logs out for no reason

  19. #19
    Join Date
    Oct 2012
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    12 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba' used from 'C:\Users\Solveig Hjelle\Downloads\PM's Chicken BonerV2.01.simba'


    Help me please

  20. #20
    Join Date
    Apr 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    this thing sucks it logs out after like 30secs its so dumb and whenever it picks up bones and it sees the feathers it keeps on right clicking on the feather for like a minute straight and also please try to make the script pick up feathers that would be soo helpful thanks
    Last edited by amer361; 04-20-2013 at 06:40 PM.

  21. #21
    Join Date
    Jan 2015
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    @PersonMan
    If I were to want to edit this script to collect big bones in the hill giant area of the dungeon near Varrock, would the DTMs and FindObjCusom functions be the only things I need to change? Can the script get bones under other items? How would I disable/delete the randoms handler?

    Thanks.
    Last edited by dandandan; 04-21-2015 at 11:03 PM.

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
  •