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

    Global Moderator
    12
    Points
    23417
    Posts
  2. Apaec

    Scripter III
    8
    Points
    11174
    Posts
  3. Maldesto

    Administrator
    4
    Points
    19230
    Posts
  4. Alek

    Ex-Staff
    3
    Points
    7878
    Posts

Popular Content

Showing content with the highest reputation on 03/24/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. Horde Anglerfish by @Deceiver Waffs RuneBuyer by @Waffe dPuro Puro by @d0zza H0rn's Cannonballer by @H0rn Chikan's Motherlode Mine by @Chikan Macro Recorder by @liverare Blue's Wine Maker by @ThatGamerBlue slCannon by @Slut
  3. 3 points
    public boolean depositWornItems() throws InterruptedException { RS2Widget deposit = script.getWidgets().get(BANK_PARENT, BANK_CHILD_DEPOSIT_BUTTON); ConditionalSleep conditionalSleep = new ConditionalSleep(5000, 500) { @Override public boolean condition() { return script.getEquipment().isEmpty(); } }; return deposit != null // Is widget valid? && deposit.isVisible() // Is widget visible? && deposit.interact("Deposit inventory") // Did we click it? && conditionalSleep.sleep(); // Have we deposited everything within 5 seconds? } Don't take my solution as correct, because there are many ways to do the same thing. However, what I like about the changes I've made include: Variables neatly defined. Sleep condition is an abstract class, which means you have to greedily use up multiple lines of code. Doing that and storing the object as a variable just makes things a little easier to read, than having mid-sections of code full of instantiated abstract classes. The return statement is structured so that everything, from the widget being valid, visible, and clicked, have to be true before we even get to testing whether or not we've successfully deposited our items within 5 seconds. ConditionalSleep#sleep function returns true if the items have been deposited prior to the time having been elapsed. This is particularly useful in laggy situations. The only thing I dislike is that I've instantiated an object that may not even be used. What I'd normally do is create a separate class to handle the implementation of the conditional sleep, then I'd instantiate a new object from that class: public boolean depositWornItems() throws InterruptedException { RS2Widget deposit = script.getWidgets().get(BANK_PARENT, BANK_CHILD_DEPOSIT_BUTTON); return deposit != null // Is widget valid? && deposit.isVisible() // Is widget visible? && deposit.interact("Deposit inventory") // Did we click it? && new SleepUntilDepositedItems().sleep(); // Have we deposited everything within 5 seconds? } private static class SleepUntilDepositedItems extends ConditionalSleep { public SleepUntilDepositedItems() { super(5000, 500); } @Override public boolean condition() { return script.getEquipment().isEmpty(); } } It's all just preference, though.
  4. Molly's Chaos Druids This script fights chaos druids in Taverly dungeon, Edgeville dungeon and Ardougne. Profits can easily exceed 200k p/h and 60k combat exp/ph, this is a great method for training low level accounts and pures. Buy HERE Like this post and then post on this thread requesting a 24hr trial. When I have given you a trial I will like your post so you will receive a notification letting you know you got a trial. Requirements - 46 Thieving for Ardougne -82 Thieving and a Lockpick for Yanille - 5 Agility for Taverly(recommended) - No other requirements! Though I do recommend combat stats of 20+ as a minimum Features: - Supports eating any food - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge), includes re-equipping items on death - Potion support - Automatically detects and withdraws/uses Falador teleport tabs if using Taverly dungeon - Automatically detects and withdraws/equips/uses glories if using Edgeville dungeon - Supports looting bag Setup: Start the script, fill out the GUI, and be in the general area of where you want to run the script. CLI setup: Proggies: In the works: Known bugs: Bug report form, this is a MUST for problems to be resolved quickly: Description of bug(where, what, when, why): Log: Your settings: Mirror mode: Y/N
  5. 1. You don't need to be original owner to quash the ban but you do need to have all the information to log back in the account. It makes you submit it before it actually quashes. 2. You are the original owner recover the account or refund. You have 48 hours or you'll be banned.
  6. 2 points
    Exactly what I was looking for, thanks! Any guides where I can have some more information on how to get the widget dynamically?
  7. 2 points
    First of all; your conventions are incorrect. Please make yourself known with the Java Conventions . Your method should be called depositWornItems. The #interact() method has a boolean return-value which represents whether the interaction has been executed successfully or not. Try to make use of this feature by only executing the conditional sleep if you're sure that the widget#interact has been successfully excecuted. Try to grab all your widgets dynamically instead of using static ids. You can do this by various things such as their actions, message, position, colour etc. https://hastebin.com/niyohuboja.java Edit: The API already has a method for this though, are you aware of this?
  8. Does it at least switch tabs? If so your problem might be this line: if ( defence.interact ( "change" ) ) { There is no "change" interact option for that widget as far as I'm aware. The options are stuff like "Kick" or "Stab". Edit: I'm not fully sure as I have barely done any scripting and the docs aren't fully clear but you might be able to just use .interact(); without passing in a string to make it use the default interaction.
  9. 1 point
    Welcome to my Botting Log! Gonna log my progress and learn from any mistakes I make Used to bot a lot a long time ago, now I'm back it trying to really profit from it Day 0 Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8 Will try to update this thread daily. Thanks for reading!
  10. Introduction: EDIT: Just noticed like 1000 other people have made this same script lol. Hopefully when I add account replacement and automatic muling it'll actually be more useful than it is now. Hey guys. SqueezeTheorem here. I'm a computer science student, and I like to code weird stuff in my free time. This is my current project, and once It's done, I think it'll be pretty cool. My goal is to create a bot you can run that will create a self-repairing network of lobster fishing bots and mules that will replace themselves as they get banned. I've got it in my head how this whole thing is supposed to work and what technology i need to use to get there, and now it's just a matter of sitting down and writing the code. This project is a means to an end. I don't really want a lobster fishing network. I want a network for a more profitable kind of bot, but since there's no overhead and no real risk with f2p lobster fishing, this is a great way to test the efficacy of a self-repairing network and explore if it's worth pursuing another kind of network like this. When the bot is completed, the only thing you'll have to do management wise is check up on your mule accounts and make sure the database has unbanned accounts to use -- that's it. Right now, this script is still usable and somewhat useful. You start the bot with coins, a small net, and a lobster pot in the Lumbridge swamp. From there, it gets level 45 fishing, and then heads off to karamja to catch lobsters. These are the only features so far. Goals: 1. Have the bot be able to complete tutorial island 2. Have the bot power fish until level 45 3. Once level 45, have the bot get coins and a lobster pot from a mule account where it then continues to fish lobster 4. Use a MySQL database to manage accounts, and allow for multiple bot networks to connect to one MySQL "hub" as a means of communication 5. Have all accounts marked as "fishing" mule their caught lobsters to a random mule account from the MySQL database after every X number of lobsters, but only if the account is at least 18 hours old 6. Once an account is banned, have the bot log in to the next account from the MySQL DB and repeat this process 7. Implement obscure, awkward antiban (ie: the bot will, on a random time interval, find a nearby player and address them by name in conversation, randomly using emotes, etc) Current Features: - Power fishes lobsters and anchovies until level 45 fishing, and then travels to karamja to catch lobster - Randomly AFKs for 0 - 180 seconds. The chance of this occurring is 1/33 every time the bot clicks on a fishing pool. - That's it. It's a fishing bot, what were you expecting? Instructions: 1. Start with some coins (15k - 25k), a small fishing net, and a lobster pot. 2. Start the bot, preferably near the lumbridge swamp. 3. Let the bot catch lobsters until its banned. Mule as needed. Known issues: - If you get to level 45 fishing and don't have any coins, the bot is gonna derp out. Same story if it runs out of money. I have no idea what it'll do. TODO: - Fully automatic muling using MySQL - MySQL support to allow for banned accounts to be easily replaced by those in a queue, creating a near fully-auto farm. - Add support for starting without money/selling lobsters to get more money for travel - Built in Tutorial Island solver for truly godly automation Currently working on: Tutorial island solver Download: https://www.dropbox.com/s/1gp8ezp3u13r6w7/NewbFisher.jar?dl=0 Source:
  11. You're gonna sell those for cash before you get the crafting requirement lol
  12. Hit thieving for rings/necklaces the goblin quest one sorts you out.
  13. UK is fine about it, I know germany has strict legal laws currently against it.
  14. - Did you add me on Skype or send me a PM? yessir =) - What is the requested service? full void (all helms) on my 60 atk med - Do you agree to the TOS? yes i agree to your tos
  15. https://prnt.sc/ivrrk2
  16. ty fren for reply
  17. 100m is a bit steep but I'd deffo say like 80m
  18. 100m+ if anyone were to be interested in one of these accounts
  19. Different prices usually depending on the quantity you order. Several people sell them on the forums. I bought my last tut accounts from @Google and they worked perfectly.
  20. Just wanna leave this here for you new guys to the script - usually run 2-4 bots at a time - during my period of using this script I caught one ban, that same account reached nearly 3k barrows chest looted before catching the ban. This script is imo best script I've ever used - please do not ask me how long I bot and all that bullshit - its trial and error every good botter learns on their own from their mistakes.. I have officially stopped my barrows farm due to not having time to manage the farm - great work on the script @FrostBug keep up the good work! Just figured I owed you at least my person feedback on the script and to all the new guys switching to barrows from zulrah due to recent bans. All in all 10/10 script.
  21. Update: I'm exploring the idea of what I'm calling an "autonomous bot" for my farm. From my research, it's clear a key component of BotWatch is sample size. This is to say that if you ran a script for, say, 2 hours a day, the ban rate is low. Why? Sample size. Jagex needs a large data sample from your account to issue a ban with confidence, and confidence is key. As a games company, they can't afford to incorrectly ban a large number of players for botting. This is likely why limiting your daily botting time helps avoid bans, and why suicide botting sessions reliably produce bans. In the first case, they have little data to analyze, and in the latter, they have more than enough. This is, of course, a hunch, but one I'm confident enough to make a new Script around. An autonomous, AIO bot that does the following: 1. Has a list of Tasks that can be performed, with requirements for each task, setup for each task (getting items from bank, traveling to area, etc), and task completion (teleporting away from an area, depositing outputs into a bank, etc) 2. Randomly chooses a task to execute based on whether or not requirements are met, or whether or not the the task is still appropriate given the account's current stats (perhaps the account is too high of a level for the task in question to be worth doing), etc. 3. Progresses an account in a very generalized sense, choosing some activity or skill, executing it for 1 - 2 hours, and then changing tasks. 4. Does herb runs, if able An additional benefit of this approach is that it further mimics human behavior via task switching. Humans aren't going to sit and do the same activity for 10 hours straight without breaks, and neither will this bot. Prolonged sessions of the same activity are a dead giveaway that an account is a bot. Autonomous, randomized task switching is an approach I've not seen tried anywhere else, and so I'm willing to give it a go. This is obviously an ambitious project, and will rely heavily on code reuse and object oriented programming to be doable. TL;DR: I'm looking into making a bot that mimics human behavior in a very macro sense. It'll train a variety of skills and use some sort of simple "AI" to decide what tasks it should be doing, switch tasks randomly, and not focus on a single activity. Most activities in the activity list will be profitable, but not all. PS: For the people wondering, I've not given up on the project yet, I'm just trying to find an approach that's more viable than suicide botting. For right now, that means a lot of theorizing about how detection works, testing my hypothesis, and doing research into other people's "botting to max" series, since they emphasize the longevity of an account.
  22. He no longer offers trials due to people abusing the system
  23. 1 point
    That screen shot shows a counter from kim with no acceptance from dard so its invalid show more of that where they agreed What does his thread have to do with your agreement if he has orders of 70 70 70 1-2 weeks it normal your order is not. So stop posting or mentioning this. ???
  24. That's exactly what I was looking for. You are awesome as always. I have often said that this farming thing would be a lot easier if I knew Java!
  25. Yet in the logger it still says that it filled the cannon successfully. Should check for cannon tile not nearby cannons..
  26. @Czar Is it possible to buy this script with 07 gp? and how much doest it cost?
  27. OK so I have a problem when botting at rune drags. I don't think banking is working for rune drags atm but I want the script to atleast kill them and loot and I can bank myself. The only problem is it doesnt pick up any loot at rune drags, the logger shows its waiting for loot to appear and then it never picks up. I don't know why.. EDIT: Also Dragon limbs and dragon metal lump dont show up as the proper image/name in the loot settings Here is the Logger after killing a rune dragon. I am running 2 scripts on the same bot client so it may confuse things. Please help INFO][Bot #2][03/22 04:57:20 PM]: .. kill finished, waiting for loot to appear. [INFO][Bot #2][03/22 04:57:20 PM]: "current_loot_x" changed to "2553" [INFO][Bot #2][03/22 04:57:20 PM]: Command (current_loot_x) changed from (2553) to (2553) [INFO][Bot #2][03/22 04:57:20 PM]: "current_loot_y" changed to "3408" [INFO][Bot #2][03/22 04:57:20 PM]: Command (current_loot_y) changed from (3408) to (3408) [INFO][Bot #2][03/22 04:57:20 PM]: "stop_combat" changed to "1" [INFO][Bot #2][03/22 04:57:20 PM]: Command (stop_combat) changed from (1) to (1) [INFO][Bot #2][03/22 04:57:25 PM]: No more lootable items on target position! [INFO][Bot #2][03/22 04:57:25 PM]: "current_loot_x" changed to "0" [INFO][Bot #2][03/22 04:57:25 PM]: Command (current_loot_x) changed from (0) to (0) [INFO][Bot #2][03/22 04:57:25 PM]: "current_loot_y" changed to "0" [INFO][Bot #2][03/22 04:57:25 PM]: Command (current_loot_y) changed from (0) to (0) [INFO][Bot #2][03/22 04:57:25 PM]: "stop_combat" changed to "0" [INFO][Bot #2][03/22 04:57:25 PM]: Command (stop_combat) changed from (0) to (0) [INFO][Bot #2][03/22 04:57:26 PM]: [FFA1] Fighting target at [x=2548, y=3408, z=0] [INFO][Bot #2][03/22 04:57:26 PM]: "var_attacked_npc" changed to "2168" [INFO][Bot #1][03/22 04:57:28 PM]: Returning combat to attacker... [INFO][Bot #1][03/22 04:57:28 PM]: [FFA1] Fighting target at [x=1585, y=5076, z=0] [INFO][Bot #1][03/22 04:57:28 PM]: "var_attacked_npc" changed to "8487"
  28. @czar please tell me you fixed cannon mode with new update? doesn't loot anything at all when the option to loot item over x option is selected. also option to attack monsters when using cannon and refilling it.
  29. can u pm the script id (and parameter if u have)? ive already sent u a pm
  30. So does this script no longer support safe-spotting? Because I remember long time ago, we use to be able to bind a safespot tile with f6 but now that option is just gone.
  31. Hell ya man! looking forwward to testing =]
  32. Can i get a trial please?
  33. sooooo what youre saying is make 1000 potato pickers? :P but no, in reality when farming do you just suicide the accounts? 24/7 till ban, trade to mule every hour? or at least try to make them last as long as possible (lol) 6 hours or less a day. ea how long does it take you typically before an ip is just useless. (monitored too closely (immediate/ip bans) never any problem with funding farming accs from a main? (ex. trading 1m from your main to each acc) do you use 1 mule account or cycle through a few? do you run the mule off its own ip? (separate from your personal accounts and bot farms) + any other questions or answers in general someone should know about basic muling :P
  34. Script Name: czar runecrafting - Trial Length: 24h - Reason for trial: I want to test out the script before purchasing it. - Are you going to give feedback on the script?: Of course
  35. could i get a trial? Already have Perfect Fishing bot, really happy with it!
  36. Why does it always want to imbue doing fire runes? Can't do normal fire runes?
  37. New rule: Your osbot account has to be more than 1 month old before you can request a trial. From now on I will refuse to give a trial to anyone with less than 1 months membership. why? to stop people creating a new account to abuse the trial system. This has happened already - you brought it upon yourselves!
  38. Woah, sorry lol! (I was sleeping - just woke up). Hope you enjoy it!
  39. Auth added. Enjoy!
  40. Auth added. Enjoy!

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.