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 01/26/16 in all areas

  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. 4 points
    Introducing Woodcutter Free 2 Play GUI Powerleveler/Moneymaker/Fletcher/Bruner using multiple locations to gather resources. The goal of this bot is not to achieve the highest xp per hour ratio, but to create high leveled woodcutting accounts without any maintenance in f2p. Notable Features Would go 1-99 woodcutting unless you stop it Can either bank, drop, fletch, or burn logs changed at any time in GUI Can send forcemessage to world & clan via GUI Simple GUI to setup bot Multiple locations for all trees Changes automatically to higher level trees at an optimal level Walks to bank when the bot can use a better axe Banks in both Draynor and Lumbridge Detects random events and dismisses them All timers as random as virtually possible No set walking path, moves with webwalk Uses a random mouse movement pattern Automatically resets the bot if its stuck Automated world hopping if too crowded SF AntiBan GUI Proggies
  3. I would suggest AssAgility next time. It will get you banned in half the time
  4. 👑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
  5. Ever wanted a free trial for one of these scripts? Well, now you can request one The free trial request template/prerequisites are located at the bottom ----------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) --------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) ----------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) ----------------------------------------------------------------------------------------------------------------------------- HOW TO REQUEST A FREE TRIAL Step 1) Like this post Step 2) Place this image in your signature Step 3) Fill out and post the script trial request template on this thread SCRIPT TRIAL REQUEST TEMPLATE : Script name: OG's Green Dragon Killer/ OG's TzHaar Fighter / OG's Blue Dragon Killer Trial Duration in Hours: (Enter requested number of hours for your trial) Have you liked the topic post?: (Must answer yes to receive trial, links can be found above) Is my post count higher than 20?: (Must answer yes to receive trial)
  6. 3 points
    I like orange juice with no bits, doubling your gp I swear its legits, Anne is a female specie with tits, Im a good adc call me b1g kr1tz. Spit some hot bars about the person above you, GO!
  7. Don't know if anyone will use but I needed something with this functionality and came up with this. Any feedback is appreciated, I'm always trying to learn new things. GroundMonitor.java: import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.List; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.script.Script; public abstract class GroundMonitor { //My implementation filters out items less than price x, but I removed because it was specific to my needs private ArrayList<GroundItem> cache = new ArrayList<GroundItem>(); private Script ctx; public GroundMonitorRelease(Script ctx, int valueThreshold) { updateContext(ctx); update(); } public void updateContext(Script ctx) { this.ctx = ctx; } public abstract void onChange(); public boolean hasChanged() { return getChanges().length > 0; } public void update() { for (GroundItem item : ctx.getGroundItems().getAll()) { if (item != null) { cache.add(item); } } } public GroundItem[] getChanges() { List<GroundItem> items = new ArrayList<GroundItem>(); ArrayList<GroundItem> ci = new ArrayList<GroundItem>(); int changes = 0; for(GroundItem q : ctx.getGroundItems().getAll()){ if(q != null){ items.add(q); } } for (GroundItem item : items) { if (item != null) { int id = item.getId(); if (!contains(ci, id) && !cached(item)) { ci.add(item); changes++; } } } Collections.sort(ci, new Comparator<GroundItem>(){ @Override public int compare(GroundItem o1, GroundItem o2) { int d0 = CheckPrice.get(o1.getId()); //Use distance instead of price int d1 = CheckPrice.get(o2.getId()); //Use distance instead of price return (d0 < d1 ? -1 : //It will return the closer one first (d0 == d1 ? 0 : 1)); } }); return Arrays.copyOf(ci.toArray(new GroundItem[ci.size()]), changes); } private boolean cached(GroundItem item){ return cache.contains(item); } private boolean contains(ArrayList<GroundItem> list, int id) { for (GroundItem i : list) { if (i == null) continue; if (i.getId() == id) { return true; } } return false; } } Main.java (onStart): groundMonitor = new GroundMonitor(getScript()) { @Override public void onChange() { for (GroundItem i : getChanges()) { if(i != null){ log(i.getName() + " : " + CheckPrice.get(i.getId())); } } } }; Main.java (onPaint): if (groundMonitor != null && groundMonitor.hasChanged()) { groundMonitor.onChange(); groundMonitor.update(); }
  8. 2 points
    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:
  9. Shudsy's ToadCollector Collects Swamp Toads at Tree Gnome Stronghold swamp and banks them. Information Perfect money making method for low level accounts/Pures. No skills or combat levels required. Requirements Members Setup Start anywhere in Gnome Stronghold Features Picks Swamp toads for money. Proggies Download Check the SDN. Changelog Please report any errors you find.
  10. RQ Chopper | Woodcutting as it should be By RandQm Features: All trees to be made available Many locations, also less popular ones! Auto-check bank for better axe Start anywhere, anytime, the bot will prepare (Go to area, bank, take axe, ...) on it's own! Anti-ban implementations Powerchopping & taking bird nest options! Anti-fail systems built in Advanced information display Easy & clear GUI SMART TREE DETECTION when all trees are down, walk to the one which will respawn first AUTO-SWITCH TO BETTER TREES When this option is toggled on, the bot will keep track of leveling up. Once it reaches the required level for a better tree (required level + 5 for tree's over willow) it will head to those trees and start training there without you having to do anything! When using powermode, it will not go to better trees anymore once it reached willow as willows are the fastest experience. CUSTOM LOCATION SUPPORT Cut anywhere you want not bounded by locations! In the GUI, choose the type of tree you want to cut and choose "custom" as location. Stand in the center of the area you want to cut in when starting the script. The bot will scan the area in a 15x15 radius for the type of tree you specified. It will save those trees and start choppin! When not using powerchopping mode it will find the closest bank to use. Download: Current version: 2.0 Click here to download! Soon to be on the SDN For now, place the downloaded jar in: c:\Users\YOUR_USER\OSBot\Scripts\ Configurations: Proggies:
  11. [Currently not doing services, vacation] Hello notty boys , I have decided to open a simple GFX shop in which I will be taking payments in RSGP (eventually I'll probably have paypal and such). I have decided to start this because I love working in photoshop and wanted to make use of it. What services will I offer? GUI Paint for your scripts Script Icons Avatars Signatures Misc. (discussed) Note #1 : We will discuss the price. Note #2 : The kind of signatures I do (until I practice out other styles) will be the only one I do atm. (you can see in my portfolio) Note #3 : I do not do web templates/thread layouts(atm). Note #4 : I will do the service you desire until it fulfills your wishes. Note #5 : You will pay half the price agreed upfront unless I find you trustworthy. Note #6 : Once I take your order it will be completed as soon as I am able to. If you would like any of these either post in here or contact me via pm: . If you have the will to I would like you to fill my service request (optional) What kind of service you desire?(listed above): Any special wishes?: My portfolio can be found here -> momyzd.deviantart.com or some of it can be found here http://osbot.org/forum/topic/91392-jakovsmomy-gfx-gallery/ Every further work will be posted here. I will start working later today , feel free to hit me with your first requests. Signature #1 , Sinatra For Sinatra Animos avatar
  12. 2 points
    he calls himself ass nerd i think hes just a class turd my rhymes are spat like fire don't vs against me if you got no desire im the ill psycho brown man who got the bitches while you sit back and shit talk with all ur snitches don't start what you can't finish or i'ma tear you apart and leave ya squeamish
  13. 2 points
    Also of acct status plz
  14. 2 points
    So your account was "already logged in" so you make a thread, your connection probably just sucks or you screwed something up. Don't blame other people so quickly, no one hacked you...
  15. One thing i have noticed if you are using death walk is that it get stuck at draynor manor's trees.
  16. ────────────── 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.
  17. 1 point
    View in store ($3,99 for lifetime access) Features: Supports every location you would ever want to cook (anywhere missing? request it!) Supports almost every food item cookable on a range or fire (anything missing? request it!) Smart Target-oriented back-end stops the script when you have accomplished your desired goal Option to move mouse outside screen while cooking to simulate human AFKing Where Make-All isn't available, A Gaussian distribution based suffixed string generation algorithm randomises entered Make-X values Utilises a combination of WebWalking and recorded paths to ensure the script never strays from it's job Simple, intuitive GUI which auto-detects your food and location based on your inventory and minimap position Stable cooking & banking algorithms, tuned individually for each food item and bank Clean, informative, Anti-aliased, un-obstructive and fully movable self-generating paint Movable on-canvas scrolling console logger Efficient script logic ensures an EXP-optimised experience Normally distributed response times to simulate a human's reflexes Stops & logs out when out of food, saving your progress to the console and web Dynamic signatures allow you to track your progress as you use the script Handles obstacles and doors between the bank and the range to ensure door spammers cannot hinder your gains CLI is supported for all hardcore chef needs ... and many more ... Supported food: This script only supports cooking these food items on ranges/fires, it will not combine ingredients to make items such as Tuna potatoes or Pineapple pizzas. Shrimp Anchovies Sardine Herring Mackerel Chicken Beef Bear meat Rabbit Rat meat Sinew from Bear meat Sinew from Beef Trout Salmon Cod Pike Bass Rainbow fish Tuna Lobster Swordfish Monkfish Shark Dark crab Sea turtle Manta ray Anglerfish Karambwan Poison Karambwan Bowl of Water Uncooked pizza Potato Seaweed Sweetcorn Stew (new!) Curry (new!) Just ask for a new food item to be added! Supported locations: Rogues den Lumbridge Kitchen (new!) Catherby Nardah Tzhaar City Al-Kharid Zanaris Neitiznot Varrock East Hosidius Kitchen Gnome Stronghold Varrock Cooks' Guild Port Khazard Edgeville Mor Ul Rek Myths' Guild (new!) Just ask for a new location to be added! Why choose APA Scripts? As an experienced veteran scripter here on OSBot, I strive to give you the best user experience that I can by providing frequent updates and fixes. With over 40 cumulative 5 star reviews on the store, as well as my Scripter III rank, you know you're in safe hands. Want something added? Don't like something? Have an awesome proggie to share? Let me know! Example GUI: Starting from CLI: Gallery: _________________________________________________________________________________________ Credits:
  18. 1 point
    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
  19. 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:
  20. Bought an 07 Account. 1 Day after it got locked. I thought it was reoovered by the seller, but the password was never changed. The email I set was removed, and I couldn't recover that way. The Seller had no luck to recover, and I were about to give up, get refunded by the seller (altho there were 70M+ on the account that would've been lost, so a shit situation for both of us.) He have me the info he had, as a last try for me to file in a recovery. It took about 8 hours and I was waiting in pain, but I was 98% sure it wouldn't go thu, as I was not the creator and had only been on the acc for like 28 hours. The recovery appeal got accepted. WTF, I've done it again. BULLSHIT.
  21. 67 cooking is the only requirement
  22. 1 point
    GOD DAMN
  23. 1 point
    Hype dude, looks amazing
  24. Site is in users notes @staff Following that URL will lead you to the scam report which got him banned http://osbot.org/forum/topic/91016-selling-multiple-accounts/ This thread he clearly states that his skype is the same one connected to his account. Bag em and tag em.
  25. full inbox? or they do? idk if it will do that if they do but possible if you do
  26. can i have trail plz
  27. I actually already wrote this! The problem is I don't think I ever implemented it, which would take me not even 2 minutes lol. Did all the hard part already
  28. Well almost 3 years =p Got it at beginning of OSRS
  29. just so everyone knows this acct does not come with the items shown in the account wealth on the rs3 acct (350m+ in items) so dont value ur bids based off that..
  30. Heya, I've made a Zeah AnglerFishing script but i'm not able to test it due not having the stats myself. If you meet the requirements needed tot fish, please send me a message or reply on here. You'll get the script for free once its out.
  31. 1 point
    Can I get a trial of the script please? :-)
  32. Done , hope you like it as you didn't specify how you wanted it
  33. Don't worry man, I completely understand.
  34. I can do this for ya my skype: rutgerdr@hotmail.nl
  35. I'll take a look if I can check the content inside the rune pouch, pretty sure I can't check that, it will be a pain to make. rest should be fairly easy to implement.
  36. kawasaki and ktm > all
  37. Is there a reason why you want the emails made/registered? You can still use the accounts if the e-mail used is completely non-existent. (saves a lot of time instead of hassling with emails)
  38. Finally found someone, pm me your bike and shit so we can talk bikes ;)
  39. Beautiful Bike! I ride a Yamaha YZ
  40. Trial please good sir!
  41. zoomed out all of the way, made sure not to log in until my client was attached to my destkop rs client..same issue. some gifs for reference https://gyazo.com/f58b24a8364987b19451e90f77815ad1 https://gyazo.com/35d4abe4b752e8fdeadf1e78ce0f3dae Edit:: this script worked flawlessly for me 3 or 4 days back, not sure what im doing wrong, zoomed all of the way out, esc to close menus, and npc hidden for my safety. Exact same setup as the other day so idk what im doing wrong. Its got me stumped, ive troubleshot it all ways I know how.
  42. 1 point
    @Override public void onStart () { getBlueDragon.kill(); } Finished it for you
  43. 1 point
    Sorry you got banned, that happens sometimes when botting. Since you have been here over 2 years now I'm going to go out on a limb and assume this is not the first time you have botted. My script is likely not the first one you have used either, so I find it rather odd you choose to blame this script specifically. I also notice you are not VIP, meaning you do not have access to mirror mode, which is a valuable tool for preventing bans, I'd recommend getting VIP. Also, I am going to assume you are not using a proxy to bot, since you aren't willing to fork out the money to use mirror mode, which I also recommend you do as previous bans can mean your IP is flagged and can result in quicker future bans. If you feel the script is sloppy, please report to me the issues you are experiencing with it, as I cannot fix issues I do not know of. Offering insults is pretty useless, it's also quite immature and will get you nowhere with most people. If you feel the need to hurl further insults don't bother. The posts will be reported, and likely deleted, and quite frankly the immature ramblings of someone on the internet don't bother me in the slightest. Thank you.

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.