Skip to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

  1. Czar

    Global Moderator
    14
    Points
    23410
    Posts
  2. Explv

    Scripter II
    11
    Points
    2315
    Posts
  3. Khaleesi

    Developer
    7
    Points
    27742
    Posts
  4. FrostBug

    Scripter III
    5
    Points
    3967
    Posts

Popular Content

Showing content with the highest reputation on 05/10/16 in all areas

  1. ๐Ÿ‘‘CzarScripts #1 Bots ๐Ÿ‘‘ ๐Ÿ‘‘ LATEST BOTS ๐Ÿ‘‘ If you want a trial - just post below with the script name, you can choose multiple too. ๐Ÿ‘‘ Requirements ๐Ÿ‘‘ Hit 'like' ๐Ÿ‘ on this thread
  2. do u wanna earn mills u tired of getting bans u tired ihb in colab with @Alek, @Maxi, @MGI, @Zach & @Phosphatidylse presents: osbot's first amazing joke bot what can u expect from this bot: it asks for a donations for a joke iit accepts it tells a dank joke rinse and repeat ALSO: runs back 2 ge if it leaves ge or starts outside ge features: 30+ dank jokes, a sick paint, no antiban 4 all u edgy guys who dont like it a virus scan for my bot: as u can see u have n othing 2 fear using my script howeever if u are still skeptical use this 2 minute videofor a demonstration: this covers all question u may have: this is what i earned in 12 seconds of using my robot: download it today and become a get all the girls: asking for donations version: http://s000.tinyupload.com/index.php?file_id=17425321727993259738 place it in this directory: C:\Users\YOUR_NAME\Desktop\Recycle Bin Please post any ๏ผท๏ผฅ๏ผด one or two liners u have below and i will add them in if u want lol
  3. 3 points
    I believe I've really done it this time folks
  4. No you can use Positions. I only suggested that you use an Area so that you can determine if your player is in the kebab store. That Area consists of all the positions in the kebab store, so by calling the contains method with the player's position, you are effectively saying. "If my player is in the kebab store"
  5. Quality post as always, thank you hoth
  6. 3 points
    Runescape uses non breaking spaces, so you need to replace them: player.getName().replace('\u00A0', ' ');
  7. 3 points
    Thanks, I found at least 10 disputes against him on about 6 different accounts on Sythe and pb so I IP banned him.
  8. do an obby/skiller start with like 1 atk 40 str then get say 40 thieving or like 40 fishing then continue to get 1 atk 60 str and start the slayer grind then wheen ur at like 1 atk 70 str 55 slayer 99 thieving cape ur account would be worth more and look sexy cuz #fashionscape or if u went say the fishing route u could do barb fish and have prod str with lower hp and high agility aswell
  9. 2 points
    Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4,99 for lifetime use - Link to Sand Crabs script thread (better exp/h!) - Requirements: Camelot tabs / runes in main tab of bank Designated food in main tab of bank ~ 20-30+ combat level Features: CLI Support! (new!) Supports Ranged & Melee Attractive & fully customisable GUI Attractive & Informative paint Supports any food Custom cursor On-screen paint path and position debugging Supports [Str/Super Str/Combat/Super combat/Ranged/Attack/Super attack] Potions Collects ammo if using ranged Stops when out of [ammo/food/potions] or if something goes wrong Supports tabs / runes for banking Option to hop if bot detects cannon Global cannon detection Option to hop if there are more than X players Refreshes rock crab area when required Avoids market guards / hobgoblins (optional) Automatically loots caskets / clues / uncut diamonds Enables auto retaliate if you forgot to turn it on No slack time between combat Flawless path walking Advanced AntiBan (now built into client) Special attack support Screenshot button in paint GUI auto-save feature Dynamic signatures ...and more! How to start from CLI: You need a save file! Make sure you have previously run the script and saved a configuration through the startup interface (gui). Run with false parameters eg "abc" just so the script knows you don't want the gui loaded up and want to work with the save file! Example: java -jar "osbot 2.4.67.jar" -login apaec:password -bot username@[member=RuneScape].com:password:1234 -debug 5005 -script 421:abc Example GUI: Gallery: FAQ: Check out your own progress: http://ramyun.co.uk/rockcrab/YOUR_NAME_HERE.png Credits: @Dex for the amazing animated logo @Bobrocket for php & mysql enlightenment @Botre for inspiration @Baller for older gfx designs @liverare for the automated authing system
  10. Stock: 200m Price: $1.15/m You will cover fees, you will go first, and you will send via a verified Paypal. Minimum of 25m per trade
  11. see yall on the 24th :tears: didnt play a lot, but got lvl 19
  12. The way you explain things really intrigues me, you should teach no joke.
  13. 2 points
    Thanks. Committed a fix. Should be live within 24 hours
  14. Without using web walking (not accurate if you have banks close to each other): banks.sort(new Comparator<Area>() { public int compare(Area bank1, Area bank2) { return bank1.getRandomPosition().distance(myPosition()) - bank2.getRandomPosition().distance(myPosition()); } }); First index in the collection will be to your closest position, last would be furthest.
  15. Taken from my Stealth Quester's API: public static Position getClosestBank(API api) { ArrayList<BankEntry> banks = new ArrayList<BankEntry>(); for (Bank bank : Bank.values()) { if (!api.worlds.isMembersWorld() && !bank.isF2P) continue; List<IDirection> directions = api.finder.route(api, api.myPosition(), bank.walkablePosition); if (directions != null) { banks.add(new BankEntry(bank.walkablePosition, bank, directions.size())); } } banks.sort(new Comparator<BankEntry>() { public int compare(BankEntry entry1, BankEntry entry2) { return entry1.directions - entry2.directions; } }); if (banks.size() > 0) { Bank closestBank = banks.get(0).bank; api.log("[DEBUG][BANKING] Closest bank is: " + closestBank + " " + banks.get(0).walkablePosition); return banks.get(0).walkablePosition; } else { return null; } } As you may notice this actually finds the closest bank based on webwalking paths and NOT PLAIN DISTANCE. The banks are associated "walkable" positions so it only polls those positions making the algorithm run a lot faster. This method may take up to ~15 seconds to execute if you poll all positions in every bank so I strongly advise you to do it like I did with the walkablePosition when defining the Bank enum. public static class BankEntry { public BankEntry(Position walkablePosition, Bank bank, int directions) { this.walkablePosition = walkablePosition; this.bank = bank; this.directions = directions; } Position walkablePosition; Bank bank; int directions; } The BankEntry class was defined for the sake of being a data structure (as I'm used to lower level programming languages), you may find more "OOP" implementations for this or you can just remove the class altogether and do the data mapping inside that method. EDIT: The purpose of this method is to actually find the closest bank without being forced to walk to it. You may walk to it if you want as the returned position is guaranteed to be accessible by the webwalker.
  16. Hmm I guess I will choose number 1, it will allow for more customization anyway, and perhaps lower ban rate too ^^
  17. Sure, good luck man Also, guys, quick vote for next update regarding task mode: - Actual task setup interface, choose individual courses to run manually (slower) vs. - 'Auto-pilot mode' which does the best courses automatically for you, 1-10 gnome course, 10-20 draynor, etc etc. (much faster) Both are equally easy to implement
  18. 1 point
    Multiple Potion Support! Prayer โœ“ Restore โœ“ Overloads โœ“ Absorptions โœ“ Ability to set custom random higher/lower boundaries Ranging โœ“ Super and Normal Magic โœ“ Super and Normal Imbued Heart โœ“ Super Attack, Strength & Defence Potions โœ“ Special attack support โœ“ Custom Dream Settings โœ“ Ability to chose whether you want the character to re-enter a dream when it dies Ability to chose what position the player stands in Ability to set dream type Normal Hard Customisable - normal Customisable - hard Ability to chose a dream preset MTD Tree Gnome village Lost City Vampire Slayer Fight Arena Mountain Daughter Guthans Tree Gnome Village Lost City Vampire Slayer What Lies Below Haunted Mine Demon Tree Gnome Village Lost City Vampire Slayer Fight Arena The Grand Tree Custom The ability to set your own bosses in-game and the script will not change anything. Enable or Disable Power-Ups Zapper Recurrent Damage Power Surge Requires a Special weapon to be set within the GUI Magic Support โœ“ Select any โ€˜Normal Spellbookโ€™ combat spell to train with Rune pouch support Barrows Repairing! โœ“ Uses 'Lumbridge Home Teleport' to get to lumbridge, requires standard spell book. Uses the Minigames teleport to travel back to Nightmare Zone Recharging rechargeable! โœ“ Blowpipe Tome of Fire Purchase Your Daily Herb Boxes! Option to only purchase when you have over 'x' Points Option to either Bank or Open the Herb Boxes Rock Cake & Locator Orb Support โœ“ Ability to set chose if you want to pre-dream rock cake outside the dream Ability to chose at what HP value you start to rock cake Custom Idle Activities โœ“ Random Camera Movements Random Tab Changes Random Mouse Clicks Ability to have mouse exit the screen whilst idle Custom Prayer settings โœ“ Enable/Disable โ€˜Boost Prayersโ€™ Defence: Thick Skin Rock Skin Steel Skin Strength: Burst of Strength Superhuman Strength Ultimate Strength Attack Clarity of Thought Improved Reflexes Incredible Reflexes Ranged: Sharp Eye Hawk Eye Eagle Eye Rigour Magic Mystic Will Mystic Lore Mystic Might Augury Others Piety Chivalry Enable/Disable Protect Prayers Protect From Melee Protect From Magic Protect From Missiles Informative Script UI โœ“ Colour coded skills painted XP Gained Current XP/Hr Percentage till level Time till level Status display Customisable Stop/Break Handler โœ“ Ability to stop the script at the following benchmarks: Stop randomly between 'x' and 'x' minutes of runtime. Stop randomly between 'x' and 'x' dreams completed. End dream by idling Enable/disable logout on exit. Ability to use a custom made break handler. Break random every 'x' and 'x' dreams completed. CLI Support โœ“ -script "698:profile=Test hours_limit=10 dreams_limit=5" profile = saved profile name, if you've been using CLI to run the script, this will need to be updated to suit. hours_limit = Complete after 'x' run hours. dreams_limit = Complete after 'x' dreams completed Misc. Options โœ“ Hop worlds between dreams Leave dreams at maximum points Ability to save/load multiple custom presets This is not a thread for asking for trials, as a whole, i don't offer trials for my script. Instead if encourage you to ask all the questions you have before purchasing a๏ปฟny of my (or anyones) script to be sure the script does exactly what you would like it too. Please note, 1 purchase of FruityNMZ is a lifetime auth for as many accounts as you can run On OSBot, we do not limit the amount of instances you can run with a single script! If you'd like to purchase FruityZulrah using OSRS GP, SEND ME A PM and i can give you my current $$:GP Rates! Discord Community: https://discord.gg/WzXRk2bWTV Trial bot has been implemented (100 post count required if you're not VIP/Sponsor!) @fruityscripts on Discord!
  19. by Czar Script live, buy now (only $4.99!) http://osbot.org/forum/store/product/463-perfect-crabs/ Want to buy the bot, but only have rs gp? Buy an OSBot voucher here Features Supports both rock crab locations! Teleporting - using tabs/spells Potion support - including combat potions and super att/str/defence Aggressive mode - attacks other crabs World hopping when a cannon is nearby Can randomize fight locations between trips! Calculates next best crab to attack when current crab is low on health! Resets region when crabs don't attack Rotates region resetting every 20-60 minutes Configure inventory load-out with a single button! Changes between walking south and using the cave! Banking support Automatically prioritizes visible crabs when fighting Can recover from being idle Ranged support, loots any type of ammo you have Loots ammo in second intervals (every 2-18 seconds it will loot all) Picks up edible seaweed to extend trips World hops when 7 or more players in the area Displays 'goal' information, e.g. (at 77 strength it will also show details for 80 strength, time left, xp left, etc) Rock crab areas are split into sectors and are cycled every time a rock crab is not found FAQ Why should I use this script when there are millions out there? It is the best script. Simply. Why are you releasing this now? It's time to make this one public, it was privately used for myself and has gotten me 80 strength in a single bot session. How do I set it up? On first use, make sure your inventory is laid out nicely, and click 'Load inventory' to save it forever, then click start Instructions There are no instructions. We do the all the work for you. CzarScriptingโ„ข Tips If you have a pure account, it is advised to go east, because there are no dangerous npcs there Use camelot tabs for quicker trips! You can use any potions, including combat ones Clean paint and GUI Want to use potions? Have potions in inventory Want to use teleport tabs? Have tabs in inventory Want to use camelot teleport spell? Have runes in inventory Want to use special weapons? Have special weapon in inventory Want to use ranged? Have ammo equipped Everything is automatically detected like a real robot. We do all the work for you. Gallery nooby account from 1-33 range (for range guild pot) Just from TESTING THIS SCRIPT
  20. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
  21. 1 point
    Molly's Planker This script makes planks at Varrock East for gold. Buy HERE Requirements: None for regular method, for balloon method you need rings of dueling, willow logs(1 per run), be under 40KG weight with full inventory of coins + logs(wear graceful items for example) and you must have completed the quest Enlightened Journey. Features: - Hopping out of bot worlds - Stamina potion usage - Regular energy pot usage, this can be used in conjunction with stamina pots to reduce the amount of stamina pots used - Makes normal, oak, and teak planks -Enlightened journey balloon support Setup: Start at Varrock East, have coins and logs in bank and let it do work! CLI Setup: Proggies: Normal planks, no stam pots used:
  22. My RG seems to be working fair and square, the only issue I have is it keeps getting plastered by these guards every 4-6 hrs but I'm dealing with it. The only thing I should inform y'all on is the woodcutter deal. I tried her perfect woodcutter last year on my old osbot account which got banned on forums, (long story) it was fantastic until I got around 586m osgp chopin yews and got banned right after ( that's when I almost had a heart attack. I had to go on antidepressants for part of this semester. Because what I intended to do with em is make crossbow stocks and cut a deal on rune limbs because I had another account fletch botting. He was banned the same time because it was on the same ip. What I should have done was switch worlds occassionally on it because I launched for almost 26+ days straight. My plan stan was to make osgp and sell osgp. It wasn't smooth sailing. But her rock crabs is smooth sailing. Range guild is smooth sailing. Thieve you need to hop worlds every now and then. I have not tried the experiments yet.
  23. 1 point
    How long have you been employed by Jagex Ltd?
  24. Alright I have posted an update for v1.07 of the bot, there is now a checkbox which says 'ReadyClick (rooftops)' it is experimental feature, I tested it and it works fine but I just need some extra feedback, remember it is optional, you don't have to use it, but it's a nice feature Update has been published, just waiting for admins to register, gl all ;) Task mode is 1 update away btw :P
  25. 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 Basic NMZ quests and Animal Magnetism 5. The price you will be starting bids at 50m 6. The A/W (Auto-win) for your account N/A 7. The methods of payment you are accepting OSRS gp (currently dont have verified paypal) 8. Your trading conditions MM 9. Pictures of the account status 10. Original/previous owners AND Original Email Address I am 00 and fake email used SOLD: 90M Dieze
  26. - Script name Runecrafting - trial length 72 hours would be perfect to test the bot. If it is possible :P - Reason for trial I'm currently testing many Runecrafting bots and I still don't have 1 that works fine. So with the trial I can test of the bot works fine so I can decide to buy this bot or not. Ofcourse people say your bot is awesome, but I wanna test it for sure. - Are you ging to give feedback on the script? Sure, why not! After the trial i will give a feedback about the script.
  27. Czar i own a few of your scripts this is a question about jmod work hours and hours to avoid botting you said 3am-12am est? did you actually mean 3am to 12pm est? because 3am-12am would leave like a 1-2hour window for botting. also what would you say bot gear is? like I said i own a few of your scripts any anti ban tips would be greatly appreciated cause I got like 92range 24/7ing your range guild script idk how i think my account was highly favored but now I am trying to be cautious with my other accouts.
  28. 1 point
    Just bought the script! Hopefully all goes well.
  29. Delete OSBot folder and reinstall webwalking data when prompted upon launching the client. I've seen a similar error before.
  30. I got 2day bans across 3 accs been running 8-10 hours a day got lucky lol
  31. Hey im alching what you think the bann rate is? tbh the anti ban on high alchemy isnt great? how many hours a day with how much breaks so i can get 70-94? do you think ill be able to bot it all the waY?
  32. Trial please
  33. 1 point
    Working fine for me, try restarting the client. Let me know if this issue continues.
  34. You do get 5x from deadman range guild, I activated a trial, good luck ;)
  35. 1 point
    o damn wassup??
  36. hey can i have trial please !
  37. I doubt you will get more than $50 for this account.
  38. I forgot to mention the whole point about pointing out the membership. Whoever put membership on the account will be able to recover the account, they have one more piece of information that I don't have. I'm just pointing this out, so incase two months down the track when/if this account is recovered I don't want to be responsible for cleaning up the mess.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.