Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/02/18 in all areas

  1. 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.jar
    7 points
  2. 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
  3. ────────────── 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
  4. CzarScripts #1 Bots LATEST BOTS If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    2 points
  5. 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 screenshots
    2 points
  6. 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 getMinScrollHeightNeeded
    2 points
  7. spam posting for post count is against the rules
    2 points
  8. 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
  9. 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 watamaloon
    2 points
  10. 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 impostor
    2 points
  11. 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
  12. Thank you, trying it out right now!
    1 point
  13. Daang, I thought I had myself covered with fancy words like 'indigenous'. Had to google Manifest Destiny though Guess this point goes to you
    1 point
  14. 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 all
    1 point
  15. its wonderful brother thank you, i havnt tried the other yet but this one seems to be flawless. i love it!
    1 point
  16. Isnt it that saying to reduce intake of animal meat and processed food and increase plant food, not saying completely remove meats? But yeah theres studies showing how eating plant based diets improves health, theres no arguing that. EDIT: Was that the guy who went to China after realizing the difference in colon cancer and heart disease vs USA and europe? Oh, yeah forgot about that. Yeah, because its their horrible diet. Im not saying drugs by itself is the only way either ?
    1 point
  17. 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
  18. I mean, guys. It's obviously healthier to eat plants. That's just a fact. Plants are better in almost every way for our bodies. Especially these days with the ways that livestock are raised and treated. Most of them barely walk, eat corn, are given steroids to grow faster and are electrocuted. The quality of the animal is pretty horrible throughout its life and it's no wonder that it would produce a bad body. Nothing good can come of torture, yet these animals are tortured and then we're eating their remains. On top of that, there are a number of processing plants that the meats go through after the animal has suffered abuse its entire life so the meat is even further tainted. This results in just a pretty bad meal. On the contrary, plants aren't all that much better today with the addition of pesticides and everything else that happens. If you find organic plants and grass fed, free roaming meat, that's a totally different story. But when your meats consist of nothing but KFC boneless nuggets (which boneless chicken is a worse on a totally different story) and the meat from fast food burger places, and the plants are being drowned by in chemicals to prevent them being eaten by insects, it's pretty sad and unhealthy both ways.
    1 point
  19. Discord - Switch#3154 Will go first if trusted. not paying more than £.47/m
    1 point
  20. You can go to the store .
    1 point
  21. Fair shout. I cant even get the client to open so maybe a good thing.
    1 point
  22. I am interested in 2 or 3 of those 66magic acc with 50 def pm me back!
    1 point
  23. 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
  24. 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
  25. 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
  26. Same here! Waiting on the course to take "mature lessons" to drive without being limited ?
    1 point
  27. 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 tomorrow
    1 point
  28. It's open source
    1 point
  29. literally went thru the same process you did. runeloader just stopped working one day. maybe the developer rip'd
    1 point
  30. Interesting, yeah I did get that 1-2 day temporary ban, probably only triggered by the missfiring of its killswitch to stop the bot and log-out then. So the script should check the bank, look for scales, if no scales found, it closes bank and should log out? Yeah I think you might need to take a look at that just in case something might have changed from an update or something. @fruity One more question, when I set up the script to do, lets say 2 dreams + idle on ending + log out at the end. Does that mean that it will idle on the 2nd dream when it is finally out of potions and then logout after it exits the dream and stop there? Just want to double check, I've usually been around before it actually finished the X amount of dreams i set it to do and usually turn it off. To anyone who is new to this script or prospective buyers, please buy this script. Fuck off with the trials, just buy it. Probably one of the best scripts available on the SDN, you can even check a recent post of the TOP Premium SDN scripts and many of us have brought up @Fruity's hardwork on this script. Very simple to set up, customizable, and has a friendly GUI. However i must recommend that you turn off the OSB client breaks and implement your own breaks into this, whether it's babysitting it and logging out after a couple hours OR setting up the script to only do X amount of dreams. This is a very well made script and has saved me countless hours of grinding as I've just come back to RS XD
    1 point
  31. if you're just looking for auto-refill slCannon works well (by @Slut)
    1 point
  32. Done with my NMZ Script but, thanks
    1 point
  33. Only loot my items option hasn't been changed in v218, I re-wrote regular looting first, I will handle all the other looting options in the upcoming update v219 which is almost complete. v219 will be the general update with all user requests/suggestions/tweaks added to the update. Stay tuned guys ^^ Glad to see a workaround for the client arrow key movement thing too. Noted down all user posts in a to-do notepad file don't worry guys ^^
    1 point
  34. Thank-you @Fruity got from 70-99 attack, str, def, hp using this script!
    1 point
  35. If you have Java 9/10, downgrade to 8. You need java 8 to run OSBot.
    1 point
  36. It's okay man, I can see that you are are trying to comment from experience and I am sorry for that. I am sorry she didn't wish to stay with you and went with someone else. It's okay though, you will find someone one day
    1 point
  37. " My girlfriend and I have been together for almost 3 years and she means the absolute world to me " Give it a few more years ^^ Anyway. Good luck on your adventure man! May the banhammer miss you!
    1 point
  38. 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
  39. YES! Hit me up with a trial
    1 point
×
×
  • Create New...