Jump to content

Eliot

$100.00 Donor
  • Posts

    4523
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    100%

Everything posted by Eliot

  1. More anti-ban memes please.
  2. Notice "How to not get banned" basically makes botting worthless. The key to botting is to accept that you will get banned and maximize profit before it happens.
  3. mm2 slayer requirement is 69, that account has 70 (??)
  4. I use the one mentioned in OP. Works for me.
  5. Konduit is the client I use.
  6. I've accepted my first private script, I'll bump the thread when I'm ready for my next customer. Stay in touch!
  7. Sounds like a new @Czar feature.
  8. True, but please don't ask for help with debugging a 10,000 line file. Thank you.
  9. Just ignore that warning and press OK. Your jar will function fine.
  10. NOT ACCEPTING CLIENTS I'm once again offering private scripting services. I will only be taking one customer at a time. Why Choose Eliot? Scripting on OSBot for over 4 years, I have held the highest scripter rank for more than three years. Sold scripts to over 1,000 customers who have used them for well over 100 years of in game time. I will never sell the same private script twice or make a script for the same thing more than once. I only take one customer at a time, this allows us to work together to create the highest quality script tailored to your needs. Why Choose Someone Else? Price: my scripts are not cheap as I don't use open source code, reuse entire code modules, make the same private script twice, or do other things that make your script less "private". Time: I take my time to work with you and create exactly what you need. If you want a Zulrah script by tomorrow, look elsewhere. If I'm not interested in making your script, I'll gladly refer you to someone who is. How Does it Work? Send me a PM of what you want the script to do. I will reply letting you know if I'm interested, ask for more details, or provide a quote. I'll add you on Skype and we can go from there. You must provide an account for testing that has the requirements needed for your script. Payment I only accept 07gp as payment. Payment will usually be made in two installments, 50% when I start the script and 50% when I finish it. You must pay in full before receiving the script. Bug fixes are free for three months after you receive the script, any changes beyond bugfixes are not free. If for some reason I cannot complete the script to the original specifications I will provide a full refund.
  11. I was once scolded by a police officer for jay walking in America. I am oppressed.
  12. Eliot

    @frostbug

    please make an inferno script 1 like = 1 support
  13. Thanks for this guide THOT, I'm following it now. I wrote a custom auto-clicker to pray flick rapid heal with proper random intervals, I may release it later if anyone would find it useful.
  14. Hi, nice looking emporium you got here.
  15. I assume 1hp DH is the best method, but I don't have a comparison w/ new obsidian armor.
  16. Open AFK Splasher by Eliot What: It splashes autocast spells Moves mouse to prevent your character from not retaliating Logs back in and attacks NPC after being logged out by 6 hour timer How: Have at least -65 magic bonus & have an autocast spell selected Attack the NPC you wish to splash on (suggestion: spiders, chickens) Start script Why: Splashing requires very few interactions with the client, drastically decreasing the chance of being banned. Source: 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 AFK Splasher", author = "Eliot", version = 1.0, info = "", logo = "") public class Splasher extends Script { private long startTime; private String npcName = null; private String state = "Initializing"; private Font font = new Font("Arial", Font.BOLD, 14); /** * Formats time ran into a human readable String * @param time the time in ms to be converted * @return (Human readable) how long the script has been running */ public final 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); } @Override public void onStart() { startTime = System.currentTimeMillis(); getExperienceTracker().start(Skill.MAGIC); } @Override public int onLoop() throws InterruptedException { if (npcName == null && myPlayer().getInteracting() != null) { npcName = myPlayer().getInteracting().getName(); } else if (npcName != null && myPlayer().getInteracting() == null) { state = "Attacking " + npcName; NPC attack = getNpcs().closest(npc -> npc.getName().equals(npcName) && npc.getInteracting() == null); if (attack != null && attack.interact("Attack")) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().isUnderAttack(); } }.sleep(); } } else if (npcName != null) { state = "Preventing AFK timer"; if (mouse.click(random(556, 730), random(220, 450), false)) { int randomTime = random(180000, 1080000); state = "Sleeping (for " + formatTime(randomTime) + ")"; new ConditionalSleep(randomTime) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() == null; } }.sleep(); } } else { state = "YOU MUST ATTACK SOMETHING MANUALLY"; } return 100; } @Override public void onPaint(Graphics2D g) { Point mP = getMouse().getPosition(); long runTime = System.currentTimeMillis() - startTime; g.setColor(Color.white); g.setFont(font); g.drawLine(mP.x, 501, mP.x, 0); g.drawLine(0, mP.y, 764, mP.y); g.drawString("State: " + state, 10, 210); g.drawString("Target: " + (npcName == null ? "????" : npcName), 10, 230); g.drawString("XP Gained: "+ getExperienceTracker().getGainedXP(Skill.MAGIC), 10, 250); g.drawString("XP / HR: "+ getExperienceTracker().getGainedXPPerHour(Skill.MAGIC), 10, 270); g.drawString("Time to LVL: "+ formatTime(getExperienceTracker().getTimeToLevel(Skill.MAGIC)), 10, 290); g.drawString("Time Ran: "+ formatTime(runTime), 10, 310); } } I suggest compiling on your own, but if you'd rather download a jar click here. Credits: Some aspects of this script were taken from @Mumble's script: https://osbot.org/forum/topic/116394-mumbles-ez-afk-splasher/ Find a bug? Report it in this thread.
  17. I use tasks for big scripts and one file wonder the rest.
  18. Luckily it looks like you can stay logged in until 6 hour timer kicks you.
  19. Saw something about removing pause, please don't. It's used a lot.
  20. Currently able to take on a few small private scripts, PM what you need.

  21. Please post prices in the thread, not interested in PMing or adding on Skype to get them.
×
×
  • Create New...