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 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. 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. efficient & flawless Link: Script now live: Here Features Bypasses Jagex's camera movement bot trap. new! Uses ESC key to close the interface new! Uses the higher xp method (aligns the camera to the target so it closes the menu when it pops up) NEVER gets in combat, 'tower' method of getting out of combat isn't even there (deliberately). Logs out when no money left Equips bronze arrows when necessary Displays 'goal' information, e.g. (at 77 range it will also show details for 80 range, time left, xp left, etc) Automatically equips higher level gear such as d'hide chaps and vambs Runs away just in case of emergency! ................................................................................................................................ With the bots on OSBot, Czar promises to deliver yet another incredible piece to the CzarBot empire. This means you will get to run the script with no worries about bans and xp waste. LEGENDARY HALL OF FAME 100 hour progress report Configuring the bot and the result: Set the npc attack option to 'Hidden' if you want to avoid deaths forever! For extra XP FAQ Why should I use this script when there are millions out there? It is the best script. Simply. Why are you releasing this now? It's time to make it public, it was privately shared with some friends and has been working flawlessly. Instructions There are no instructions. We do the all the work for you. CzarScripting™ Tips If you are low level, you can use a ranging potion at level 33 ranged to get in the ranging guild. Try and have as high ranged bonus as possible. Gallery ANOTHER 1M TICKETS GAINED !!
  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. To receive a trial, like the threads of any scripts which displays this logo: Supported scripts Tanner & Crafter - 12 hour trial Usain Bolter & Dolter - 8 hour trial Live's Betting Post - 8 hour trial Condition To take advantage of a full trial, you need one of the following: Ranked member (VIP, Sponsor, Script Writer, etc.). 7 Days online. 1 Year since account created. 100 post count. If you do not qualify for the full trial, you will only receive 4 hours. FAQ Q: 'Why have I not received a trial yet?' A: The auto-trial programme only works when 1) I'm online and 2) I've enabled it (I'm only human and I'll probably forget from time to time). Q: 'You said I've been given a trial, but I haven't even used it!' A: My programme assigns trials despite whether or not you're online at the time my programme checks to see whether you liked the script thread. I do plan to fix this in the future and I will freely reset all trials for 48 hours when that time comes. My Auto-Trial is far from perfect. Q: 'You said checks occur every 15 minutes, but I've had to wait half an hour!' A: Asynchronous JavaScript; basically my programme ensure you qualify before assigning a trial. If the programme doesn't have your information, it skips you until it does. I do plan to install a fix very soon.
  20. 1 point
    after all these years you'd like to meet
  21. 1 point
    GOD DAMN
  22. 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.
  23. Congratulations, I bet you are feeling a huge relief.
  24. 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
  25. 1 point
    When you forget your "p"
  26. easily 90m, fucking sick around brotha
  27. Well almost 3 years =p Got it at beginning of OSRS
  28. Don't you think Jagex peaks on such forums as well, and thereby sometimes searches for accounts being sold? I'm sure you can request a picture without the blurred out stats in a PM. But theres a clever reason behind it.
  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. 1 point
    Can I get a trial of the script please? :-)
  31. User says the same skype is his in this thread http://osbot.org/forum/topic/87754-selling-prayer-pure/ Kill Streak.
  32. Hey script looks great, could i get a trial before potentially purchasing?
  33. Finally found someone, pm me your bike and shit so we can talk bikes ;)
  34. Trial please good sir!
  35. Build 4: - Smart tree detection added (Will walk towards the first tree to respawn when all trees are down) - Fixed axe depositing when banking - A few new locations added - Some anti-ban improvements Click here to download build 4 Nearly finished for official release apart from a few things. Unless new bugs are found. Thanks for helping out with beta testing.
  36. 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.
  37. 1 point
    must be the antiban
  38. 1 point
    works great thanks! can you add farming support with next patch please? thanks
  39. 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.