Jump 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 12/04/18 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. 3 points
    Item-Combiner Osbot script designed to automate any 2 item combination action. Source + Jar: https://github.com/PayPalMeRSGP/Item-Combiner Common use cases: stringing bows creating unf potions finishing potions doing hosidious favor by making special compost Usage Instructions Currently this script ONLY works with NPC bankers, so no bank chests. Also only works for game tasks where FOURTEEN of TWO item types of withdrawn and put together. Start script with an inventory setup with the 2 items to combine. The items are auto detected and the session's recipe will be set. Script will execute until either constituent item runs out. WARNING: I only check for the "Nothing interesting happens" String in game chat, it is the user's responsibility to ensure that they have the required level necessary! I don't know what the exact gamechat string for not having the required lvl, so if anyone can tell me I can remove this warning. Installation A precompiled jar of the source code has been provided for you under the compiled folder. Drop this under the scripts folder in your osbot user files directory located under your user folder on your computer. Special Notes This script is written to simulate a markov chain. Most actions such as item creation have been redundantly coded to be solved in multiple distinct ways. For example, When interacting with the widget to confirm to combine items, there are 3 choices of which one is randomly chosen. AFK (62.5%; 100/160): interact with the widget, move mouse offscreen, remain idle for some random time even after all items have been combined HoverBank (31.25%; 50/160): interact with widget, then right click hover the bank option, when all items have combined immedietly click to open the bank PrematureStop (6.25%; 10/160): interact with widget, right click hover the bank, before all items have combined, click to open the bank canceling combining the remaining items. This is meant to simulate a EHP player mistiming the game ticks. Percentages are calculated from relative probability weights I've set. The following line defines the above branch probabilities. Item-Combiner/src/nodes/bankingnodes/withdraw/Withdraw.java private List<Edge> bothItemsWithdrawn = Arrays.asList( new Edge(AFKCreation.class, 100), new Edge(HoverBankerCreation.class, 50), new Edge(PrematureStopCreation.class, 10)); The AFK branch probability is calcuated by taking the weight of that branch (100) divided by the total weight sum of every branch (100 + 50 + 10). So 100/160 = 0.625. If desired you can modify these probabilites to your own desires. Doing so may grant your script a different profile than every other user. Also the items slot of the two items chosen to be used on one another is random, by default item.interact(<item>) always interacts with the first item slot index matching the specified target item.
  3. 3 points
  4. NEW! Added Gemstone Crab! 81 Hours at Cows Brutal Black Dragon support Sulphur Nagua support Blue Dragon 99 ranged 99 Ranged at Gemstone Crab 81 Range F2p Safespotting Hill Giants Hotkey List // F1 = set cannon tile // F2 = hide paint // F3 = Set afk tile // F4 = reset afk tile // F6 = Set safespot tile // F7 = activate tile selector // F8 = Reset tile selector // F9 and F10 used by the client, EDIT: will re-assign as they are no longer used by client // F11 = Set breaks tile // F12 = Reset breaks tile User Interface Banking Tab Demo (handles everything with banking) You can copy inventory (to avoid adding individual items...), you can insert item names which have Auto-Fill (for you lazy folk!) and you can choose whether to block an item and avoid depositing it in bank, ideal for runes and ammo. Looting Tab Demo (From looting to alchemy, noted/stackable items too) You can choose whether to alch an item after looting it simply by enabling a checkbox, with a visual representation. All items are saved upon exiting the bot, for your convenience! Tasking Demo (Not to be confused with sequence mode, this is an individual task for leveling) You can set stop conditions, for example to stop the bot after looting a visage, you can have a leveling streak by changing attack styles and training all combat stats, you can have windows alert bubbles when an event occurs and an expansive layout for misc. options! Prayer Flick Demo (Just example, I made it faster after recording this GIF) There are two settings: Safe mode and efficient mode, this is safe mode: Fight Bounds Demo Allows you to setup the fight bounds easily! Simplified NPC chooser Either choose nearby (local) NPCs or enter an NPC name to find the nearest fight location! Simple interface, just click! Level Task Switch Demo (Switching to attack combat style after getting 5 defence) You can choose how often to keep levels together! e.g. switch styles every 3 levels Cannon Demo (Cannon is still experimental, beta mode!) Choose to kill npcs with a cannon, recharges at a random revolution after around 20-24 hits to make sure the cannon never goes empty too! Results Caged Ogres: How does this bot know where to find NPCs? This bot will find far-away npcs by simply typing the NPC name. All NPCs in the game, including their spawn points have been documented, the bot knows where they are. You can type 'Hill giant' while your account is in Lumbridge, and the bot will find it's way to the edgeville dungeon Hill giants area! Here is a visual representation of the spawn system in action (this is just a visual tool, map mode is not added due to it requiring too much CPU) Fight Area Example (How the bot searches for the npc 'Wolf') Walking System The script has 2 main walking options which have distinctive effects on the script. The walking system is basically a map with points and connections linking each point. It tells the script where to go, and decides the routes to take when walking to fightzones. Walking system 1 This uses a custom walking API written by myself and is constantly being updated as new fightzones are added. Pros: - Updates are instant, no waiting times - More fightzones are supported Cons: - Sometimes if an object is altered, the changes are not instant - Restarting the script too many times requires loading this webwalker each time which adds unnecessary memory (there is no way to make it only load at client startup since I don't control the client) Walking system 2 This is the default OSBot webwalking API - it is relatively new and very stable since the developers have built it, but is currently lacking certain fightzones (e.g. stronghold) and other high level requirement zones. It is perfect for normal walking (no object interactions or stairs, entrances etc) and never fails. Pros: - Stable, works perfect for normal walking - All scripters are giving code to improve the client webwalker - More efficient when restarting the script since it is loaded upon client start Cons: - No stronghold support yet - Some new/rare fightzones not supported yet - If there is a game-breaking update or an unsupported fightzone, it may take some time to add/repair (less than 24 hours usually) So which system should I choose? Whichever one suits your chosen fightzone best! There really shouldn't be any problems - the sole purpose of these options are for backup and emergency purposes, if the script ever messes up there is always the next option to select. Note: If the script ever fails, there will be immediate updates to fix the walking systems! Script Queue/Bot Manager: Script ID is 758, and the parameters will be the profile name that you saved in the fighter setup! Bug Report templates: New feature request - What is the new feature - Basic description of what the script should do - Basic actions for the script: 'Use item on item' etc. For when the script gets stuck on a tile (or continuous loop): - Which exact tile does the script get stuck on? (exact tile, not 'near the draynor village') - Plugin or normal script? - Did you try all 3 walking options? Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug - How did you make the bug happen - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? - Normal script or a plugin? - Which exact setup options are enabled? Afk mode, cannon mode, etc etc.
  5. considering low pray fire cape services on pures are like 80m each if someone wanted to get a account like this made it would be mega expensive but to sell its probably just like 100m extra on top of the account value 200-400m I reckon. much more if you had higher rep. if you built up 100 or so feedback before hitting the account market you could probably get 500m+ for it. it will be hard to get a buyer with 0 feedback. good luck with sale though.
  6. 2 points
    He posted in the wrong section and got replies relevant to the section he posted in. Don't call the people responding to a request in services as a services apes when hes in the wrong section to begin with.
  7. 24 hour progress report!! Setup Window Highly intuitive and visual, and easy to use! Portal Prediction knows which portals are going to drop - prioritises them! Full Void in <24 hours It takes only 850 points for full void, go go go! Screenshots & Results
  8. 1 point
    Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Account builder mode to level your firemaking to level 50 or even higher. - Equips pyromancer gear option - Chopping and burning logs (base Option) - Relights brazier - Fletch option - Fix brazier option - Make potion and heal pyromancer when down option - Tons of food supported - Brazier swicthing when pyromancer is down - Advanced game settings to skip games, smart caluclate points, afk at certain points, ... - Bank or Open crates - Dragon axe special attack - Fletch at brazier option - Chop in safespot option - Worldhopping - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 909:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot managers you do not need to specify -script 909): -script 909:TaskList1.4515breaks (With breaks) -script 909:TaskList1.4515breaks.discord1 (With breaks & discord) -script 909:TaskList1..discord1 (NO breaks & discord) Proggies:
  9. NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png
  10. โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ PREMIUM SUITE โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ FREE / VIP+ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ โŒ  Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - ยฃ3,99 | Chest Thiever - ยฃ2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 โŒก โŒ  AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ โŒก โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.
  11. RUNNING 4 SESSIONS PER NODE NODE [2] WITH 4 MORE BOTS Showcase: 8 bots same time generating ~2.8m/hr which equals to roughly ~67m/day! 1 MULE PER MACHINE FAQ What is the script ID? 782 Can I run this bot with the Bot Manager? Yes, the parameters will be the saved file name in the setup window, you will see once you run the bot. Can I request features added to this bot? Yes, I am always listening to requests and adding new features all the time!
  12. Note: No additional quests or PoH interiors are required anymore. Please take the time to read through the following information, they may answer your questions If not, feel free to ask in this thread Barrows Barrows is a dangerous combat minigame, located in the southern parts of Morytania. The purpose of the minigame is to kill all 6 barrow brothers and finally claim their treasure, providing a chance to receive the unique and valuable barrows equipment, as well as other precious loot. Feature Guide Starting the script Proggies (Post your own in this thread to have them added) Change Log Troubleshooting FAQ Dynamic Signatures Bug report template http://frostbug.dk/dynsig_barrows.png?username=All
  13. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
  14. 1 point
    Script thread Update: Version 1.1 is now live, featuring changes to reduce the ban rate, as well as partial Mirror Mode support (see FAQ) ! This thread is for discussions and questions regarding the FrostCaves script. Script status: LIVE (Get it HERE) Demonstration video made by @Keven during early beta testing: PLEASE read below FAQ before buying the script and/or posting your questions FAQ Troubleshooting Info Screenshots Change Log Thank you @Fruity for the graphics Thank you @Zach for making this possible in the first place
  15. Hey yโ€™all! Welcome to Evenflyoxโ€™s service thread! Getting bored training up those combat stats on your pure? Sick and tired of looking up quest guides for quests that you just canโ€™t be asked to do anymore? Stuck on getting that firecape your after? Or maybe youโ€™re just sick of the monotonous tasks that you have to do in Runescape and you donโ€™t want to bot them. Thatโ€™s where I come in. Iโ€™ve been playing Runescape now for far too long, and Iโ€™d rather not tally up the years that Iโ€™ve spent playing this game. But I have a 2100+ total level main with quest and diary cape. As well as maxing on RS3 pre-invention with 120 DG, so Iโ€™ve been around the block once or twice ?. All training will be hand done unless you request otherwise. Also keep in mind that you are simply paying for the service, this means that if you are asking for hunter to be trained, unless negotiated prior to the service starting, you are only paying for the XP. Not the chins or anything else received during the process of completing the service ? Please note that I will not be going first. If you want we may use a verified middleman and I only accept the following as terms of payment OSRS GP PayPal Order Form โ€“ What are you requesting? : Payment Method? : Middleman? : Skype or Discord: Do I have a Quest or Diary Cape? : Do you agree to the TOS? : I will always do my best to give you a time estimate, but will always be transparent about whether or not I am currently backed up on orders at the moment or not Before getting into pricing. Shoutous to @Dbuffed for giving me the idea/inspiration for starting my own service thread and adapting his pricing model. Thanks bud Official Workers: @HamSammich Packages: Quest Prices: Skill Prices: I will be updating this thread with more pricing including more packages, single quest options, skilling orders, fire capes, etc. I have already worked with some of you doing odd jobs and I hope to continue working with you in the future. Thanks for reading :). Terms of Service (Also credit of @Dbuffed for my adaptation) - You will provide everything needed for the service. When ordering with my service, you agree that you will remove all unneeded wealth. Upon failure to remove (unless given a valid reason) I am not responsible for any loss of anything due to the nature of not knowing if you have removed it by default. I will add your Skype or Discord and confirm via my thread, after this you can PM me if needing further confirmation of your order :). You will pay upfront for your work, or a middleman will be used at your expense. I do reserve the right to refuse any order for any reason. If I am unable to complete a service, you will be refunded for what is left. Any bans/mutes to the account(s) whilst doing services are not our responsibility. You will not log in whilst a service is being done, unless told you can. You will feedback upon completion of your order. Please note, OSbots TOS also comes into affect - ๏ปฟ
  16. Dear community, It has been a long search and tough decision on who we needed to continue the active development of OSBot. Several candidates were carefully reviewed and the decision was difficult to say the least. We are happy to announce that we think we have found the perfect candidate to follow up on the outstanding work that @Alek has always delivered. Without further ado, I want to present you our new developer: @Patrick A.K.A. Pat-Ji with a selfwritten introduction: The last administrative formalities are currently being taken care of and from here on out we'll be able to bring Pat-ji in to the working mix, by gradually giving him acccess to the bits and bytes of OSBot. We are really happy to have @Patrick on the team and are looking forward to his contributions to OSBot. Yours sincerely, The OSBot team
  17. 1 point
    @Divergent07is doing this for me!
  18. Well I'm at work at the moment, so I cant really try anything. But you might try like: RS2Widget spin = getWidgets().getWidgetContainingText(270, "What would you like to spin?"); //spin
  19. How's the Minnow Fishing on this? Is it human-like / low banrate? Also, the profit calculation doesn't seem to work properly for minnows.
  20. yessss my man thank you so much ! i got it
  21. @SocialGFX Somehow my Discord won't send you a friend's request. Could you send me one instead? Eagle Scripts#5266
  22. 1 point
    300k+ longterm or 700k+ suicide botting
  23. I feel so stupid, I forgot I had multiple accounts for certain scripts. I found it and all is good, I would like to say my account has never been banned and I used to fish in 2016-2017 like 10k sharks a week easy pz! Have gained around 7mil EXP with this script!
  24. Hi, I bought this script back in February 26th of 2017 at 09:16:07 PST. However, I do not have access to it anymore. I have proof of purchase and invoices and emails. Would love a response as I would like to get my account from 80 fishing to 99 soon. Thank you!----Austin
  25. Theres a 37% ban rate at Minnows. In actuality, Minnow ban rates are actually quite high, do get to the level of the bots/players you were seeing, you would probably need a really decent private script.
  26. @Czar Great job with this script. Could you however please add longer sleeps in between jumping to a new fishing spot? It's almost instantaneous and people notice. Thanks
  27. Grats on release buddy
  28. also... The "Buy this script here!" links to your AIO Fisher...
  29. I like the simplicity. I use Khal Crafter a lot
  30. Thanks guys! Some updates and tweaks are coming up ASAP Activated trials too, good luck
  31. 1 point
    Wrong section bro, https://osbot.org/forum/forum/329-script-requests/
  32. 1 point
    Hey man! I believe there is a premium fishing trawler script in the store. I would imagine that a private script for a mini game might be pretty expensive.
  33. 1 point
    Hi is it possible to get a 24h trial or any trial at all?:)
  34. hey! so i purchased you script 2 days ago, i'm having an issue, when cutting in both modes, the script gets stuck and does nothing (after like 10 mints of fletching), any idea about whats going on?
  35. Czar, the bot is running very well but can you fix that the bot do not use both sides of minnow fishing? i think its to obviously
  36. Used Tony a few times now for a bunch of stuff, Hes a trusted guy and keeps you updated on everything. 10/10 guy d'ont be afraid to use this guy!
  37. Hey whats up Czar. I just bought your script, but I have a little problem. I am making steel arrows, but the problem is that he makes 10 every time, but he just keeps re-doing it after he fletched 2, which is decreasing xp rate and increasing ban rate ( i think) how can I fix this? thanks you mate
  38. I am attempting to run lava runes with magic imbue, however I can't seem to get it to run. It just opens the bank and sits there. I am using a mystic staff with a tome of fire and fire Tiara, and have earth runes/Astrals in the inventory. Binding necklaces/Ring of duelings and Pure essence are all available in the bank. Please let me know if I am missing a step on setup.
  39. Should be fine Not bad ?
  40. it would be nice if mouse would go outside of the screen
  41. Heya Czar now, im not quite sure how the anti bottling system handles the click capacity that occurs when running this bot. I've noticed that it clicks in the same spot and seemingly at the same cadence every time. Would this be something that could possibly trigger a ban? Bot seems to be working well however Thanks!
  42. hi can I ask how many bows does this script string per hour please. cheers
  43. Why does the bot pause after every 4-5 herbs when cleaning herbs? Kills the exp and gp per hour..

Account

Navigation

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.