Leaderboard
Popular Content
Showing content with the highest reputation on 10/12/17 in all areas
-
Here's a quick way to get key/value pairs from your CLI parameters. We can take: -script TestScript:body.green-d'hide-body.legs.preists-robes.location.varrock.mode.attack And convert it to: BODY:green d'hide body LEGS:priests robes LOCATION:varrock MODE:attack You're probably wondering 'why are the keys uppercase?', well that's to signify what the bot thinks are keys. A little debugging and you'll be able to see what your bot sees. The full-stop "." is our delimiter, and the hyphen "-" is our replacement for the space " " key. Example code + template: public class Test extends Script { Map<String, String> parameters; String mode; @Override public void onStart() throws InterruptedException { compileParameters(); mode = parameters.get("mode"); } @Override public int onLoop() throws InterruptedException { // log out the parameters for debugging purposes logger.debug(parameters); // use parameters if (mode != null && !mode.isEmpty()) { if (mode.equals("attack")) { // TODO - attack something } } return 1000; } /** * Compiles OSBot parameters into key/value pairs */ private void compileParameters() { String rawParameterString = getParameters(); String[] contents; String key; String value; parameters = new HashMap<>(); if (rawParameterString != null && !rawParameterString.isEmpty()) { logger.debug(rawParameterString); contents = rawParameterString.split("\\."); if (contents != null && contents.length > 0) { for (int i = 0; i < contents.length; i += 2) { key = contents[i]; key = key.toUpperCase(); value = (i + 1 < contents.length ? contents[i + 1] : ""); value = value.replaceAll("-", " "); parameters.put(key, value); } } } } } Have fun!6 points
-
5 points
-
Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui3 points
-
He was caught bad mouthing and tarnishing someone else's reputation on OSBot to get sales over them. We don't tolerate such things and decided to close his account thread. He probably got upset about it and said all the wrong things to the wrong person.3 points
-
3 points
-
────────────── 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.2 points
-
2 points
-
2 points
-
Disputed Member:[member=purplewatilla] Why it should be removed: cuz i havent done a trade Details: Link to topic:2 points
-
Your computer probably had an old DHCP IP and the router gave that DHCP IP to some other device therefore rendering your computer unable to connect until the router fixes the problem itself.2 points
-
nice try faggot we all know who the real artist is here on these forums2 points
-
NEW: Released Chop & Firemake plugin Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!1 point
-
All accounts have the following benefits: Legacy logins, 300+ days old, No email linked, Played on Residential IPs, Instant delivery Join the discord: discord.gg/w3SuTG6ng7 Please purchase the accounts here: antoniokala.mysellauth.com Accounts for sale: LEGACY LOGINS (tut not completed) The account has only been created. TUTORIAL ISLAND COMPLETED ACCOUNT - LEGACY LOGIN The account has been created, and tutorial island is completed. Extra benefit: some accounts may have completed extra quests after completing tutorial island. TRADE READY - MINING ACCOUNT - LEGACY LOGIN 30+ mining - 10 Quest points - Over 100 Total Levels - 6 Quests completed - Legacy Login - 20+ Hours played time Example levels: TRADE READY - WOODCUTTING ACCOUNT - LEGACY LOGIN 40+ woodcutting - 10 Quest points - Over 100 Total Levels - 6 Quests completed - Legacy Login - 20+ Hours played time Example levels: All accounts have been created by me and I am the original owner. TERMS AND CONDITIONS: Discord username: antonio_kala Unique discord ID: 122031094752215044 Stock: 5k+1 point
-
The only Runecrafting bot you will need Purchase this INSANE bot here You can setup a master account (preferably your main account, can be any account) and a worker account (a throwaway bot account, or any account) will trade the master account and go to bank to get more runes etc. The main account (master) does not need to bot, and can be achieved through the normal RS client without a bot client. Supports: Air runes (1) (normal) & (abyss) Mind runes (2) (normal) & (abyss) Water runes (5) (normal) & (abyss) Earth runes (9) (normal) & (abyss) Mud runes (13) (earth altar) Lava runes (23) (fire altar) Fire runes (14) (normal) & (abyss) Body runes (20) (normal) & (abyss) Cosmic runes (27) (normal) & (abyss) Chaos runes (35) (normal) & (abyss) Astral runes (40) (normal) & (abyss) Nature runes (44) (normal) & (abyss) Law runes (54) (normal) & (abyss) Blood runes (abyss) & (zeah) Auto Arceuus Favour Solver Gets 100% arceuus favour for you Auto GE Restocking Sells runes, buys more supplies automatically Auto-equips chosen armour/robes Use Blood Essences Death Handler gets items from Death's office and repeats (Abyss) Glory mode, ferox mode, house spell/tabs Avoids pkers and hops worlds Uses mouse invokes for quicker runecrafting (stealth) Muling (BETA) will give money to your mules every X hours or profit Creates colossal pouch if you have the needle Results and screenshots1 point
-
'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here1 point
-
So this is the very very first script I made for OSBot. It's called Chop, Drop, Burn. I made it because it is unique and something like this doesn't exist on the SDN. This script has two modes: 1. Chop & Drop 2. Chop & Burn The first mode will powerchop any type of log, anywhere in rs, and drop it The second mode power chops any type of log, and then lights fires out of it, anywhere in RS [it automatically detects if tinderbox is in inventory] There are multiple failsafes such as: 1. Being attacked by NPC 2. Unreachable tile 3. Goes back to starting position 4. Moves to next tile if a flower is on the ground 5. Looks for axe and if not found, then logs out 6. Woodcutting level to low [nvm I deleted this because God Apa told me to] Problems with the script: I didn't encounter any as this script got me 60 wc and fm, but I wanted to make several improvements such as: 1. Scan the entire area and light fires on the path that is the most clear [i.e. Not interrupted or occupied by ground decor] 2. Start at the east most end and then light fires [I actually got an algorithm for this lol (surprisingly)] 3. Use enums!!! Enums are hella powerful lol, but when I started programming, I didn't even know what encapsulation was rofl. I thought enums were a type of fruit... But not anymore. 4. Add a progressive mode [i.e. Automatically switch to the next tree] 5. Add the ability to just light fires at ANY bank and calculate the most "clear" path. 6. Pseudo-anti-ban for those who believe it helps with bans 7. Organize code into different classes 8. Switch from the state framework to task framework ^ I was very close to doing the above but then... Well let's just say that I never got around to it and I never will. I'm posting this for others to learn and if anyone wants to finish what I started [and take my ideas], feel free, you don't even have to credit me, and I hope you don't lol. I quit. Source [Don't bother giving me feedback, I quit]: https://pastebin.com/JL83jbCz Also, I would like to thank the following people: @Apaec: Gave me excellent feedback on what to improve. He also tore me a new one which was very helpful @Chris: Criticized my crappy code and helped me with lambdas. [I still don't know how they work lol, but surprisingly I can use em] @Auron: Criticized my crappy code and introduced me to conditional sleeps1 point
-
CQuest Completes Rune Mysteries, Restless Ghost, and Romeo & Juliet Works when low cpu enabled and client rendering disabled Absolutely NO setup, no items, no problems Averages a 30-40 minute run time Works right off the boat! Download Link CQuest 1.04 Change Log Todo Pictures1 point
-
1 point
-
1 point
-
The reason this wasn't working is because not all the features have been added yet, I'll push an update this Sunday and fishing will be properly supported then.1 point
-
1 point
-
It just does nothing. I play it from the OSBot menu and it starts then stops. Script does nothing. I'm fairly certain I started the script with an empty inventory, so it should have started the banking sequence and went on. It's possible I had something in my inventory, and looking at the code now it appears it will only move with a full or empty inventory. Thanks Apaec, it's good getting some feedback from you considering your sandcrab script is one of the most used in my library. I'm going to put this project on pause for the night and do what you suggest. I'll get a good grip of the fundamentals and continue to work my way up. Thank you, I will make the changes tonight. I noticed the first line of code you're referring to earlier, I must have left that there on accident when I was trying to figure out the proper usage of positions.1 point
-
By the way, iPhone X got his screen from Samsung, which is their sole supplier so I am not what are you talking about "Better Quality Screen" when Samsung is supplying them with. Better OS System, this is totally down to the user. You may feel IOS is better, some may feel Android is more fun to mess with? Samsung Note 8 is $900, Pixel 2 is also pretty top notch. From your replies and quotes, I recommend you to stop being an iSheep.1 point
-
1 point
-
1 point
-
1 point
-
https://osbot.org/forum/notifications/options/ at the very bottom, it might be people you're following?1 point
-
1 point
-
Without unique drop and factoring cost of supplies, 15-17/kills hour, can I assume 850-900k hr?1 point
-
Dude, good job if this is your first script. I can't write a half-decent script for life of me and you come in here with a task-basked script. I hope your adventures and endeavors go well.1 point
-
You're still crazy to think jagex would care about your two bots when people here are running 100+ per computer1 point
-
1 point
-
1 point
-
1 point
-
1 point