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. Alek

    Ex-Staff
    17
    Points
    7878
    Posts
  2. Khaleesi

    Developer
    17
    Points
    27816
    Posts
  3. Czar

    Global Moderator
    12
    Points
    23648
    Posts
  4. ProjectPact

    Script Factory Developer
    7
    Points
    6493
    Posts

Popular Content

Showing content with the highest reputation on 12/08/16 in all areas

  1. When is it being released @FrostBug? :xboge:
  2. ๐Ÿ‘‘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
  3. 4 points
    'RoomScape', that's cute.
  4. Just report the thread with whatever name change you want and a mod will get to it as soon as possible. All we ask is that you please do not abuse this.
  5. :xcate: All hail @Alek for adding Merry cmass nubs
  6. Going to get full void and fighters torso on my new main guys Got top void piece y/day on 12/8/16 wew full melee void 12/8/16 boys got made/range helm left to get PC Points Needed for FULL VOID (RANGE/MAGE/MELEE) 1250 POINTS PC Points Gotten 850 POINTS
  7. 3 points
    My name is Keven, and I'm the dankest memer alive. To the outside world, I'm an ordinary lonely student, but secretly with the help of my friends on osbot, I fight weebs and find other dank memers like me. I hunted down the weeb who ruined osbot, but in doing so, I opened up our world to new threats, and I'm the only one dank enough to stop them. I am Mr Memer.
  8. 3 points
    thanks homie
  9. You can script wherever you want unless you have the "Scripter" title. There is only one place you can't script with that title, and you learn about it once you get the rank. Other than that go wild.
  10. PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.
  11. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
  12. Khal AIO Stronghold ยฉ Created by @Ericthecmh No longer being sold! Are you bored of training hours and hours to reach that lvl 99? Do you want to make some quick cash while training? Khal AIO Stronghold is your utimate solution to all your needs. Get insane exp while getting awesome profits NOW! GUI Preview: Current Features: - Supports any room and any monster in the Stronghold of Security! - Advanced antiban system - Full loot support - Food and banking support - Informative and decorative paint - B2P support - Bone burial fro easy prayer exp - Settings saving/loading - Eat food to make space for loot - Range support - Mage support How do I start this script? Reviews: Progress Reports (click spoiler to view more): Bug report format: Mirror or normal Version of OSBot client (number, not something like "latest") Description of bug report Description of how to replicate if possible Screenshot if possible
  13. If I've missed any, let me know and I'll add them. It seems like a lot of people are having problems with this, so I want to fix this up. It's a very simple thing that greatly improves the readability of your code Variables: All variable names should start with a lower case letter for the sake of clarity. Example: private long time = System.currentTimeMillis(); Another example: private Area area = new Area(1, 2, 3, 4); Notice how the names in both are lower case. If you want to make a variable with more than 1 word, you would capitalize the first letter of the second word. private Area theArea = new Area(1, 2, 3, 4); private long timeStarted = System.currentTimeMillis(); Note that methods follow essentially the same format. Examples: public int onLoop() { return 0; } Note that the first word is not capitalized, but the second word is capitalized. public void eat() { } The first word is also not capitalized. Simple, right? Constants This is used for values such as widget ID's - values that are final that never changed. All letters are upper case and instead of putting a capital letter to start a new word, instead put a _ to signify a space. private static final int SOME_ID = 57; public static final int TIN_ROCK_COLOUR = 53; Thanks to @@Transporter for reminding me to put this in Objects and class definitions Classes define objects, and their first letter is always capitalized so people know that a class is being referenced. Notice how we said: private Area theArea = new Area(1, 2, 3, 4); The 'Area' object has a capital first letter, so we know we're not referencing another variable, for instance the one we named just before called 'area'. If we are defining a class, we would do it like so: public class Thing { //attributes } *** Notice the upper case first letter! *** If we wanted to define a 'Thing', then we would say: Thing something = new Thing(); ^ capitalized ^ capitalized Enums If you're not familiar with what enums is, but you're still coding on OSBot, this will probably look familiar to you: private enum State { BANK, MINE, RUN_AWAY }; Notice that all letters are capitalized. This is how enums are named - exactly like the static IDs from before. This is a very simple task that takes about 5 seconds to learn. If you're not going to properly format your code, and you ask someone for help, you will come across as either very unknowledgeable or just lazy. If you have any questions, please feel free to ask . If I made any mistakes, tell me - I wrote this up in about 5 minutes.
  14. Im sorry to say but there is literally no way for us to prove who botted on this account. 24 Hours is enough time for both parties to have botted on it (meaning it could have been you or Drewy). Now to not be biased no one will be held to account for this. And you say you don't have a wintertodt script which is fine but that still doesnt rule out the fact that you could have botted another script on it (not saying you did of course but you get the general idea). Sorry for your loss.
  15. 2 points
    this ^ Can also add a 'holy blessing' to go in the range ammo slot that gives +1 prayer
  16. I'd like such a loving girlfriend as well. However, I'm stuck with ur mom every once in a while instead
  17. soon :xboge: :xboge: :xdoge: :xboge: :xcate:
  18. Scripters are allowed to write scripts for other botting communities, except for 1 specific community. I can't give it's name, ask a staff member in PM I suppose
  19. if im not mistaken, scripters cant have scripts on both SDNs
  20. I have a few accounts, I could sell you. But only for RSGP. CBA to get a PayPal chargeback after you get a Macro ban on the accounts.
  21. 2 points
    i usually get mine when it says my account is disabled
  22. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Active killing ogres - Loot seeds with telegrab - Ranging potions support - Humanlike idles - Dwarf cannon suport - Afk mode where only Cannon kills ogres (NO HP mode) - Stops when out of ammo OR Restocks for more ammo - Detailed loot list 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 582: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 manager you do not need to specify -script 582): -script 582:TaskList1.4515breaks (With breaks) -script 582:TaskList1.4515breaks.discord1 (With breaks & discord) -script 582:TaskList1..discord1 (NO breaks & discord)
  23. Hey guys, so i recently entered and apparently won a giveaway hosted by this website. When i followed the instructions to claim my prize the host "Jordan" hasn't responded for a couple days. Now im not sure if hes busy or not but i just wanted to get this figured out sooner then later. Here is my proof : Removed by PP and then after i followed the larger link on top it brought me to the page below, where it shows i won aswell. Removed by PP Thanks for the help!
  24. That works. I have it in one of my scripts. Not sure if that's what he is asking about.
  25. Think you got the wrong topic :p
  26. wow crazy high goals dude
  27. My usual setup, change gear to whatever suits. Recommend having recoil equipped and 1 in inventory as a back up. Also, ring of dueling in inventory setup will make the script bank at clan wars and use the ffa portal to regen Camelot teleport + coins is for charter method, swap coins for food and camelot teleport for a zul-andra teleport if thats your prefered method. ATM doesnt support fairy method but will sometime in the future. When first running the script, id recommend starting at camelot bank as u can use it to make the setup and make sure u have everything. After first setup and save u can just start it at bank or zul-andra. For the first dialogs atm you have to do this manually but i could automate this in the future. 76 Agility, as above fairy ring not supported atm but will in future so 76 agility not needed.
  28. Unfortuently OSBot did not host the event, a user of the forums hosted the event. We have no authority over a raffle done by a user. Would have been different if it was done by a current mod or admin that was done through OSBot. At this time, we cannot pay you for your earnings through this 3rd party user/vender. You will need to try contacting them again, or waiting to see if they reply. - PP
  29. 1 point
    atleast 80m
  30. That's also correct, I would like to hear an explanation of @tampera666. @Savages Where and how did you buy the account, I assume it was over skype? Can you provide me some chat logs or evidence of the purchase?
  31. 1 point
    what a nice guy
  32. gets stuck right before the walkway at cosmic runes, (not doing it with abyss) when i do it manually it wont even walk back to bank.
  33. i can have trial ?
  34. 1 point
    gz to my bois @transporter and @@Bamboozled
  35. Can i get a trail plz? my thanks.
  36. Hey, mind if I can get a trial? Thanks

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.