Leaderboard
Popular Content
Showing content with the highest reputation on 05/02/18 in Posts
-
Open Minnows One-click fishing training What is it? This script will catch you minnows! Features Fishes minnows in the expanded fishing guild Avoids & moves away from the fishing spot that eat your minnows Open source Requirements Small fishing net 82+ fishing Angler's outfit More Details Start the script on the expanded fishing guild platform with the required items. Code import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "Open Minnows", version = 1.0, author = "Eliot", info = "Fish minnows", logo = "") public class MainDriver extends Script { private long startTime; private ConditionalSleep flyingFishCS; private ConditionalSleep interactingCS; private ConditionalSleep runningCS; // Paint constants private final Color transBackground = new Color(0, 0, 0, 178); private final Color rsOrange = new Color(252, 155, 31); private final Font font = new Font("Helvetica", Font.PLAIN, 12); @Override public void onStart() { startTime = System.currentTimeMillis(); getExperienceTracker().start(Skill.FISHING); flyingFishCS = new ConditionalSleep(1500) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null && myPlayer().getInteracting().getModelHeight() > 9; } }; interactingCS = new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null; } }; runningCS = new ConditionalSleep(3000) { @Override public boolean condition() throws InterruptedException { return getSettings().isRunning(); } }; } @Override public int onLoop() throws InterruptedException { if ((myPlayer().getInteracting() == null && !myPlayer().isMoving()) || (myPlayer().getInteracting() != null && myPlayer().getInteracting().getHeight() > 9) || getDialogues().isPendingContinuation()) { flyingFishCS.sleep(); if (!getSettings().isRunning() && getSettings().getRunEnergy() > 30) { getSettings().setRunning(true); runningCS.sleep(); } else { Entity fishingSpot = getNpcs().closest((Filter<NPC>) npc -> npc.getName().equals("Fishing spot") && npc.getModelHeight() < 10); if (fishingSpot != null) { fishingSpot.interact("Small Net"); interactingCS.sleep(); } } } return random(50, 200); } @Override public void onPaint(Graphics2D g) { // Set the font g.setFont(font); // Transparent box, holds paint strings g.setColor(transBackground); g.fillRect(1, 250, 225, 88); // Outside of transparent box g.setColor(rsOrange); g.drawRect(1, 250, 225, 88); // Draw paint info g.drawString("Open Minnows by Eliot", 10, 265); g.drawString("Runtime: " + formatTime(System.currentTimeMillis() - startTime), 10, 285); g.drawString("Fishing XP (p/h): " + getExperienceTracker().getGainedXP(Skill.FISHING) + " (" + getExperienceTracker().getGainedXPPerHour(Skill.FISHING) + ")", 10, 300); g.drawString("Fishing Level: " + getSkills().getStatic(Skill.FISHING) + " (" + getExperienceTracker().getGainedLevels(Skill.FISHING) + ")", 10, 315); g.drawString("Time to level: " + formatTime(getExperienceTracker().getTimeToLevel(Skill.FISHING)), 10, 330); } /** * Formats the runtime into human readable form * * @param time * @return string representing the runtime of the script */ private String formatTime(final long time) { long s = time / 1000, m = s / 60, h = m / 60; s %= 60; m %= 60; h %= 24; return String.format("%02d:%02d:%02d", h, m, s); } } Download https://nofile.io/f/N3FPNxyq87J/PowerMinnows.jar7 points
-
NEW! Added Gemstone Crab! 81 Hours at Cows Brutal Black Dragon support Sulphur Nagua support Blue Dragon 99 ranged 99 Ranged at Gemstone Crab 81 Range F2p Safespotting Hill Giants Hotkey List // F1 = set cannon tile // F2 = hide paint // F3 = Set afk tile // F4 = reset afk tile // F6 = Set safespot tile // F7 = activate tile selector // F8 = Reset tile selector // F9 and F10 used by the client, EDIT: will re-assign as they are no longer used by client // F11 = Set breaks tile // F12 = Reset breaks tile User Interface Banking Tab Demo (handles everything with banking) You can copy inventory (to avoid adding individual items...), you can insert item names which have Auto-Fill (for you lazy folk!) and you can choose whether to block an item and avoid depositing it in bank, ideal for runes and ammo. Looting Tab Demo (From looting to alchemy, noted/stackable items too) You can choose whether to alch an item after looting it simply by enabling a checkbox, with a visual representation. All items are saved upon exiting the bot, for your convenience! Tasking Demo (Not to be confused with sequence mode, this is an individual task for leveling) You can set stop conditions, for example to stop the bot after looting a visage, you can have a leveling streak by changing attack styles and training all combat stats, you can have windows alert bubbles when an event occurs and an expansive layout for misc. options! Prayer Flick Demo (Just example, I made it faster after recording this GIF) There are two settings: Safe mode and efficient mode, this is safe mode: Fight Bounds Demo Allows you to setup the fight bounds easily! Simplified NPC chooser Either choose nearby (local) NPCs or enter an NPC name to find the nearest fight location! Simple interface, just click! Level Task Switch Demo (Switching to attack combat style after getting 5 defence) You can choose how often to keep levels together! e.g. switch styles every 3 levels Cannon Demo (Cannon is still experimental, beta mode!) Choose to kill npcs with a cannon, recharges at a random revolution after around 20-24 hits to make sure the cannon never goes empty too! Results Caged Ogres: How does this bot know where to find NPCs? This bot will find far-away npcs by simply typing the NPC name. All NPCs in the game, including their spawn points have been documented, the bot knows where they are. You can type 'Hill giant' while your account is in Lumbridge, and the bot will find it's way to the edgeville dungeon Hill giants area! Here is a visual representation of the spawn system in action (this is just a visual tool, map mode is not added due to it requiring too much CPU) Fight Area Example (How the bot searches for the npc 'Wolf') Walking System The script has 2 main walking options which have distinctive effects on the script. The walking system is basically a map with points and connections linking each point. It tells the script where to go, and decides the routes to take when walking to fightzones. Walking system 1 This uses a custom walking API written by myself and is constantly being updated as new fightzones are added. Pros: - Updates are instant, no waiting times - More fightzones are supported Cons: - Sometimes if an object is altered, the changes are not instant - Restarting the script too many times requires loading this webwalker each time which adds unnecessary memory (there is no way to make it only load at client startup since I don't control the client) Walking system 2 This is the default OSBot webwalking API - it is relatively new and very stable since the developers have built it, but is currently lacking certain fightzones (e.g. stronghold) and other high level requirement zones. It is perfect for normal walking (no object interactions or stairs, entrances etc) and never fails. Pros: - Stable, works perfect for normal walking - All scripters are giving code to improve the client webwalker - More efficient when restarting the script since it is loaded upon client start Cons: - No stronghold support yet - Some new/rare fightzones not supported yet - If there is a game-breaking update or an unsupported fightzone, it may take some time to add/repair (less than 24 hours usually) So which system should I choose? Whichever one suits your chosen fightzone best! There really shouldn't be any problems - the sole purpose of these options are for backup and emergency purposes, if the script ever messes up there is always the next option to select. Note: If the script ever fails, there will be immediate updates to fix the walking systems! Script Queue/Bot Manager: Script ID is 758, and the parameters will be the profile name that you saved in the fighter setup! Bug Report templates: New feature request - What is the new feature - Basic description of what the script should do - Basic actions for the script: 'Use item on item' etc. For when the script gets stuck on a tile (or continuous loop): - Which exact tile does the script get stuck on? (exact tile, not 'near the draynor village') - Plugin or normal script? - Did you try all 3 walking options? Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug - How did you make the bug happen - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? - Normal script or a plugin? - Which exact setup options are enabled? Afk mode, cannon mode, etc etc.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.3 points
-
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 screenshots2 points
-
Download: http://osbot.org/devbuilds/osbot 2.5.7.jar Changelog: -Patched bank scrolling, please give feedback -Patched web walking exceeding threshold limit in certain areas with teleports on -Patched threading issue with script executor -Added support for game ticks -Plugin selector GUI under development, currently doesn't work - not a bug -Deprecated needToScrollDown -Deprecated needToScrollUp -Deprecated needToScroll -Deprecated getMaxScrollHeightNeeded -Deprecated getMinScrollHeightNeeded2 points
-
2 points
-
2 points
-
2 points
-
They actually do, though. The FDA allowed a lot of things that kills people. USA spends a world breaking 3+ Trillion dollars annually on health care, yet we're nowhere near the top of the world in health.2 points
-
Literally my lunch right now Protein shake/bannana/peanut butter/ raw manuka honey from local farm/ chia seeds BCAA's cuz i love my placebo effect and the taste they deliver, with a bowl full of watamaloon2 points
-
Hey, i've seen a lot worse. This one time this guy paid for a service and only decided to ask him for a pm confirmation after he already paid him. Turns out he paid an impostor2 points
-
1 point
-
Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime 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:nogui1 point
-
They're not the most popular build but as mentioned before, theres a market for almost any type of account. All you need to do is have a little patience.1 point
-
My account was too new to get a trial so I winged-it and bought the script.. its running absolutely flawlessly for 6 hours accumulated so far. Great work, and thank you.1 point
-
this hacked my 99 fishing account and got me 300k minnows1 point
-
1 point
-
Always. I try to be the better person. Also would like to keep a good rep, as I've been a on/off member since 20131 point
-
1 point
-
1 point
-
Daang, I thought I had myself covered with fancy words like 'indigenous'. Had to google Manifest Destiny though Guess this point goes to you1 point
-
1 point
-
its funny how vegans think their doing so much good eating plant based diet......at the end of the day the produce your buying still had to be shipped to your supermarket with the same emissions that it took the meat...unless your growing your veggies or buying locally your not saving fuck all1 point
-
its wonderful brother thank you, i havnt tried the other yet but this one seems to be flawless. i love it!1 point
-
Certain extremities like a gunshot/broken bone or sudden heart attacks do require drugs. But to put someone on medication for diabetes/high blood pressure while not implementing plant based foods in the diet is not solving the problem.1 point
-
there is extreme profit with big pharma. why would they promote a healthy lifestyle, that would render them without business? if people could heal themselves naturally, and take care of their own health through the foods they eat, that would be a multi billion dollar industry down the drain.1 point
-
1 point
-
1 point
-
1 point
-
I am interested in 2 or 3 of those 66magic acc with 50 def pm me back!1 point
-
As frost mentions here. Re-buying it is basically the same as paying for a recurring membership so there shouldn't really be any issue. The $10 you pay now will give you a month (just as it would if you had auto renewal). After that, the renewal per month is $10.1 point
-
1 point
-
1 point
-
Make sure when you go to pay in the checkout that you select "Pay renewal costs automatically" otherwise it wont renew each month.1 point
-
Not sure why it didn't renew; but you're not really losing anything from re-subscribing. The payments are always made when there are "0 days left" of the subscription; which buys 30 days. The first month is never free. If you do re-subscribe tho, you should make absolutely sure the previous subscription is properly cancelled, so you don't end up double paying.1 point
-
Hmm, thanks for this. It may well be the use of magic but I will give it a test hopefully later today. -Apa Are you using mirror mode? If so, don't! (see the section 'things to consider before buying/trying' on the main thread) -Apa Certainly, done!1 point
-
1 point
-
1 point
-
Just fixed a bug with getting stuck with no teletabs left (eg. if you started the script after already using some, with multiple chests per run settings) when using tabs to return to surface. Should be live sometime tomorrow1 point
-
1 point
-
1 point
-
If you have Java 9/10, downgrade to 8. You need java 8 to run OSBot.1 point
-
1 point
-
This is completely opinionated, but, I suggest you invest in yourself before investing in someone else. Sounds very selfish, but if anything turns sour (Which I really hope doesn't happen!) at least you won't feel like you wasted your time. OT: Good luck with you adventure, keep us posted. Remember, learn from your mistakes, and don't get discouraged! The gold-farming 'game' isn't what I remembered it to be anymore.1 point
-
Thanks Bro, Any motivation is good motivation Will try keep you up to date 100% she saved me from who I was and made me who I am today1 point
-
1 point