Jump to content

Eliot

$100.00 Donor
  • Posts

    4523
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    100%

Everything posted by Eliot

  1. In this video, I write the beginnings of an "AIO" Fighter script which can be extended in future videos. Feel free to use the source code for any purpose. Source code: import org.osbot.rs07.api.model.Item; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.util.Arrays; @ScriptManifest(name = "10MinFighter", version = 1.0, info = "", author = "", logo = "") public class Driver extends Script { String npcName; @Override public int onLoop() throws InterruptedException { // 1. decide which type of npcs to attack if (npcName == null) { if (myPlayer().getInteracting() != null) { npcName = myPlayer().getInteracting().getName(); } else { return 500; } } // 2. attack them if (!myPlayer().isAnimating() && myPlayer().getInteracting() == null) { NPC next = getNpcs().closest(npc -> npc.getName().equals(npcName) && npc.isAttackable() && !npc.isUnderAttack() && npc.getInteracting() == null); if (next != null) { next.interact("Attack"); new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null; } }.sleep(); } } // 3. eat food so we don't die if (myPlayer().getHealthPercent() < 50) { Item food = getInventory().getItem(item -> Arrays.asList(item.getActions()).contains("Eat")); if (food != null) { food.interact("Eat"); sleep(2500); } } // 4. (optional) loot and bank return 500; } } Previous tutorial:
  2. New dev and new new users; a truly remarkable era we are entering.
  3. You've been selling the same account(s) since April? Also there are over 2 million four letter names, I'm surprised that's impressive.
  4. Welcome! I remember ExcoBot, right on! Excited to have you here to support the community.
  5. Imagine not knowing who it is. LOL!
  6. Hey Tom, I'm glad to hear that! As of now users would need to make accounts and then I'd verify the identity to link w/ OSBot. General update: this is still a work in progress, I'm not going to promise any dates though (as that didn't work last time!).
  7. I'm not going first to anyone.
  8. Add me on Skype: eliot.script You go first.
  9. Yes. To update you all, with the current staff changes, I'm continuing to work towards getting this approved for SDN use. Follow the thread for more updates.
  10. I'm waiting for the iOS release to try it out, doubt I will ever play on my phone after trying it for 5 minutes though. I do want to try emulating Android and auto-clicking to compare ban rates.
  11. Beautifully put Maxi, big thanks to Alek and I sense a promising future still lies ahead for OSBot.
  12. A sad day for OSBot, but I'm very happy for you! Lets hope that the remaining dev staff makes an effort to be as communicative and active as you were.
  13. Yes, client side will be open source. I'm currently working on some changes to how images are processed (to remove RSN). In talks with a few SDN script developers about integration if approved. Stay tuned!
  14. Thanks Czar, if this gets SDN approved I hope you'll consider integrating! Here's the exciting update: OSBot has agreed to review the code, this is the first step towards getting approval for integration with SDN scripts! Although it is not a guarantee, I'm excited to be moving forward. In light of this news, if any SDN script developers are interested in using Hive (if approved) please send me a PM and we'll get things kicked off! More updates to follow this week.
  15. Thanks, big update coming tonight! Still seeking BETA script integration partners!
  16. Eliot

    Naked AntiBan

    I totally cannot tell if this is satire. Haha.
  17. That's where the idea came from, and I pivoted to making this!
  18. Eliot

    My legit RS gameplay

    Nice! I've done something similar, I find I really enjoy the game at low levels. However, I don't have time for the grind that mid/late game demands.
  19. Disclaimer: Hive has not been approved nor endorsed by OSBot staff. Hive has not been approved for use in SDN scripts. Initially, Hive will only be available for integration with local and private scripts. Beta Release Date October 7, 2018 Overview I’m incredibly excited to announce Hive, OSBot’s first universal bot monitor. Hive lets you monitor and manage all of your bots across all of your favorite scripts from your desktop or your phone. Hive is compatible with every script and integration with Hive takes under five minutes. How It Works Create a Hive account (site goes live October 7, 2018). Open OSBot and start any Hive-enabled script, you will be prompted for your Hive username and password. Once the script has started visit your Hive dashboard using a web browser and monitor your bot. You can view status information about all of your bots across all of your favorite scripts. You can also pause or stop your bots by using the dashboard. Demo (note: this demo shows a prototype version of Hive, the beta product and information displayed on the dashboard will be different) Script Integration Are you a script developer and interested in being a Hive beta partner? Send me a private message. FAQ Q: What scripts are compatible with Hive? A: Hive is script-agnostic, if your favorite script is not Hive-enabled, ask the script developer to integrate (note: Hive cannot integrate with SDN scripts at this time). Q: What information does Hive show me? A: For every script, hive displays a recent screenshot of your bot (with username removed and you must opt-in) and shows runtime. Script developers can specify which skills to track and any other custom values (e.g. GP earned) that they want Hive to display. Q: What actions does Hive enable? A: Hive lets you pause, resume, and stop your bots no matter where you are. Q: How much does it cost? A: Hive is free to use during the beta period. Q: Is my data secure? A: Data is stored by Hive for no more than 120 seconds, no sensitive data is transmitted to nor stored by Hive. Q: What happens if Hive isn’t working, can I still use my scripts? A: Yes, if Hive fails to activate then your script will continue to operate as expected.
  20. Most bans are likely automated, but on high value or old accounts I wouldn't be surprised if they are manually reviewed.
  21. I got banned in similar time 5 years ago, doesn't seem much has changed, botting on new accounts/previously inactive accounts is almost always going to be a quick ban.
  22. No, minnows have a "flying fish [that] gobbles up the player's minnow". http://oldschoolrunescape.wikia.com/wiki/Minnow
×
×
  • Create New...