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 08/02/13 in all areas

  1. Cons: -Every step action is already pre-programmed, you can't adjust them, so there is not way of optimizing it for a unique given situation. -Scripts that it can make, are scripts that can already be made in 30 minutes or less (if people keep using / adjusting old methods). -Large scale (advanced scripts) will be more poorly structured the larger the node pool gets, and will break down reliability. Pros: -Allows for fresh programmers to get a feel of the basic structuring of script logic and processing. -MUCH Simpler to make boring scripts.
  2. GMC SuperScript Factory was designed so that the average OSBot user can create his own small scripts in order to execute tasks, mostly ones currently without scripts. Not only can the user create the script, he can also save it for later or even share it with the community. With this in mind, OSBot will surge in popularity due to the new versatility that the bot will offer with my script. I can see why Stark is mad because his sale numbers will drop off a cliff, but scripts on the SDN shouldn't be filled with simple tasks that SuperScript can replicate. If scripters want a challenge, they should consider creating farming, slayer, construction, minigame and pking scripts rather than continuously reinventing the wheel. I feel that the price that I'm charging (soon) is only fair, I'm not going to ask 14 year olds to pay me $100.00 in order to get a script that took me a weekend and a case of Coke to make. I see that you've mentioned that I won't be fixing any bugs, you quoted me out of context. I stated that the script would rarely, if ever break as like you said, it's an interface between the user and Java, no Jagex updates will break it. I'd obviously make helping users to use my script a priority as when I ask people for their hard earned money, they should only expect good customer support. I couldn't see any reason to not create multiple tutorials in order to give users a good idea on how to structure their scripts, I've already started by making a full video of making one and have countless screen shots with the full script in view to read. I'd also like to point out that the title of this thread is false, this thread is anything BUT unbiased as you're a script writer who can only lose by me releasing this script, a contrast in situation for those who came to this botting site for botting. Finally, I'd like to stress that I do understand the concept of the issues that you've outlined, but most of these issues would either not exist or not be much of an issue to this flourishing community. If SuperScript becomes a problem, simply make it out of stock like some of the other scripts, or give it its own section in 'Local scripts' and let me deal with the spam. Just remember, this script is for the community, not for the scripters who wish to remove children's wallets. All the best, Dashboard
  3. GMC SuperScript is genius. It should without doubt be released. Let's not talk about script that are currently broken... I think SuperScript is really useful for a lot of people. If you own the script you have the potentials to create simple script for routines which the user doesn't want to perform by him- herself. If the SuperScript is released it would mean that scripters who tend to sell their script have to work harder to create more advanced and origional scripts. This is good because it will improve the amount of quality scripts in this community. The point of a premium script is that it is something that holds a lot of value. If it could be replicated with the SuperScript it isn't really premium worthy. Scripts that prove to be impossible to be replicated by the SuperScript will still be sold.
  4. If you would like to add pouches (any type) into your script, and want to know what type of rune, and how much is in that pouch, this snippet is for you. Pouch import org.osbot.script.rs2.Client; import org.osbot.script.rs2.skill.Skill; public enum Pouch { SMALL(5509, -1, 1, 3, 3), MEDIUM(5510, 5511, 50, 6, 3), LARGE(5512, 5513, 50, 9, 7), GIANT(5514, 5515, 75, 12, 9); public final int normalID; public final int degradedID; public final int requiredLevel; public final int normalHold; public final int degradedHold; private Pouch(int AssignedNormalID, int AssignedDegradedID, int AssignedRequiredLevel, int AssignedNormalHold, int AssignedDegradedHold ) { this.normalID = AssignedNormalID; this.degradedID = AssignedDegradedID; this.requiredLevel = AssignedRequiredLevel; this.normalHold = AssignedNormalHold; this.degradedHold = AssignedDegradedHold; } public static EssenceType getPouchEssenceType(Client client, Pouch p) { int setting = client.getConfig(720); switch (p) { case SMALL: return setting >= 128 ? EssenceType.PURE : (setting >= 0x40) && (setting < 0x80) ? EssenceType.NORMAL : null; case MEDIUM: if (setting >= 64) setting %= 64; return setting >= 32 ? EssenceType.PURE : (setting >= 0x10) && (setting < 0x20) ? EssenceType.NORMAL : null; case LARGE: if (setting >= 64) setting %= 64; if (setting >= 16) setting %= 16; return setting >= 9 ? EssenceType.PURE : (setting >= 0x4) && (setting < 0x9) ? EssenceType.NORMAL : null; case GIANT: if (setting >= 64) setting %= 64; if (setting >= 16) setting %= 16; if (setting >= 4) if (setting < 0x9) setting %= 0x4; else setting %= 0x9; return setting == 0x2 ? EssenceType.PURE : setting == 0x1 ? EssenceType.NORMAL : null; } return null; } public static int getEssenceCount(Client client, Pouch p) { int setting = client.getConfig(486) - 0x40000000; switch (p) { case GIANT: return setting / 0x40000; case LARGE: setting %= 262144; return setting / 0x200; case MEDIUM: setting %= 262144; setting %= 512; return setting / 8; case SMALL: setting %= 262144; setting %= 512; return setting % 8; } return -1; } public int getNormalID() { return normalID; } public int getDegradedID() { return degradedID; } public int getNormalHold() { return normalHold; } public int getDegradedHold() { return degradedHold; } public int getRequiredLevel() { return requiredLevel; } public EssenceType getEssencesType(Client client) { return getPouchEssenceType(client, this); } public int getEssencesAmount(Client client) { return getEssenceCount(client, this); } } And for wrapping the rune types: public enum EssenceType { PURE(7936), NORMAL(1436); final int ID; private EssenceType(int ID) { this.ID = ID; } public int getID() { return this.ID; } } Example: import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Brainfree", info = "Pouch display", version = 1.0, name = "Pouch viewer") public class Example extends Script { public int onLoop() { return 35; } public void onPaint(Graphics g) { int x = 10; int y = 15; EssenceType type; for (Pouch pouch : Pouch.values()) { type = pouch.getEssencesType(client); g.drawString(pouch.name() + ":[Type: " + (type == null ? "None" : type.name()) + ",Quantity: " + pouch.getEssencesAmount(client) + "]", x, y); y += 15; } } } Hope you enjoy.
  5. Useless thread is useless...
  6. Something like this is good for the community. The only reason (guessing by the way to wrote your explanation) you posted this was to make people question the existence of this script and by doing so make want to ban it. The reason for this is because you don't want to have a competitor. You will have to make better scripts then those that people are making with this "interface". Ever see people advertise products that are "hand-made" because they are better quality ? It's like that for this script. Script writers know how Java works and how to work with it. The user of this interface just knows and is limited to pushing buttons. Everything you can do is customizable and will thus be better. I think it's time that script writers are forced to keep up with their work (the premium ones) and therefor giving a high quality service because if they don't people will just make their own version. Besides this isn't the first time someone made a script like this... BRAINFREE sent me this message on skype: Cons: -Every step action is already pre-programmed, you can't adjust them, so there is not way of optimizing it for a unique given situation. -Scripts that it can make, are scripts that can already be made in 30 minutes or less (if people keep using / adjusting old methods). -Large scale (advanced scripts) will be more poorly structured the larger the node pool gets, and will soon break down reliability. Pros: -Allows for fresh programmers to get a feel of the basic structuring of script logic and processing. -MUCH Simpler to make boring scripts.
  7. Every scripter that asks money for his/her script should make sure it is good enough to be premium. If it is, it will still sell just as much. If you create a complicated and advanced script it will be impossible to replicate the same methods with this SuperScript.
  8. I understand there's already a topic on this, I find it somewhat difficult to understand. Please understand that using breaks is an important part in keeping your account unbanned. More information on how to bot smart -> http://osbot.org/forum/topic/6894-bot-smart-what-it-is-how-to-do-it/ Defining the parts of a "break" [Average Interval] - The "average interval" is the average time between breaks. It's an "average" because of interval deviations, which i'll be getting to in a moment. This is how much time will be in between your breaks on average. [interval Deviation] - This is a very important part of making sure jagex doesn't notice a precise pattern in our breaks. Lets say your "average interval" is 75 minutes, and your "interval deviation" is 10 minutes. This means that the time between your breaks can be anywhere from 65 - 85 minutes. [Average Break Time] - The "average break time" is the average length of the breaks your account will be taking. It is an average, because there are also break deviations, which I will get to in a moment. Your "average break time" should be how long you want your account to stay logged off per break on average. [break Time Deviation] - Break time deviation is very similar to "interval deviation". Your "break time deviation" is how much the length of your accounts break can deviate from the average time. Lets say your "average break time" is 20 minutes and your "break time deviation" is 5 minutes. This means your accounts breaks will be anywhere from 15-25 minutes long. Here is a picture of my break setup Please be sure that you have the "enable breaks" box selected. Now, let me explain how breaks work going off of my break setup. My "average interval" is 75 minutes. my "interval deviation" is 25 minutes. This means that the time in between my accounts breaks can be anywhere from 50 - 100 minutes. my "average break time" is 25 minutes. My "break time deviation" is 10 minutes. This means that the length of my accounts breaks can be anywhere from 15 - 35 minutes. If you have any more questions, please feel free to ask below. Drop a like on the post if this helped you!
  9. Uh, well yeah. I'm kind of the same person? lol.
  10. The SDN system isn't completed yet. For now, it's impossible for users to delete any scripts from their repository. If you want a script deleted, you can PM @Ely or me. We do these manual removals until the repository is done. I've deleted the other 2 scripts for you.
  11. I think Live Chat provides a perfect mix of a way to support people and also a way to relax and have fun. Honestly the questions they ask are so simple and basic, it may only take up to a minute to help someone every once and a while. Help should always be allowed in my opinion.
  12. 1 point
    Stark GDK Features Supports ALL THREE green dragon locations Loots dragonhides, dragon bones, adamant ores, adamant full helms and rune daggers as default Option to loot nature runes and clue scrolls Option of teleporting to varrock using teletab, or walking to edgeville bank Option to hop worlds if there are x players nearby at dragons (excludes pking worlds when hopping) Option to pick up and eat bass dropped by dragons Impossible to lure out of dragon area Never follows the same path twice An extensive, intelligent antiban that greatly lowers the chance of being banned FLAWLESS Quickly handles wilderness interface pop up Works well in laggy environments DEATHWALK: Supports both teleporting and walking from lumb to edgeville Dynamic signatures: http://starkscripts.org/StarkGDK/signatures/stats.php?username= Highscores: http://starkscripts.org/StarkGDK/ Statistics: http://starkscripts.org/StarkGDK/profit.php Script outline The script kills green dragons north-west of varrock/edgeville. It has the option of walking to edgeville or teleporting to varrock. It will also perform a deathwalk/death teleport, depending on your preconfigured options. Instructions Start it somewhere sensible, e.g. edgeville bank or in the green dragon area. Change log v1.0 - Official release v.1.01 - Fixed issue with attempting to equip loot Fixed issue with not eating food to make room for loot Fixed issue with attempting to attack dragons before looting Changed GUI so that the hp slider is not fixed to 10% intervals - there are now no intervals between values v1.02 - Fixed lumb banking death walk Fixed problem with not looting before teleporting Fixed problem with not eating when run out of food during combat Added rare drop list to loot list (Uncut diamond, Loop half of a key, Tooth half of a key, Rune spear, Dragon spear, Shield left half) v1.03 - Changed loot priority to loot most valuable items first Fixed issue with trying to loot even when inventory is already full Fixed issue with trying to equip arrows that are obtained from ava's accumulator Added f2p worlds to excluded worlds Added option to loot coins Reduced number of teletabs taken from bank v1.04 - Fixed issue with walking too far from dragons when world hopping Fixed death walk (with teleport) issue v1.05 - Added show/hide button to paint Tweaked banking method to prevent repeated withdrawals Fixed teleport deathwalk v1.10 - New location (east drags) Glory support Saving settings (half done) Show how many items left in bank on paint Remove option to pick up nats, clue scrolls and addy ore (now set as default) Customisable mouse speed Tweaked looting method to avoid continuously clicking loot Withdrawal of anti dragon shields is now prioritised Added highscore system. Every time the script ends, your highscore info will be updated. View the highscores here: http://starkscripts....e.com/StarkGDK/ Can't wait to see who the king of GDK is v1.11 - Fixed issue with not withdrawing charged glory Fixed xp issue when starting script while not logged in The script will now withdraw extra food if you have low HP at the bank v1.20 - Fixed world hopping bug after deathwalk Fixed bug where the script was unable to walk to the bank Fixed bug with attempting to teleport above level 20 wilderness Changed walking method to prevent getting randomly stuck Added new location (east 2) Added eating at bank to restore HP Added potion support Generally tweaked the script to make it more efficient How do I get it? It's available on the SDN for a one time fee of $14.99 here: http://osbot.org/forum/store/product/50-stark-gdk/ In purchasing this script, you will receive access to the current version of the script, as well as lifetime updates. This is a limited offer! After 20 script sales, the price will be increasing to $14.99 in order to reduce the effect on the dragon bones/green dragonhide market. My commitment to you, as a customer I am committed to providing you with regular updates, which I will prioritise based on popularity. I will also help you with any problems you have with the script (although it is very straight forward to run). Finally, I'll provide quick bug fixes, if any bugs are found. If you need to contact me about ANYTHING concerning the script, feel free to add me on skype: noble.stark1 I have a skype group for all my GDK users. Feel free to add me, and I'll add you to the group. Highscores: http://starkscripts.org/StarkGDK/ Proggies 24 hours: 23 hours: 22 hours: 21 hours: 16 hours: 13 hours: 10 hours: 8 hours: 6 hours: 6 hours: 3 hours: 3 hours: 1 hour: 1 hour:
  13. Hey there! It's my time to announce the 'masterpiece' I've been working on for a few weeks now, It's called Abuse's Nature Runner Long story short: Trades the 91+ runecrafters from clanchat 'iDestin', gives them 25 essence in return for 50 and runs back to the general store to buy more while being fast, efficient and player-like. May also be used with a main level 91 runecrafting account and running bots to greatly boost your XP/Hour and obviously make bank. >NO REQUIREMENTS< Features: Near flaweless: I've tested this script for hours, over 1000 lines of code has been written to assure a near flaweless experience. Having the nature count totalling 30000+, tested on both level 3 accounts and main accounts with various variables that might occur (Crafter logging off, moving, taking a break, getting attacked at the store, random events, ..). Currently the script runs all the way until there are no crafters available and ends up logging off and checking back every X minutes SmartWalk: Custom walking function that is more player-like, fast and most importantly, random, meaning that it will never click the same tiles when walking anywhere. SmartWalk will be included in all of my upcoming releases SmartGUI: Each of my releases comes with a control panel to control your bot in action, allows you to change run settings, bank settings, walking settings, crafter names, etc ... on the fly without having to pause/stop the script Banking: User defines at how many nature runes it should bank, once that number is reached it peacefully walks to the ThZaar 'dungeon' bank and walks back to continue. This was written for the low level accounts that might have a slim chance of dying with large amounts of natures Anti-poison support: NEVER leaves the store without having an anti-poison potion in inventory, drinks it if poisoned, sells empty vials (and any other junk) to the store Multiple routes: Designed for level 3's and higher level characters Run from combat: Automatically toggles run when being in combat, runs away if attacked at an 'idle' location Antiban: CURRENTLY BEING WRITTEN Screenshots: - Main, 'risky' path: - Safe, 'Level 3' path GUI: DOWNLOAD: Abuse's Nature Runner will be released once I have finished writing the anti-ban functions assuring the most positive experience with my current and future releases. The release time is currently unknown until I've written the most parts of it. I am also planning to release this script to only a small group of people (or incorporate some sort of maximum total nature running bots limit) to prevent the nature altar to be overcrowded and increase the chance of being reported/banned Kind regards, Abuse
  14. Hi

    1 point
    I just need 20 posts haha, so i figured i could say hello I love playing and watching sports as well as watching great movies and mila kunis
  15. 1 point
    Just wanted to say Hi to everybody since form today i will be active member on osbot forums. I switched over from Advertising other bots isn&#39;t allowed. beacause well lets be honest - Advertising other bots isn&#39;t allowed. is a piece of shit. Will make many goldfarming goal threads and other intresting junk.
  16. Download this: http://up.ht/11WLGKE Fixed as of 8/11/13 - 1:00pm EST by @Cory Upcoming changes: Auto paint tab switching. Improve Edgeville yews. Add custom chopping. Change log: 3.1: Added Magic and Teak Ent ID. 3.0: Added Yew Ent ID. 2.9: Now does not pick up birds nest anymore when powerchopping. Added new maple and magic Ent IDs. 2.8: Fixed walking to bank in Seer's Village. 2.7: Fixed walking in Catherby and Sorcerer's Tower. 2.6: Added normal tree ent ID. Improved chopping normal logs. 2.5: Added hide button for paint (try hiding paint when experiencing low FPS). Now also drops birds nests when powerchopping. Fixed spam clicking tree bug. 2.4: Now uses tree names instead of IDs. Will not break anymore if IDs change. 2.3: Fixed tree IDs. 2.2: Changed action after detecting ent which should fix any ent problems (please let me know if not). Added Barbarian Outpost willows. Added Gnome Stronghold yews. Added Mage Training Arena Magics. Added new epic paint thanks to DarkzSide. Changed Sorcerer's tower magic path so it does not get stuck. Added screenshot option; makes screenshot's when detecting an ent, retreiving bird nest or when the script stops. and safes them in D:\. could be useful for bug reports. 2.1: Changed and improved ent detection. Added new IDs after RS Update. Improved some other small things. Added show/hide paint button. 2.0: Added Teak support. Including combat protection at Castle Wars. 1.9: Added magic support at the Sorcerer's Tower. Added "Ents avoided" to paint. 1.8: Added new ID to Ent detection which fixes breaking axes when chopping yews. 1.7: Fixed error in Edgeville. Fixed ent/evil tree detection. 1.6: increased speed of chopping in general alot. changed antiban and removed wc skill checking to make sure it doesnt bug out. Improved cutting yews in Catherby. Improved handling of evil tree's. Added time to level in paint (shows after a couple minutes). 1.5: Improved edgeville yews. Changed something to antiban so it won't accidentally click on skilltabs (again). improved evil tree detection for yews. Also improved antiban. 1.4: Should not be randomly opening skill tabs anymore. Added Yew support in Edgeville including smart positioning (if no tree's available, it will walk to the first tree that will spawn). Improved ent detection. 1.3: Added Yew support in Seer's Village and Catherby. Added Willow support in Catherby.Added location to paint. Improved anti-ban. 1.2: Added Willow support in Seer's Village. 1.1: Added Maple support in Seer's Village. 1.0: Release version. Screenshot's: Long progress reports are appreciated!
  17. Abyss Crafter Alpha Team's new project, see it's progress here. - Done - Started, unfinished - Not started yet Progress: Outer ring of abyss (obstacles) All obstacle support (we do NOT make use of boilers) Inner ring teleportation (all runes) Food support Energy pot support Pouches support Deathwalk Mounted glory method If you have suggestions, please post them in this thread
  18. After spending the last 4 hours trying to figure out why only .groovy's seem to be working on any of the current bots compatible with 07 scape, I have finally found a fix. After downloading the .jar for a local script, simply change the extension to .zip, and then back to .jar again. The reason this works is because when a .jar is compiled on a windows computer it isn't always recognizable by the mac operating system. Therefore when one turns it into a .zip and then into a mac based jar everything works fine and you can simply drop it into the script folder. I hope this helps, please spread the word!
  19. Ok, so I ripped this out of a chatter-bot-api and made it easier to use and static... /* chatter-bot-api Copyright (C) 2011 pierredavidbelanger@gmail.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package me.linus.chat; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.StringWriter; import java.math.BigInteger; import java.net.URL; import java.net.URLConnection; import java.net.URLEncoder; import java.security.MessageDigest; import java.util.LinkedHashMap; import java.util.Map; public class Cleverbot { private static final String url = "http://www.cleverbot.com/webservicemin"; private static final Map<String, String> vars; static { vars = new LinkedHashMap<String, String>(); vars.put("start", "y"); vars.put("icognoid", "wsf"); vars.put("fno", "0"); vars.put("sub", "Say"); vars.put("islearning", "1"); vars.put("cleanslate", "false"); } public static String parametersToWWWFormURLEncoded( Map<String, String> parameters) throws Exception { StringBuilder s = new StringBuilder(); for (Map.Entry<String, String> parameter : parameters.entrySet()) { if (s.length() > 0) { s.append("&"); } s.append(URLEncoder.encode(parameter.getKey(), "UTF-8")); s.append("="); s.append(URLEncoder.encode(parameter.getValue(), "UTF-8")); } return s.toString(); } public static String post(String url, Map<String, String> parameters) throws Exception { URLConnection connection = new URL(url).openConnection(); connection .setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0"); connection.setDoOutput(true); connection.setDoInput(true); OutputStreamWriter osw = new OutputStreamWriter( connection.getOutputStream()); osw.write(parametersToWWWFormURLEncoded(parameters)); osw.flush(); osw.close(); Reader r = new BufferedReader(new InputStreamReader( connection.getInputStream())); StringWriter w = new StringWriter(); char[] buffer = new char[1024]; int n = 0; while ((n = r.read(buffer)) != -1) { w.write(buffer, 0, n); } r.close(); return w.toString(); } public static String md5(String input) throws Exception { MessageDigest md5 = MessageDigest.getInstance("MD5"); md5.update(input.getBytes("UTF-8")); BigInteger hash = new BigInteger(1, md5.digest()); return String.format("%1$032X", hash); } public static String stringAtIndex(String[] strings, int index) { if (index >= strings.length) return ""; return strings[index]; } public static String think(String message) throws Exception { vars.put("stimulus", message); String formData = parametersToWWWFormURLEncoded(vars); String formDataToDigest = formData.substring(9, 29); String formDataDigest = md5(formDataToDigest); vars.put("icognocheck", formDataDigest); String response = post(url, vars); String[] responseValues = response.split("\r"); vars.put("sessionid", stringAtIndex(responseValues, 1)); vars.put("logurl", stringAtIndex(responseValues, 2)); vars.put("vText8", stringAtIndex(responseValues, 3)); vars.put("vText7", stringAtIndex(responseValues, 4)); vars.put("vText6", stringAtIndex(responseValues, 5)); vars.put("vText5", stringAtIndex(responseValues, 6)); vars.put("vText4", stringAtIndex(responseValues, 7)); vars.put("vText3", stringAtIndex(responseValues, 8)); vars.put("vText2", stringAtIndex(responseValues, 9)); vars.put("prevref", stringAtIndex(responseValues, 10)); vars.put("emotionalhistory", stringAtIndex(responseValues, 12)); vars.put("ttsLocMP3", stringAtIndex(responseValues, 13)); vars.put("ttsLocTXT", stringAtIndex(responseValues, 14)); vars.put("ttsLocTXT3", stringAtIndex(responseValues, 15)); vars.put("ttsText", stringAtIndex(responseValues, 16)); vars.put("lineRef", stringAtIndex(responseValues, 17)); vars.put("lineURL", stringAtIndex(responseValues, 18)); vars.put("linePOST", stringAtIndex(responseValues, 19)); vars.put("lineChoices", stringAtIndex(responseValues, 20)); vars.put("lineChoicesAbbrev", stringAtIndex(responseValues, 21)); vars.put("typingData", stringAtIndex(responseValues, 22)); vars.put("divert", stringAtIndex(responseValues, 23)); return stringAtIndex(responseValues, 16); } } Example usage: package me.linus; import java.io.BufferedReader; import java.io.InputStreamReader; import me.linus.chat.Cleverbot; public class Chat { public static void main(String... a) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Me: "); while(true) { String console = br.readLine(); console = Cleverbot.think(console); System.out.println("CB: " + console); System.out.print("Me: "); } } } Example output: Me: Hello CB: How are you? Me: Good, you? CB: I'm doing alright. Me: That's good to hear! CB: How are you doing? Me: Like I just said, I'm doing good CB: How am I confusing? Me: I didn't say you were confusing CB: Yes you did. Me: No, no I didn't CB: Yes, you did. Me: Fuck you CB: Yes, please.
  20. Hello, I am buying all willows/maple/yews/magics and also bowstrings Send me a message or find me in the chat room to discuss the price, Thanks, Andre'
  21. Thanks for the list. I will check them out. You should also add Choking Ivy. There's no need to bank, just picking up Nests. Location: Castle Wars, Varrock Castle Lol how cute What are you talking about? Ah I'm sorry I thought you were trolling/joking : Ivy isn't implemented in RS07 R U SERIOUS !
  22. Confirmed, Next week will be Santa's & Wintumber tree's https://twitter.com/JagexMatK
  23. This script supports every rare possible. So yes.
  24. oak larders when you get to 32 or 33 construction. Not sure what you do before you can do oak larders
  25. 1 point
    Yeah mining is so slow...... 25k exp hour tops... Good account.
  26. 1 point
    I would love to see you bot 1-85 mining in a week and not get banned? And mining is definitely not faster than fishing? Powerfishing is 50k + while the most you can get mining is 45k if you have a flawless granite script. And the granite script now manages around 25k xp.
  27. This is why there is a "Change default world" option.
  28. 1 point
    Laughed at the whale Welcome to OSBot, hope you enjoy your time here!
  29. 1 point
    Or just buy GP and buy vouchers and buy vouchers with gp
  30. 1 point
    ello and welcome. enjoy your stay
  31. 1 point
    Welcome mate! Loving the picture too haha
  32. kind sir, did you notice that your thread layout realy looks like a "stif hard man snake"
  33. 1 point
    sup mate,
  34. JaGeX can't ban you from client alone as they have no direct way of knowing if you're using their loader, Advertising other bots isn&#39;t allowed., Swift Kit, OSBot, etc unless they looked at your files on your computer which is against the law. Bot Busting Moderate comes from a Jmod, not from their bot detection system.
  35. 1 point
    ye that happens if your using OSbot for free, its an ad were they get payed for.
  36. Jagex can't do such thing..... Your ip is flagged...
  37. asked for some help regarding merching and profit etc. was really nice and friendly and helped me out quite abit. Thanks for the help mate.
  38. Thanks for the reply. I have genuinely tried to be as unbiased as I can with this post. I'm not mad because my script sales will fall off a cliff, I don't think the script will affect my script sales much. I wish you all the best.
  39. Life as it is, is uncertain. You can't tell me anything that will definitely happen. So what is really there at all? Nothing wrong with loving yourself, what religion teaches that it's wrong? Death is a natural course to everything living, nothing evades death. When people talk to their pets, can their pets hear them?
  40. Bug: When going to open the trap door it sometimes does an Anti-Ban and won't click on the trapdoor, only problem I am seeing right now, nice script so far! Ill edit this when i get another incidence like this and show a pic.
  41. sry to hear about ur missing keys
  42. Hey osbot. I just wanted to put my opinion out there on the banning bots situation. You guys complain about being banned yet you botted and hell you knew the risk. You guys complain that osbot client is detectable but yet you've been banned around 4-5 times on the same ip and have now been flagged. It doesn't take a rocket scientist to figure out why some of you have been banned. NOT EVERY BOT HAS ANTI BAN. Do some research on what bot your using and how high is the ban rate for that said skill. Please just don't blame it on script writer or osbot. I bot around 3-5 hours a day but I also play the game. I go do questing, hunt for clue scrolls etc. When you bot there will always be a high chance of getting banned. That is how it is and if you g bot it's YOUR FAULT for taking that risk. I'm tired of seeing the blame game. (I know I only have this one post but I do read almost every topic in discussion and other places)
  43. Yes it started failing once it was updated. Same here! Feel bad for the people who wasted their money I've been away on vacation, I alerted everyone in the RoboticPower Skype group chat that I was away, along with my Skype status. I'll fix the banking issue later today. It varies, once OSBot releases their webwalking we'll push our new antiban. --------------------------------------------------------------------------------------------------------------- Updated the EdgeLooter to fix the banking issue, antiban is not implemented, report any issues.
  44. 1 point
    I have an idea... if your character gets skulled the bot should tele out of the wildy and either 1. wait in the bank until it gets unskulled or 2. bank everything, turn auto retaliate off, and let the varrock guards kill the character by the east or west bank, then have it proceed with its "deathwalk" once killed (remember to have it turn auto retaliate back on). By implementing this feature people wouldn't lose valuables due to getting skulled and would be able to resume botting unskulled as soon as possible. I have lost quite a bit of profit due to getting killed while skulled. Also failed deathwalk twice today. One time it was in lumby and kept hopping worlds and another time it just got stuck in varrock. Died again and this time it had status "killing dragons". I've apparently been standing in lumby for over an hour and a half lol
  45. 1 point
    Not at all. If not a bit faster.
  46. You know I used to think the same way but I read this in a book, which helped me look at it differently. “You are confused because the Bible describes God as an omnipotent and benevolent deity…Omnipotent-benevolent simply means that God is all-powerful and well-meaning.” I understand the concept. It’s just…there seems to be a contradiction.” Yes. The contradiction is pain. Man’s starvation, war, sickness…” Exactly!” Chartrand knew the camerlengo would understand. “Terrible things happen in this world. Human tragedy seems like proof that God could not possibly be both all-powerful and well-meaning. If He loves us and has the power to change our situation, He would prevent our pain, wouldn’t He?” The Camerlengo frowned. “Would He?” Chartrand felt uneasy. Had he overstepped his bounds? Was this one of those religious questions you just didn’t ask? “Well…if God loves us, and He can protect us, He would have to. It seems He is either omnipotent and uncaring, or benevolent and powerless to help.” Do you have children, Lieutenant?” Chartrand flushed. “No, signore.” Imagine you had an eight-year-old son…would you love him?” Of course.” Would you let him skateboard?” Chartrand did a double take. The camerlengo always seemed oddly “in touch” for a clergyman. “Yeah, I guess,” Chartrand said. “Sure, I’d let him skateboard, but I’d tell him to be careful.” So as this child’s father, you would give him some basic, good advice and then let him go off and make his own mistakes?” I wouldn’t run behind him and mollycoddle him if that’s what you mean.” But what if he fell and skinned his knee?” He would learn to be more careful.” The camerlengo smiled. “So although you have the power to interfere and prevent your child’s pain, you would choose to show your love by letting him learn his own lessons?” Of course. Pain is part of growing up. It’s how we learn.” The camerlengo nodded. “Exactly.” tl:dr God is a parent, he gives advice and we make our own mistakes but he doesn't follow behind us and watch everything we do. He wants us to be more careful, and although he has the power to prevent all the pain we endure, he wants us to learn from what we do to better ourselves. The book is Angels and Demons, by Dan Brown, if anyone is curious.
  47. Man u overbid urself are you really that stupid I pay good money for accounts i like. Your bids are so low you just do it to get your post count up.
  48. there actually are people being banned wrongly because they are using swiftkit OP is an idiot, he is talking about an RS3 bot which is detectable currently. Has nothing to do with OSbot, lost respect for you that's for sure. Explain why I am still up and botting. It is what you bot, how long you bot, and whether it is your unlucky day of running into a mod. please explain how I was autobanned when questing legitimately through the OSbot client. again, some people get lucky and some don't. you are lucky. also, please explain the exponential rise in bans across the board. It's not hard to see. Your IP is flagged? That is a potential explanation. Just because you are currently not botting doesn't mean you won't get banned for recent botting. People are caught by mods and they are not near their computers to respond...

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.