Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • prechcik

    Scripter
    • Posts

      54
    • Joined

    • Last visited

    • Days Won

      2

    Everything posted by prechcik

    1. BotHeaven TeleAlcher Simple tele-alching script. Select desired teleport and item to alch and enjoy! Script will stop if it cannot cast either High Alchemy or selected teleport, so make sure to have required runes in Your inventory! Does not support rune pouch!
    2. BotHeaven Mining Simple F2P mining script featuring drop/bank setting, few F2P locations and randomized drop patterns. Make sure to have selected pickaxe in bank or inventory. Use Your own breaks and sleeps as the script doesn't have any other antiban features other than drop patterns and hovering of next rock! This script does not hop worlds in any case! Some location's don't show up if You don't meet their requirements. Supported ores: Copper/Tin, Iron, Coal, Mithril, Adamant List of locations: Bronze - Varrock East Iron - Varrock East - Rimmington (2 spots) - Al Kharid (3 spots) (Req: 28+ Combat Level) - Mining Guild F2P (not throughly tested) (Req: 60+ Mining Level) Coal - Al Kharid (Req: 28+ Combat Level) - Barbarian Village - Lumbridge - Mining Guild F2P (not throughly tested) (Req: 60+ Mining Level) Mithril - Al Kharid (Req: 28+ Combat Level) - Lumbridge - Mining Guild F2P (not throughly tested) (Req: 60+ Mining Level) Adamant - Lumbridge - Al Kharid (Req: 28+ Combat Level) - Mining Guild F2P (not throughly tested) (Req: 60+ Mining Level)
    3. I would recommend either to check the veins by their ids as they change, or look for another way of waiting until certain condition finished. As to the mining, is there anything stopping you from executing the left click only if Player is not animating? Afaik mining animation doesnt flicker so You could sleep while animating - that would prevent it from clicking again when already mining. Your name comparison is kind of weird, you said you used currentNode.getName() .equals("Ore vein") and then when the vein had name Depleted vein it still returned true, that would point out that you are comparing the wrong object.
    4. GameObject.closest() can return null, so make sure You check if it's null, then if exists i.e Sleep.sleepUntil(() -> currentNode == null || !currentNode.exists() || Inventory.isFull(), 25000)
    5. Hi, thanks for the suggestion! I have pushed an update that includes Anglerfish - as I can't test it myself now, I hope it will work as intended. Look out for SDN Bot reply with an update and let me know if there are any issues!
    6. Hi thanks for reporting an issue, can You elaborate on this? I am guessing that the script doesnt equip the harpoon automatically? EDIT I checked the issue and pushed an update that should fix the problem - look out for SDN Bot reply with an update
    7. BH Canifis Rooftops Simple Canifis Rooftop runner with basic antiban. WARNING! The bot does not get food from bank or heal! It will however stop for a moment if it's hp will be low
    8. Sure thing, i will include an option to exclude additional items from drop list!
    9. I found the issue and it will be fixed after SDN approval
    10. Thanks for liking the script! I am working on an update that will add Barbarian fishing. However it wont check if required level is met and it will need to have Barbarian rod already in the bank. On a side note the next update will introduce script data statistics logging. It will track script run time, exp gained and fish caught and send the data to my database. For those, who don't want such behaviour to happen I will implement a switch to opt out from sending the data. The data will be sent when the script stops, and maybe periodically during the script in the future updates
    11. Hey, thanks for using my script! I am glad You like it and it works like You would like to! Huge thanks for providing some bugs - I was not aware of the lumbridge banking bug - I'll work on upgrading banking and push a new update over the weekend. As to the GUI slider - sure thing, it will be fixed on next update as well! Script should support shift dropping - as long as You have it already enabled - I'll add a function that will ensure it's enabled to save some time for some users.
    12. Could You provide some more information, mainly which settings did You use? I am running this SDN script on several accounts and none of them get stuck at fishing spot - are You sure You have required equipment and selected correct settings? Are there any errors in the console?
    13. I would start with writing a function that ensures that desired item is equipped - You're doing the same thing over and over so why not cut a corner to save some lines? private boolean EnsureEquipped(int id) { if (!Equipment.contains(id)) { if (Inventory.contains(id) && Inventory.get(item) != null && Inventory.get(item).interact()) { sleepUntil(() -> Equipment.contains(id), 1500, 3000); return true; } } else { return true; } return false; } Then whenever needed in loop just call if (EnsureEquipped(IRON_SHIELD) && EnsureEquipped(IRON_HELM) && EnsureEquipped(IRON_SCIMMY)) { // Do something when all of the items are equipped } else { // Grab items from bank or buy them } Notice that interact() function returns a boolean - it looks like it returns true if it has actually clicked, so it seems like a good idea to check if we have actually clicked before firing any sleep events. With Your code it attempted to click with mostly failed result (returned false), so the code went to next line which waited for equipment to be in place, but the script didn't actually click the item so there was no wait. Above function will only wait for the item to be equipped AFTER clicking the item with a success. Also, increasing the minimum wait is needed here, as we need time for the client to actually hop the item from inventory to equipment. So using above function and Your example, we could build something like this if (EnsureEquipped(SPIKED_MANACLES) && EnsureEquipped(COMBAT_BRACELET) && EnsureEquipped(AMULET_OF_GLORY) && EnsureEquipped(IRON_SCIMMY) && EnsureEquipped(IRON_PLATEBODY) && EnsureEquipped(IRON_PLATELEGS) && EnsureEquipped(IRON_FULL_HELM) && EnsureEquipped(IRON_KITESHIELD) && EnsureEquipped(WARRIOR_RING)) { // Do something } else { // Some parts were missing, we can log that we didn't match all of the requirements here }
    14. BotHeaven Fishing Features - ZenAntiBan with modifications - Windmouse - Banking & Dropping - Profit tracker with live GE prices - Minimalistic Paint Changelog 1.0 Initial release 2.02 Rework of whole script - Introduced task system - Script no longer requires You to setup the area, those are predefined - Added support for more tools 2.05 Added barbarian fishing at Barbarian Outpost (requires Barbarian Rod in bank) Small fixes to the antiban Introduced script logging - details below 2.06 Added a customizable drop filter to avoid dropping necessary items - bot should not drop any of the fishing tools and will not drop any items from the list. Script Logging Feature that collects script's statistics - such as collected fish, script runtime and experience gained. The script only takes a hashed forum name as an identifier of user - it does not take any account credentials such as username or in-game nickname. It's whole purpose is to collect detailed script data. You can opt out of sending the data by unticking checkbox in GUI.
    15. Hello What mouse speed settings are You using? I was testing on about 50% and it purposedly missed only a few missiles over 2 hour period. I'll push an update to reduce the input lag on button clicking, maybe it was a little bit too high - hopefully this will solve this issue.
    16. Hello Yes, that happen because the script only catches fish at barbarian Village, the location that the GUI is requesting is the banking location, not fishing location. Hope that helps!
    17. Hey! Thanks for reporting the issue! I'll work on it and push it to SDN! EDIT: Alright, the update is live on SDN! It should click the correct buttons now!
    18. Thanks for the suggestion! I have updated the script and now it has the functions You have suggested! It shouldn't have so much problems with cooking this time hopefully!
    19. Hey, sorry for the late response - it looks like I forgot to user proof the food input and it couldn't find the food in Your inventory (the input needed to have capitalized first letter before). I have updated the script and should work fine now!
    20. BotHeaven - Warrior's Guild Catapult Dodger A simple script that will dodge the catapult shots at Warrior's Guild. Requirements: Stand on the same floor as the catapult, script should get it's shield automatically. 1.1 - Added Wind Mouse algorithm - Added random zooming in/out and rotating camera - Added random delay to interface clicking - Fixed points counter 1.0 - Initial release Script Logging Feature that collects script's statistics - such as actions done, items collected, script runtime and experience gained. The script only takes a hashed forum name as an identifier of user - it does not take any account credentials such as username or in-game nickname. It's whole purpose is to collect detailed script data.
    21. @forged jomo The script has been updated, it should work fine now. I would appreciate further testing and letting me know if everything is okay! Thanks again!
    22. OH, must've over looked something - i will take a look at it today and will post an update - thanks for reporting the issue!
    23. I think this was caused by Dreambot 3 new API - working on updating that. It will be included in 1.01 version that I'll try to push today
    24. BH Pickpocketter Usage: - Start the script in the desired center of area - Choose desired NPC, type name of the food and amount to get from bank - Set the area radius to look for NPC - If You pickpocket eg. Warrior woman in Varrock Castle, You can tick the checkbox for door closing - it will look for any open doors in Your training area that are open and will attempt to close them. Make sure to include the doors that You want closed in Your training area, You can use the preview included before starting the script as a guide. Features: - Auto healing at ~50% hp - Auto banking if no food or inventory full - Automatic door closing if pickpocketting in rooms - Simple AFK/AntiBan system Script Logging Feature that collects script's statistics - such as actions done, items collected, script runtime and experience gained. The script only takes a hashed forum name as an identifier of user - it does not take any account credentials such as username or in-game nickname. It's whole purpose is to collect detailed script data. You can opt out of sending the data by unticking checkbox in GUI.
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.