Jump to content

Search the Community

Showing results for tags 'mining'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • OSBot
    • News & Announcements
    • Community Discussion
    • Bot Manager
    • Support Section
    • Mirror Client VIP
    • Script Factory
  • Scripts
    • Official OSBot Scripts
    • Script Factory
    • Unofficial Scripts & Applications
    • Script Requests
  • Market
    • OSBot Official Voucher Shop
    • Currency
    • Accounts
    • Services
    • Other & Membership Codes
    • Disputes
  • Graphics
    • Graphics
  • Archive

Product Groups

  • Premium Scripts
    • Combat & Slayer
    • Money Making
    • Minigames
    • Others
    • Plugins
    • Agility
    • Mining & Smithing
    • Woodcutting & Firemaking
    • Fishing & Cooking
    • Fletching & Crafting
    • Farming & Herblore
    • Magic & Prayer
    • Hunter
    • Thieving
    • Construction
    • Runecrafting
  • Donations
  • OSBot Membership
  • Backup

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


MSN


Website URL


ICQ


Yahoo


Skype


Location:


Interests

Found 17 results

  1. MW Iron Series - Smithing & Mining Elevate your (G)(H)Ironman OSBOT gameplay with our script! Experience unparalleled mastery with the utmost safety and convenience, setting you apart in the community. There are no trials available for this script. Why is that? It makes it all up in every small detail of quality in the script. >> SET YOURSELF APART RIGHT NOW AND BECOME ONE OF THE ELITE BY CLICKING HERE<< ️"SET IT AND FORGET IT" - MW️ Automate your gameplay with our unique script, specially tailored for the dedicated OSBOT player. CONTEST: win a 24 day membership code >>120 hours runtime >> Start with 1 Smithing & Mining >> Reach atleast 50 Smithing & Mining >> Join MW Discord Proof that you are the most elite botter Show how competitive you are! Who can get the highest run time? We track your progress, show those big cojones of yours! Quick Start with CLI: java -jar "osbotjar" -script 1206:NeverBreak=false_BotMin=15_BotMax=30_BreakMin=15_BreakMax=30 NeverBreak: Set to true if you don't want the script to take breaks. BotMin/Max: Decide how long your bot runs before taking a break. BreakMin/Max: Decide the length of your bot's breaks. Features: Dynamic Task Queuing: Adapts automatically to your skill level and in-game conditions. Integrated Break Manager: You decide the break durations, making the bot's actions even more human-like. Advanced Anti-Pattern Mechanisms: Randomized tasks to mimic human behavior. Safety First: Hardcore ironman safe. We don't take risks with your account. ...and MUCH MORE! >> What are you waiting for? Become one of the elite by clicking here << Users: Screenshots: Supported Items: Note on Runite: Due to the safety of hardcore ironman accounts, we do not support mining runite. In our opinion, the risk is too high, and we prioritize your account's safety. Feedback & Reviews: We pride ourselves on our active community engagement and transparency. See what others are saying and leave your feedback!
  2. Hello everyone, it's DROID ! I've got another simple but effective script for you. I designed this script because I wanted to ensure my new accounts would have extra skilling supplies (in case they die, accidentally drop something, etc). It will collect Bronze axes/Tinderboxes, Bronze Pickaxes, Small fishing nets, or ALL of the above. It does this by speaking with the various skilling tutors around Lumbridge. The script features a drop down menu where you can choose which items to collect. The script is available for download on the SF script network! issues/questions/bugs/comments/wanna chat? ---> pm me on discord: DROID#3850
  3. Original script by IRON. Edited by BotTheStrange then I made a couple of small improvements and fixes myself. I updated the issue where the script would sometimes click the same ore vein multiple times even thou it was already interacting with it. Fixed issue where if pay-dirt was in the hopper but strut wasn't fixed it would continuously click the hopper. Fixed issue when using mithril pickaxe it wouldn't detect the item as a valid pickaxe. Added support for Crystal pickaxe. Added support for special attack with Dragon and crystal pickaxe.
  4. I am learning how to script and have started with a mining script. I have some previous programming knowledge but I'm learning the api. The bot walks to the mining spot then banks when he is done and walks back. When he is getting attacked by a mugger he just keeps trying to mine. It shows in the logs when I am under attack. Not sure how to make him run. (I would appreciate any tips on how to make my code more efficient as I know it's pretty messy) LINK TO CODE: https://pastebin.com/1imvcf7D
  5. Eren's Basic Motherlode Very good for low mining levels (30-70) Banks everything Current version 0.5 Version 0.3: Faster Ores p/h Bug fixes No hammer needed anymore Version 0.4: Speed improvement (current) Version 0.5: Added a lot of antiban Improved randomness Added Idle while mining *in-the-making* 0.6 : Adding "human" like walking Adding 2 more locations IMPORTANT Only stays on the lower level Player should have pickaxe in inventory Sometime it skips a filled sack, don't worry about that it will get it one the next run It's free XP Speeds: Adamantite pickaxe: 310 p/h Rune pickaxe: 330 p/h Screenshot: Download: Motherloader.jar
  6. All the accounts have : -Coal Bag + Ice Gloves -59+ mining -60+ smithing -11QP -Some of them have 6+ days of membership -Some Combat Stats -No email set ! -No bans to the account ! Send me a private message if you are interested in buying many of them
  7. I started this account with the intent to make it my AFK money maker, but I’m focusing on my main more then I thought, just looking for a rough price estimate.
  8. 1. Pictures of the account stats 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) 4. Pictures of the quests completed 0qp 5. The price you will be starting bids at 25M 6. The A/W (Auto-win) for your account 35M 7. The methods of payment you are accepting 07gp/skrill 8. Your trading conditions you go first 9. Pictures of the account status 10. Original/previous owners AND Original Email Address OO -> https://osbot.org/forum/profile/296804-blurper/ unregisterd email
  9. So the first time I ran my script, in the if statement that returns State.MINE didn't have "miningArea.contains(myPosition())" included in it. The script ran fine and returned State.MINE when the criteria was met, but once I added "miningArea.contains(myPosition())" if went to the default return case State.WAIT every time. This seems to be the case anytime I use AREA.contains(myPosition()) in an if/else statement. I also double checked to make sure my player was in the area "mineArea". I'm new to scripting so I might be missing something completely obvious so please point anything out. private State getState() { Area miningArea = new Area(3221, 3150, 3226, 3143); Area bankArea = new Area(3205, 3223, 3212, 3214); bankArea.setPlane(2); /* * if (I'm at the mine) * if (My inventories empty and I'm not animating) * Mine Rocks */ if (!getInventory().isFull() && !myPlayer().isAnimating() && miningArea.contains(myPosition())) { log("mining. . ."); return State.MINE; /* * if (I'm at the mine and my inventory is full) * Run to the bank */ } else if (getInventory().isFull() && !bankArea.contains(myPosition())) { log("running to bank. . ."); return State.RUN_BANK; /* * if (I'm at the bank and my inventory is empty) Run to the mine */ } else if (bankArea.contains(myPosition()) && getInventory().isEmpty()) { log("running to mine. . ."); return State.RUN_MINE; /* * if (I'm at the bank and my inventory is full) * Bank Items */ } else if (bankArea.contains(myPosition()) && getInventory().isFull()) { log("banking. . ."); return State.BANK; /* * none of the other conditions are satisfied * Wait */ } else { log("waiting. . ."); return State.WAIT; } }
  10. V 0.1 (like, not even alpha really) First "script" I've ever made. Please DO NOT use this on any accounts you care about. lol ~~~~~~~~~~~~~~ How to use ~~~~~~~~~~~~~~ Bring a pickax with you to any iron ore spot. 'Run' the script. ~~~~~~~~~~~~~ Requirements ~~~~~~~~~~~~~ A pickaxe 15 mining (or boosts) ~~~~~~~~~~~~~~ Download ~~~~~~~~~~~~~~ Here's the DeadIron.Jar Download Link (just click here) (place the .Jar file in your local script folder located at C:/Users/NAME/OSBot/Scripts) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Screenshot of it running I guess; For real though, this is the result of browsing the forums for a few hours and trying to figure out what threads are actually up to date and what threads are not It tends to wonder off to further away ore's if it gets bored, and that is something I plan on fixing before adding any more features. I would however like to add banking as an option shortly afterwards. - Deadfish
  11. Hiya, I'm looking for a skiller with a high stat (ideally 92+ mining is what I would love), but anything that I can use to make some gp on the side would be great. I don't mind a botted account so long as it hasn't been botted for a while and isn't at risk of an upcoming ban. An account with a previous 2 day ban is fine, I don't really mind how recent it was. Budget is around 30m OSRS, but I can go higher if the account deserves it and I'm happy to have a discussion about price. Happy to go first to trusted users or otherwise we can use an MM. Post or PM me anything you have! edit: I'd even take an account close to 92 mining. Thanks!
  12. Hi there, If I provide an account with around 70 mining and various other stats to make it look a bit more legit, how much to get an account to 92 mining. I am more than happy if the account is botted to 92, provided you give me a timeframe (I would expect a long-ish time frame as I know suiciding to 92 is just a dumb idea) and how you would be doing it + your botting experience. Hand done I may be interested, but the cost of it would likely exceed my budget. Happy to go 50/50 or all up front to a trusted member, or have a MM hold the gp on a level 3 to which you would receive on the account being completed. PM me if you are interested. Thank you.
  13. Form: What're you looking for?: Do you agree to Terms of Service?: Did you add My Skype?: If you're hesitate about my Skype you can click the button below.
  14. as the title suggests im looking for a manual prospector kit service. I can pay via paypal or osrs gold
  15. I'm trying to make a bot script for powermining. Is there any code that interacts with an entity at a specific location instead of proximity. EX: RS2Object rock1 = getObjects().position(1,2,3); if(MINING_AREA.contains(myPlayer())) { if (rocks != null) { if (!myPlayer().isAnimating()) { rock1.interact("Mine"); } } } instead of RS2Object rocks = getObjects().closest("Rocks"); if(MINING_AREA.contains(myPlayer())) { if (rocks != null) { if (!myPlayer().isAnimating()) { rocks.interact("Mine"); } } }
  16. snipars

    Buying Miner

    Basically just looking for an account with a high mining level don't really care about other stats. Max I can spend is about $20 (college life has left me broke) so offer me.
  17. Hi, I'm willing to offer the OSB community with the following services, free in exchange for + Rep once the service has been completed. *7QP - I'll get 7QP on your account, reguardless of starter cash. *Powerleveling(~12 hours), I'll mirror-mode train your accounts in: -Fishing -Woodcutting -Mining -Combat *Tutorial Island - I'll make an account for you(verified emails/Legit char name), run it through tut island and give you the details, all for a +1 Rep. PM me!
×
×
  • Create New...