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

Popular Content

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

  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
    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:
  19. In spirit of Frog Friday, we have a weekend release for all to enjoy. Finally got around to patching some logic which has been driving me crazy for about a year, Bank depositAllExcept. If your inventory did not have the specified item in the call, it would still individually deposit each item instead of clicking the "Deposit All" button. Other than that debugging should work again and scripters should be pleased with the new getDirectoryData() method. Example: new File(getDirectoryData()+getName()+File.separator+"info.txt"); Additionally the ScriptAnalyzer has now been disabled; I've gathered enough information from local scripts to being developing a server-sided solution. Changelog: -Patched debugging, see the "FAQ" for more information on arg flags -Improved Bank logic -Added Inventory getEmptySlotCount() -Added Script getDirectoryData() -Disabled local ScriptAnalyzer -The OSBot Staff
  20. Sorry I assumed kebabstore was an Area. If you are using a Position, I recommend you change it to this: private final Area kebabstore = new Area(3271, 3179, 3275, 3183); Also change getWalking().walk(kebabstore); To getWalking().webWalk(kebabstore);
  21. 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
  22. - Script name Tutorial Island - trial length 6 hours - Reason for trial its nice to test your scripts, and you are awesome. And fun making new accounts - Are you ging to give feedback on the script? Sure!
  23. I have a problem botting Czar, i fixed my esc mode, i made my camera angle perfect, got gp, got bronze arrows. Everytime i start script all it does is say "esc mode not detected" and it tries to fix angles but doesnt bot. please help
  24. I recommend you learn Java first, at least the basics. Follow some tutorials, write some programs, then come back to scripting. Things like syntax errors should be something that you can solve by yourself There are too many posts in the scripting help section where the OP has a problem that would be solved if he/she just spent some time learning Java.
  25. 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.
  26. If you just want to walk there then the simplest method is: private final Area[] BANKS = { Banks.AL_KHARID, Banks.ARDOUGNE_NORTH }; // add the rest public void walkToClosestBank(){ getWalking().webWalk(BANKS); }
  27. Speaking about luring: Is there any luring for knights in ardougne or any other NPCs in general I heard something about this before never seen it myself, it does open the door and picks them but leaves the door open lol.and when he walks out it follows him around dropping the exp rate by like 25-50%. Perhaps wanna run around the stalls until you find that NPC already lured? then go in and close the door behind u ^^ Also another thing i would like to mention is possibly adding pre-defined NPC locations as when you bank and from what i can imagine as the code is writtien follows: You check your position at script start and use that as a go-back location however when you are at draynor master farmers(at bank) and hes on the far side(not visible on minimap) it stands at bank until hes visible sometimes he stays there for a while and you end up logging out. I will be testing out the stalls and rogues den wallsafes and report back but I did have an idea for NPC's around the ardougne cake stall area (knights,paladins,heros, guards etc) could possibly have an option for steal for food instead of banking? steal 27 inv spots of food(or however much room you have minus 1 spot for the coins) and go pickpocket until ur out and rinse and repeat edit: Do you have some kind of checks not to get lured NPC's respawned?
  28. Hey dude, I'm currently on the 24/7 hour trial and wanted to give some feedback/questions. It seems so work pretty well BUT, I am curious as to why it runs to a random spot every time. I got into combat with a knight of ardoungue at the silk stands and it just spammed to run back and forth. Looked horribly bot like.
  29. 1 point
    can i please get a trial looks very nice ty khal (:::::
  30. 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?
  31. 1 point
    I dunno, I've heard you're quite the meme yourself.
  32. 1 point
    oshit
  33. You do get 5x from deadman range guild, I activated a trial, good luck ;)
  34. 1 point
    fart
  35. Do you also get x5 xp in deadmanmode from ranging guild?
  36. then make your own thread ._.
  37. hey can i nab a trial before i buy? thx
  38. if you cant read he say 1 atk 1 def
  39. https://gyazo.com/1c27389dc2e375a5282fc5e43094855e
  40. Good job on update, the users of my banking-related scripts thank you (as do I, now that I don't have to make custom methods ) As for the script analyzer, it was a much-needed feature, but that popup gui got really annoying :P
  41. 1 point
    you don't need a proxy unless you're gold farming or botting more than 2 accounts on one ip. you can get them for ~$4, i would never pay $5-10. i wouldn't listen to half the people here if i were you. most of them have no idea edit: you don't need an ip change either. unless you're gold farming, your ip won't be flagged
  42. well you need 100 post count to sell. and 2 negative feedbacks don't help with the price either.

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.