Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/17/18 in Posts

  1. You could override the break manager, start a break when the boss exists, and finish the break after 10 minutes. Example break manager: import org.osbot.rs07.api.Client; import org.osbot.rs07.script.RandomEvent; import org.osbot.rs07.script.RandomSolver; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Explv", name = "Break Manager", info = "", version = 0.1, logo = "") public class CustomBreakManager extends RandomSolver { private long breakDuration = -1; private long breakStartTime = -1; private boolean shouldLogout; public CustomBreakManager() { super(RandomEvent.BREAK_MANAGER); } public void startBreaking(final long breakDuration, final boolean shouldLogout) { this.breakDuration = breakDuration; this.breakStartTime = System.currentTimeMillis(); this.shouldLogout = shouldLogout; } public long getBreakStartTime() { return breakStartTime; } @Override public boolean shouldActivate() { return breakDuration > 0 && !finishedBreaking(); } public boolean finishedBreaking() { return System.currentTimeMillis() - breakStartTime >= breakDuration; } @Override public int onLoop() throws InterruptedException { if (shouldLogout && getClient().getLoginState() == Client.LoginState.LOGGED_IN) { if (getWidgets().closeOpenInterface() && getLogoutTab().logOut()) { return 1000; } } if (getMouse().isOnScreen()) { getMouse().moveOutsideScreen(); } return 3000; } } Overriding (should be only done once, in onStart): CustomBreakManager customBreakManager = new CustomBreakManager(); customBreakManager.exchangeContext(getBot()); getBot().getRandomExecutor().overrideOSBotRandom(customBreakManager); Starting a break: if (getNpcs().closest("Boss name") != null) { customBreakManager.startBreaking(TimeUnit.MINUTES.toMillis(10), true); }
    2 points
  2. i got 30-84 fishing on suicide. be careful though! @jca is amazing
    2 points
  3. 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.
    1 point
  4. NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png
    1 point
  5. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
    1 point
  6. I would just like to thank everyone for having me as a Developer here at OSBot. Recently I signed a contract for a new software engineer position which would preclude me from continuing work here. I’m excited to start on this new adventure and will stick around the forums to still give advice on programming solutions, scripting help, etc. OSBot has been an incredible learning experience and instrumental to my professional experience. @Maxi, @Zach, and @MGI are the most intelligent programmers I know, and you will still be in great hands! Although @Maldesto and I are like brothers that would be willing to kill each other, at the end of the day he’s had my back more than ever. Big thanks to @Token for taking up his new role as a Script Officer; his responsibility has increased a lot over the last few months and has been managing the SDN. There’s not much else to say but I hope everyone the best and to continue using moveMouseRandomly(). Love, Alek Edit: @Vilius has requested I give him a shoutout.
    1 point
  7. There is no system for bans. It's near impossible to predict whether you would get a perm or a two day, however perms are far more common no matter the skill, especially for young accounts.
    1 point
  8. Title. I’m not looking for a maxed one. Just one that has 55 slayer with relatively low range that’s not affecting a combat. Can literally have nothing else but strength and slayer. Requirements must be at lease 1 defense, 1 attack. No more than $100 budget. Must also have no registered email and come with the original login email.
    1 point
  9. Sold me 10m and gave me a bonus 500k!!! A*** Service! Quick and Easy!
    1 point
  10. User finished my order within a few hours! Really fast, and trustable service. Has my bank on the account also but had no problem trusting this gentleman!
    1 point
  11. he mean he woud work 6-10hours a day
    1 point
  12. Currently not hiring workers but I will keep you in mind!
    1 point
  13. Good stuff! Thanks mate, if you have any suggestions just let me know.
    1 point
  14. Thinking about getting this one and your flax spinner (I've bought several other scripts). Could I get a trial for THIS (for tomorrow) - I want to really see if the banking works.
    1 point
  15. Thank you sir. Thank you.
    1 point
  16. Ain't that the truth! OP stay at it! Good luck with completion, looking forward to it.
    1 point
  17. https://gyazo.com/cc4f6ccd244d3bdea70ebb4348ad6fb1
    1 point
  18. Oh man, I used to spam the shit out of this bot back in the day in RS2, used to be a good money maker but with the release of the Farming Guild + Herb Boxes this might not be great money but I doubt anyone would care since it's gonna be awesome to get some afk farming xp Good luck! I look forward to seeing this released
    1 point
  19. I remember in 2007 this actually used to be like the primary script for leveling theiving
    1 point
  20. Just bought your spinner, love it, thank you! May i have a trial of this one? Thank you!
    1 point
  21. Thank you, seems to work pretty well now. Banking well, I'm running without food withdrawal though.
    1 point
  22. great man , i love this band yeap seems to be true :c
    1 point
  23. No one usually buys accounts from someone with no rep for anything other than paypal, and you asking for something other than paypal makes it seem you're going to take it back and want them not to be able to attempt to take back their money. Not one site is the answer.
    1 point
  24. Only Withdraws X 14 Logs? Making Arrows are out of date - It spam clicks back and forth when it's now an interface option Shields have not been added Task mode is Broken Does not take advantage of the "Withdraw X " option at the bottom of the bank which allows 1 mouse click = Withdraw all - Instead the bot Right clicks and withdraws 14 logs or " all " which is an extra click versus the New updated Bank features
    1 point
  25. Whats more unbelievable is the fact that you now have 24 hours to refund the victim 90m OSRS or you'll be banned.
    1 point
  26. Done gl on trials :D Agility pyramid is the next step :D
    1 point
  27. There definitely is client detection, the bot sends plenty of data they can use since long ago to compare against the "official" clients. If there wasn't, new accounts wouldn't get locked on only bot clients. Also its not unique to injection clients.
    1 point
  28. Was trying to log in using osbot, had 8 accounts locked almost instantly. Logged in the next with runelite. No lock. Ran to ge fine. relogged using osbot and it gets locked almost instantly.
    1 point
  29. osbot doesn't steal your password lol
    1 point
  30. From the posts, it seems losing you will degrade the level of programming here, that's sad.
    0 points
Γ—
Γ—
  • Create New...