Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/15/19 in all areas

  1. Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
    2 points
  2. https://osbot.org/forum/topic/106622-inventory-item-drag/
    2 points
  3. 2 points
  4. Remember the position of where you placed the box and only look at those positions in regards to your box interactions.
    2 points
  5. 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
    1 point
  6. ** $14.99 - 24 hour trials available - like and comment on this thread Don't pm me on OSBot or Discord to ask for a trial. Loot anything, anywhere, with this highly customizable script! PvP worlds, waiting on loot piles, drop parties across Gielinor, even popping balloons in the party room! Buy The Script Here Check out these videos on using Fury AIO Looter to make money! [OSRS] Botting To Ban #7: Looting ! Crazy Profit [OSRS] Botting To Ban #8: F2P Looting FAQs: What does x setting on GUI mean? Look in the GUI spoiler below for a detailed explanation of what each option does. What settings should I use? WHATS THE BEST??? Whatever works for you, try new things until you find something thats good. I made it as customizable as possible for a reason There is no "best" settings before you ask me. lol. If I told everyone the ""best"" settings then everyone would do that and it would no longer be the best. Experiment and see what works for you Where should I run the looter? Anywhere there is loot on the ground. Experiment. See whats making money. Known locations would be GE drop parties in highly populated worlds. PVP worlds in active areas (ge, lumbridge, varrock, etc). ZMI. Wintertodt. Skillers that drop their inventory like barbarian village fishers, rimmington mine iron ore droppers etc. It will even work in the party room to pop balloons GUI: CLI: Discord Server: POGRESS REPORTS:
    1 point
  7. import org.osbot.rs07.utility.ConditionalSleep; import java.util.function.BooleanSupplier; public final class Sleep extends ConditionalSleep { private final BooleanSupplier condition; public Sleep(final BooleanSupplier condition, final int timeout) { super(timeout); this.condition = condition; } public Sleep(final BooleanSupplier condition, final int timeout, final int interval) { super(timeout, interval); this.condition = condition; } @Override public final boolean condition() throws InterruptedException { return condition.getAsBoolean(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout) { return new Sleep(condition, timeout).sleep(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout, final int interval) { return new Sleep(condition, timeout, interval).sleep(); } } Usage: Sleep sleep = new Sleep(() -> myPlayer().isAnimating(), 5000); sleep.sleep(); Or: Sleep.sleepUntil(() -> myPlayer().isAnimating(), 5000);
    1 point
  8. Hello OSBot, Since apparently a lifetime rank does not stay lifetime anymore (Scripter 3), I am giving you the source to my old scripts for free. I have moved on to Apex Legends cheat making anyway, and I figure some of you can learn from the sawce. I have not touched these in a couple years, so things may be deprecated or broken and you might have to fix it (mostly widget stuff I would imagine). Source is not the best on some files, but it should be a start for most of you. Let me know if you have any questions. See you guys on the other side -Novak Oh PS some scripts were never finished or unfinished. Not sure which ones, cant remember. Like they wont have a UI or it is only partially done.
    1 point
  9. Hey everyone, heres my first script. There was no combat script I could find which fought cows and banked their hides so I made one. Lemme know your thoughts I'd like to get this on the SDN https://github.com/cbartram/AeroCows
    1 point
  10. Hi guys. I just got into script making yesterday. I finished my first script today at the request of someone. Its a cadava berry picker that banks. I would appreciate any feedback and constructive criticism. Thank you! import org.osbot.rs07.api.Settings; import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; import java.util.concurrent.TimeUnit; @ScriptManifest(name = "Bubba's Berries", author = "bubbajim", version = 1.0, info = "", logo = "") public class BubbasBerries extends Script { private long startTime; private int berriesCounter; private int startWorld = 460; private int endWorld = 451; private int currentWorld = startWorld; private long currentInventoryCapacity = -5; Position pathInBetween = new Position(3290, 3397, 0); Position pathFromBank = new Position(3273, 3370, 0); Position pathToBank = new Position(3252, 3420, 0); Area bankArea = new Area(new Position(3257, 3423, 0), new Position(3250, 3420, 0)); @Override public void onStart() { startTime = System.currentTimeMillis(); } @Override public void onExit() { } @Override public int onLoop() throws InterruptedException { if (getInventory().getAmount(753) == currentInventoryCapacity + 1) { berriesCounter += 1; } currentInventoryCapacity = getInventory().getAmount(753); Settings settings = getSettings(); int runEnergy = settings.getRunEnergy(); if (runEnergy > 50 && !settings.isRunning()) { settings.setRunning(true); } if (getInventory().isFull()) { getWalking().webWalk(pathInBetween); getWalking().webWalk(pathToBank); getBank().open(); sleep(random(1500,2500)); getBank().depositAll(); new ConditionalSleep(10000) { @Override public boolean condition() { return getInventory().isEmpty(); } }.sleep(); } Entity cadavaBush = getObjects().closest(23625, 23626); if (bankArea.contains(myPosition())) { getWalking().webWalk(pathInBetween); getWalking().webWalk(pathFromBank); } else if (cadavaBush != null && cadavaBush.interact("Pick-from")) { int cadavaBushX = cadavaBush.getX(); int cadavaBushY = cadavaBush.getY(); Position cadavaBushPosition = new Position(cadavaBushX, cadavaBushY, 0); if (cadavaBush.getId() == 23625) { new ConditionalSleep(10000) { @Override public boolean condition() { return getObjects().closest(o -> o.getPosition().equals(cadavaBushPosition)).getId() == 23626; } }.sleep(); } else if (cadavaBush.getId() == 23626) { new ConditionalSleep(10000) { @Override public boolean condition() { return getObjects().closest(o -> o.getPosition().equals(cadavaBushPosition)).getId() == 23627; } }.sleep(); } } else { if (endWorld == currentWorld) { currentWorld = startWorld; } currentWorld -= 1; getTabs().open(Tab.LOGOUT); getWorlds().hop(currentWorld); sleep(random(2000,3000)); getTabs().open(Tab.INVENTORY); new ConditionalSleep(10000) { @Override public boolean condition() { return getWorlds().getCurrentWorld() == currentWorld; } }.sleep(); } return random(300, 600); } @Override public void onPaint(Graphics2D g) { final long runTime = (System.currentTimeMillis() - startTime); String hms = String.format("%02d:%02d:%02d", TimeUnit.MILLISECONDS.toHours(runTime), TimeUnit.MILLISECONDS.toMinutes(runTime) % TimeUnit.HOURS.toMinutes(1), TimeUnit.MILLISECONDS.toSeconds(runTime) % TimeUnit.MINUTES.toSeconds(1)); Font font = new Font("Open Sans", Font.PLAIN, 12); g.setFont(font); g.setColor(Color.green); g.drawString("Time elapsed: " + hms, 15, 300); g.drawString("Berries picked: " + berriesCounter, 15, 315); } }
    1 point
  11. been doing 10hr alching a day at Ge World 2. (i also do 1 easy quest a day just to do something else for jagex activity log) aprox 2 weeks in and almost 97 mage. this weekend will be 99? since its not Goldfarming and its pure combat training and mostly losing money instead of profit. you wont get banned. i dont know if im allowed to suggest but , APA his auto alcher is Game.
    1 point
  12. This is something that is completely dependant on yourself. If you're not bothered about the account do as much as you want. If you are do a little every day. I personally just bot for however many hours i want and then play an hour or less legit every day. Regardless it'll catch up to you eventually. NMZ is instanced so in theory you shouldn't get a ban due to people not being able to report you. This is just a theory tho
    1 point
  13. I auto clicked for 24 hours 5 days straight in F2P. Averaging 1100-1200 Alches an hour. Hitting the 6 hour log out and logging right back in No ban
    1 point
  14. You obviously don’t know how to bot correctly then. I’ve been using this for the past month and I’m currently 95 from level 40 doing 16 hour days. Best mining script I’ve ever used.If you weren’t willing to loose the account, don’t bot.
    1 point
  15. So far great script, heads up elf camp teleport is now "Iorwerth camp teleport" can you change this real quick? Feature request: Point boost mode. What is it: a simple option to stop after completing a task that ends before starting a multiple of 10, 50, 100, 250, 1000, depending on what option the user chooses. Why: gains massive points quickly, by allowing the use of konor or other higher slayer master for the bonus points.
    1 point
  16. Hi! Great script. Used it to do a lot of quests. Do you have an eta for the mm? I am quite curious
    1 point
  17. I've done 3 hours of NMZ and gotten banned, but I have also done 12 hour sessions and that account is still alive.. Both on a dedicated server ip that has over 50 account bans on it. Alching I have only done in 1 hour sessions, 60-90 min break and never gotten banned from it. With scripts on stealth injection.
    1 point
  18. Alching I would stick to three hours or so then break then repeat maybe three times a day, I tend to not push over ten hours a day too often.
    1 point
  19. Updated the script to loot anywhere in game. Will bank if attacked. Edit: Fixed GUI saving not working.
    1 point
  20. I added a bunch of comments that will hopefully help you on your way - Hybris
    1 point
  21. 1 point
  22. I was playing around with the camera zoom and location. And managed to get it done with the butler. Did around 305k/hour. Problem solved here. Thanks Eagle
    1 point
  23. I don't have time ATM to test and make something that would work, but I believe in you!
    1 point
  24. Can I have a free trial?
    1 point
  25. What API would you use? something like if (myPosition.equals.chinArea) I think this is what they mean but I still am trying to figure out how my position will get marked. and I dont think designated trap spots will work well
    1 point
  26. So the things I've been fixing lately: Found proxy vendor that gives one IP with two ports to be able to create accounts via Http and play them on SOCKS via the same IP. This way I hope to not need an account unlocker. Implemented proxy system for mules to safeguard funds. Profits atm is 267$/m for the 70 bots after costs. With the new proxy system I hope to reduce the banrate of the mules to get a nice 300+$/m. Plans for the future: Buy up to three more servers with the same profitability. Longterm: Automate sale of gold. Example: Make a deal with one of the major gold selling websites and setup a server where they can connect and enter in their world and playername when they receive an email from the farm manager that it has x amount of coins to sell. mule coin value >= 10m logs in and trades over its cash to the website representative. This can potential reduce loss due to bans because I can't be online 24/7 and sell all the gold. The downsides is that my operation might be too small to make it worthwhile for the gold selling website, and offering a discount will nullify the gain. The upside is that it takes out all the work from the operation so that I literally don't have to do anything at all to have it run. As this project is nearing completion code-wise I have shifted my focus to learn python and machine learning. This project has been a great introduction to programming and I feel like I have laid the groundwork for actually becoming a professional programmer. Next year I will start at a University to study computer science and hopefully gold prices haven't dropped to RS3 levels by then so I can count on my farm to pay for some of my expenses!
    1 point
  27. I did work it out! Thanks for all the help guys. I made my farm manager print out the commandline it used to launch and there was indeed an error there. After I fixed that everything worked perfectly!
    1 point
  28. I do 1-3 quests at a time and some skilling between, never received a ban this way. I've always advised people not to run many quests at once, the more you run the more you risk. But you can do all of them if you take some breaks between.
    1 point
  29. Did you mean? Position position; position = myPlayer().getPosition(); Because I don't see that anywhere in the API.
    1 point
  30. Tile tile; tile = getPlayer().getlocal().getTile(); 0.o
    1 point
  31. Probably with an Enum or ArrayList. Store the position when you place it then when you interact to pick it up you remove that position then add the position of where you put that box(es) you just picked up. Also do you not know how to store player positions? Is that what you meant?
    1 point
  32. Projectpact would be the man to ask since he has a hunter script on the SDN that does seem pretty good imo. Also I would imagine you would just store the player position when placeing a box down and only interact based off those stored positions like @dreameo said.
    1 point
  33. this is going to be my 2nd account with 99 using your script, thank you czar!!
    1 point
  34. 1 point
  35. very nice, could i get a trial?
    1 point
  36. I normal don't do more than a hour of questing with the script. So if I can do like 8 5 minute quests. Then I would do that then do some training and then run some more quests. I believe Token would run a couple quests then do some skilling or something. On fresh accounts that just got members you might be able to get away with more since thats normal for people to do a bunch of quest at the beginning of a account for easy levels.
    1 point
  37. Just wanted to let you know that I got banned earlier today, second ban so permed. I've only been running this script since the first ban, mirror mode and ran for 6 hours that day which isn't too unusual for this account but obvi on the higher end for botting. Wish I cleared the bank before I logged off but time to start up a new account
    1 point
  38. Another order completed for @FuryShark! Really enjoy working with him. This time I've designed him another Script Logo! Add JJoe#3843 on Discord for all enquiries!
    1 point
  39. Place where i tested the trial: Wood Cutting Guild. Botting session duration: 2 x 90 minutes About the script: Overall great script. well made. i love how you could choose from different options the tree location and tree what to cut. 10/10 will be buying this script soon! Good work @Czar
    1 point
  40. When i go to run the script for a tree run, it forces me to protect it with a basket of tomatoes. Can i disable this? I dont want to protect the oak tree, i just want to use ultracompost.
    1 point
  41. Can I have free trial?
    1 point
  42. Please may I have a trial? Thanks
    1 point
  43. overall idea is fine i suppose, needs renaming and implementing Runnable cuz whynot
    1 point
×
×
  • Create New...