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 03/11/16 in Posts

  1. #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
  2. 3 points
    post pictures of cats!
  3. 3 points
  4. Banned for botting? Getoutahere.
  5. https://www.twitch.tv/geniigames LOVE ME
  6. 2 points
    Ok guys from now after this thread, i will be posting a thread once I have 3 or more pieces to show. I apologize to all members of the community regarding me over posting in this section. I'm sorry. None the less hope you like this one.
  7. Since software is become more and more web-oriented, it's getting harder and harder to escape web-development. Same goes for mobile applications / integration. Not sure why you'd think those are below any skill level but ok. A degree can make up for the lack of a portfolio. If you don't have a portfolio then a degree is pretty much the only option to certify your knowledge. A degree not only certifies knowledge but also discipline and persistence, some corporations find those important, others not so much. If you have the passion, discipline and time to consistently continue learning on your own and are willing to work on a strong portfolio on top of that, then MAYBE a degree becomes a useless expense to you.
  8. confirmed this is @Acerd 's second account
  9. So does that mean I should or shouldn't take my tin foil hat off...
  10. Presume wrong... host issue
  11. ────────────── 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.
  12. 1 point
    Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
  13. RuneScape has multiple entity types NPC's Objects GroundItems Determining which one to use is way simpler than people think. NPC's will have yellow name tags in game Objects will have blue name tags in game GroundItems will have orange name tags in game Now when it comes to declaring variables what should we use? For NPC's we would use the NPC class. Our code should look like this NPC npc = ... For Objects we would use the RS2Object class. Our Code should look like this RS2Object object = ... For GroundItems we would use the GroundItem class. Our code should look like this GroundItem item = ... Why would we shy away from using Entity class to define any entity from the game? Well simply put Entity is just an interface and it might not contain things needed to any specific Entity implementing classes. Like RS2Object will have getType() method but Entity will not. The main place to use Entity class is when we are passing it to a parameter of a method and making your own lets say interacting methods. We would use Entity in our parameter to make it accept any Entity type. public void interactCustom(Entity entity, String action){ if(entity.isVisible()) entity.interact(action); else getCamera().toEntity(entity); } Of course again there will come limitations, which are when you are making a method for getting the type of an Object and logging it. Having our code look like this will not work and give us an error. public void getTypeAndLog(Entity entity){ log("[Debug] objects type: " + entity.getType(); } So passing Entity to our parameter wouldn't give us the method getType() which RS2Object has, so we would need to have RS2Object in our parameter So we would need to have RS2Object in our parameter. And our code will work if he have it look like this public void getTypeAndLog(RS2Object object){ log("[Debug] objects type: " + object.getType(); } I hope this guide helped you understand the types of Entities and how to use them correctly
  14. This would be so useful. I will definitely be downloading this.
  15. Just downloaded, so much easier on my eyes for the time it is for me, 10:54pm.
  16. already been using it for quite a while
  17. around 4M-5M if that includes some membership.
  18. 1 point
    Bet you like this one more.
  19. 1 point
  20. I know what you mean, but when you train with osbuddy, the client makes screenshot. When the account gets banned of macroing, you can show me the screenshots ;) you wont get kicked of the service
  21. 1 point
    Thats actually a pretty interesting website
  22. Blizzard Is Making a HD Remake for Diablo II
  23. 1 point
    This can probably answer your thread
  24. 1 point
    Such a tease
  25. yo this looking me interested can me having trials pleas
  26. then go bitch about it to maldesto
  27. No problem, happy to help. Thank you for your great bots and on going quick help.
  28. 1 point
    That photo is sad because it's real. Party pooper.
  29. Could I get a trial on this please?
  30. Posted a hotfix for karamja, walking is MUCH better now. Update should be visible immediately, since only the webdata nodes were modified - which are instantly updated, gl all ;) As for sacred eel, I will add that ASAP Anglerfish support has already been added :P
  31. I tried to start to start this today, no different than any other day. The bot just can't seem to get into the right spot to shoot. It just keeps saying moving.... Don't know what to do, very weird cause I run this just about every day since I have bought it.
  32. 1 point
    I think the ribs just appear too small to match the body, otherwise looks nice though!
  33. I got banned using Sinatra swamp collector! i am in the same boat man
  34. 1 point
    Don't know if you were going for a theme but If you were gonna add something external should have done it on the sheet, maybe soul-esk To fit what you did with the side head. but then it gives it a cannibalism theme Make the mouth line start earlier so he doesn't look like the crimson chin.
  35. Bought your rock crab script and love it so far, could i get a trial for this one?
  36. Could i have a trail please?
  37. Hey man can i get a trial?

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.