Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/08/16 in Posts

  1. 10 points
  2. SAPI Hello world. Here's a sneak peak of a little library I'm working on, its goal is to simplify high-level interaction between bot/script and game, useful when you need a superficial game variable but don't have the time or knowledge to fetch it via code or a clunky GUI. Currently, the following types are selectable (with more to come): Entities Widgets Positions Bank slots Inventory slots Prayer buttons Magic spells Currently, the following brushes are available (with more to come): Point Shapes: Arc2D, Ellipse2D, Rectangle2D, RoundRectangle2D The library will be free & available for everyone. No ETA but shouldn't be too long. Code example @ScriptManifest(author = "Botre", info = "", logo = "", name = "Example Script", version = 0) public class Example extends Script { private Sapi sapi; @Override public void onStart() throws InterruptedException { super.onStart(); // Initialize API. sapi = new Sapi(this); // Add a filter to the inventory module: only empty slots are made selectable. sapi.getInventorySlotModule().getFilters().add(slot -> slot.isEmpty()); // Change the painter. sapi.getInventorySlotModule().setPainter(new DefaultItemContainerSlotPainter(this) { @Override public void paint(Graphics2D g2d, ItemContainerSlot object) { g2d.setColor(Color.BLUE); g2d.drawString(object.getItem().getName(), 0, 0); super.paint(g2d, object); } }); // Activate the module / enable selection. sapi.getInventorySlotModule().setActive(true); // Start the API. sapi.start(); } @Override public void onExit() throws InterruptedException { super.onExit(); // Stop API. sapi.stop(); } @Override public int onLoop() throws InterruptedException { // Iterate over selected items. for (ItemContainerSlot slot : sapi.getInventorySlotModule().getSelected()) { log(slot.getItem().getName()); } return 500; } @Override public void onPaint(Graphics2D g2d) { super.onPaint(g2d); sapi.getInventorySlotModule().paintBrush(g2d); sapi.getInventorySlotModule().paintSelected(g2d); } } Screenshots
    4 points
  3. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
    2 points
  4. PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.
    2 points
  5. Molly's Orber This script is designed to make earth orbs and air orbs for over 350k gp/ph with the added benefit of getting over 30k mage exp per hour! Buy HERE Requirements: - 66 mage for air orbs, 60 for earth orbs. - 40+ hp recommended(especially at low def) Features: - Supports using mounted glory in house(requires house teleport tablets) - Supports eating any food at bank, when under a set hp - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge) - Emergency teleporting when under a set hp - Stamina potion usage, the bot will use one dose prior to each run - World hopping in response to being pked to prevent pkers from farming. -Ability to bring one food with you in case you drop below the emergency teleport hp, script will still tele if you drop below it and have already eaten your food. -Enabling run when near black demons to prevent some damage. -Re-equipping armor in inventory on death. Setup: Start at Edge bank, have all supplies next to each other in your bank, preferably in the front tab at the top. You must have the item "Staff of air" for air orbs or "Staff of earth" for earth orbs. Have a fair amount of cosmic runes and unpowered orbs, glories, as well as some food to eat as the bot walks past black demons and will take some damage. FOR EARTH ORBS YOU MUST HAVE ANTIDOTE++. If you are using house mounted glory option set render doors open to "On" under your house options in Runescape. CLI setup: Proggies:
    2 points
  6. Varies Anti-ban ~Still in development~ Here's a little antiban scripting code I wrote awhile back before I started focusing on school a little bit more rather than scripting. Basically what this will do is check everything, tabs, stats, ANYTHING, and it's still in development. Right now it's still a work in progress, about 70% done but I'll be adding a ton more into it such as - Joining random clan chats - Setting the appropriate music based on if it's unlocked or not, I'll be using rectangles to get either a total green or red color values. - Dancing, this will be hilarious when not in combat or animating. - AND MORE Anyways all you have to do is copy and paste the following methods into your program, rename random events to antiban and you are all set! *NOTE: YOU MAY IMPLEMENT BUT THIS DOESN'T GUARANTEE YOUR ACCOUNT NOT BE BANNED, BOT WISELY!" IT ALSO LIMITS PERFORMANCE IN SOME AREAS, THAT'S WHY I LINK IT TO WHEN IN COMBAT OR ANIMATING!* public void randomEvents() { try { Random generator = new Random(); int click = generator.nextInt(10); if ((click > 7) && (myPlayer().isMoving())) { note = "Antiban, Mouse Right-Click"; this.mouse.click(true); } int rand = generator.nextInt(800000); if ((rand > 49) && (rand < 100)) { note = "Antiban, Camera Movement"; this.camera.movePitch(random(0, 360)); this.camera.moveYaw(random(0, 360)); } if ((rand > 100) && (rand < 400)) { note = "Antiban, Camera Movement"; this.camera.movePitch(random(0, 360)); } if ((rand > 2400) && (rand < 3000)) { note = "Antiban, Camera Movement"; this.camera.moveYaw(random(0, 360)); } if ((rand > 5000) && (rand < 5500)) { note = "Antiban, Random Mouse Movement"; this.mouse.moveRandomly(); } if ((rand > 6000) && (rand < 6200)) { note = "Antiban, Opening Tab"; this.tabs.open(Tab.ATTACK); sleepTime(500, 2000, 200); this.tabs.open(Tab.INVENTORY); } if ((rand > 6500) && (rand < 7000)) { note = "Antiban, Opening Tab + Checking Stats"; this.tabs.open(Tab.SKILLS); sleepTime(500, 1000, 200); int stat = generator.nextInt(24); if (stat == 0) { this.mouse.move(random(568, 588), random(214, 234)); } if (stat == 1) { this.mouse.move(random(568, 588), random(244, 264)); } if (stat == 2) { this.mouse.move(random(568, 588), random(274, 294)); } if (stat == 3) { this.mouse.move(random(568, 588), random(304, 324)); } if (stat == 4) { this.mouse.move(random(568, 588), random(334, 354)); } if (stat == 5) { this.mouse.move(random(568, 588), random(364, 384)); } if (stat == 6) { this.mouse.move(random(568, 588), random(394, 414)); } if (stat == 7) { this.mouse.move(random(568, 588), random(424, 444)); } if (stat == 8) { this.mouse.move(random(638, 658), random(214, 234)); } if (stat == 9) { this.mouse.move(random(638, 658), random(244, 264)); } if (stat == 10) { this.mouse.move(random(638, 658), random(274, 294)); } if (stat == 11) { this.mouse.move(random(638, 658), random(304, 324)); } if (stat == 12) { this.mouse.move(random(638, 658), random(334, 354)); } if (stat == 13) { this.mouse.move(random(638, 658), random(364, 384)); } if (stat == 14) { this.mouse.move(random(638, 658), random(394, 414)); } if (stat == 15) { this.mouse.move(random(638, 658), random(424, 444)); } if (stat == 16) { this.mouse.move(random(708, 728), random(214, 234)); } if (stat == 17) { this.mouse.move(random(708, 728), random(244, 264)); } if (stat == 18) { this.mouse.move(random(708, 728), random(274, 294)); } if (stat == 19) { this.mouse.move(random(708, 728), random(304, 324)); } if (stat == 20) { this.mouse.move(random(708, 728), random(334, 354)); } if (stat == 21) { this.mouse.move(random(708, 728), random(364, 384)); } if (stat == 22) { this.mouse.move(random(708, 728), random(394, 414)); } sleepTime(1000, 2000, 200); this.tabs.open(Tab.INVENTORY); } if ((rand > 7000) && (rand < 7200)) { note = "Antiban, Opening Tab"; this.tabs.open(Tab.SETTINGS); sleepTime(500, 2000, 200); this.tabs.open(Tab.INVENTORY); } if ((rand > 10200) && (rand < 10700)) { note = "Antiban, Opening Tab + Playing New Song"; this.tabs.open(Tab.MUSIC); sleepTime(500, 1000, 200); stealthMusic(); this.tabs.open(Tab.INVENTORY); } if ((rand > 15000) && (rand < 15200)) { note = "Antiban, Moving Camera"; this.camera.movePitch(random(0, 360)); } if ((rand > 16000) && (rand < 16200)) { note = "Antiban, Moving Camera"; this.camera.moveYaw(random(0, 360)); } if((rand > 20000) && (rand < 27000)) { List<RS2Object> o = objects.getAll(); int guess = new Random().nextInt(o.size()); camera.toEntity(o.get(guess)); } if((rand > 27000) && (rand < 27500)) { List<RS2Object> o = objects.getAll(); int guess = new Random().nextInt(o.size()); o.get(guess).examine(); } if((rand > 28000) && (rand < 30000)) { List<NPC> o = npcs.getAll(); int guess = new Random().nextInt(o.size()); camera.toEntity(o.get(guess)); } if((rand > 30000) && (rand < 40000)) { List<Player> o = players.getAll(); int guess = new Random().nextInt(o.size()); camera.toEntity(o.get(guess)); sleepTime(500, 1000, 200); o.get(guess).hover(); } } catch (Exception e) { e.printStackTrace(); } } private void stealthDance() { int startx = 565; int starty = 215; int row = new Random().nextInt(5); int col = new Random().nextInt(4); int rowMultiplier = 50; int colMultiplier = 45; mouse.move(startx + (col + 1) * colMultiplier, starty + (row + 1) * rowMultiplier); } private void stealthMusic() { try { // randomly picks music for the game Random gen = new Random(); int guess = gen.nextInt(2); if(guess == 0) { mouse.scrollDown(); sleep(random(600, 1200)); mouse.move(random(560,600), random(286,440)); sleep(random(500, 900)); mouse.click(false); } else { // up mouse.scrollUp(); sleep(random(600, 1200)); mouse.move(random(560,600), random(286,440)); sleep(random(500, 900)); mouse.click(false); } } catch (Exception e) { } } // a new version for sleep(random(x,x)); More... random private void sleepTime(int low, int high, int buffer) throws InterruptedException { boolean add = new Random().nextBoolean(); if(add) sleep(new Random().nextInt(high - low) + low + new Random().nextInt(buffer)); else sleep(new Random().nextInt(high - low) + low - new Random().nextInt(buffer)); } Alright here is a new piece for all you scripters out there that need your script lowkey. This will adjust the area for you based on the bounds you give it and the amount of buffer room stored inside, so be careful but in the long run, it should make your script look a tad more like a human due to it's constant offsets. Apply this code to a method that is updated like everytime it would bank, not when it's constantly checking it it's walking or something tedious like that. public Area adjustArea(int lowx, int lowy, int highx, int highy, int buffer) { int finalLowX = 0; int finalLowY = 0; int finalHighX = 0; int finalHighY = 0; boolean add; add = new Random().nextBoolean(); if(add) { finalLowX = lowx + new Random().nextInt(buffer) + 1; } else finalLowX = lowx - new Random().nextInt(buffer) + 1; add = new Random().nextBoolean(); if(add) { finalLowY = lowy + new Random().nextInt(buffer) + 1; } else finalLowY = lowy - new Random().nextInt(buffer) + 1; add = new Random().nextBoolean(); if(add) { finalHighX = highx + new Random().nextInt(buffer) + 1; } else finalHighX = highx - new Random().nextInt(buffer) + 1; add = new Random().nextBoolean(); if(add) { finalHighY = highy + new Random().nextInt(buffer) + 1; } else finalHighY = highy - new Random().nextInt(buffer) + 1; if(finalHighX < finalLowX) { int tmp = finalHighX; int tmp2 = finalLowX; finalHighX = tmp2; finalLowX = tmp; } if(finalHighY < finalLowY) { int tmp = finalHighY; int tmp2 = finalLowY; finalHighY = tmp2; finalLowY = tmp; } return new Area(finalLowX, finalLowY, finalHighX, finalHighY); }
    2 points
  7. Congratulations broncos!!!
    2 points
  8. Looks good, however I would work on that name :P
    2 points
  9. I wont leak his methods, dont bother asking
    2 points
  10. maldesto plz tell us we need to know!
    2 points
  11. ^title post below with PICTURES and PRICE
    2 points
  12. I had no idea super bowl was 2day
    2 points
  13. Play around with these: int i = 0; String a = Integer.toString(i); String b = "" + i; String c = String.valueOf(i); String d = new Integer(i).toString();
    2 points
  14. DAY 80/120 Main Goals Create 12 maxed accounts to farm corpreal beast farm corp beast with 12 maxed accounts (will use a mate, 6 accounts each) All Sigi's Drops (Acrane, Spectral & Elysian) Make 10,000$ from corp beast only Mini Goals Create 12 accounts & finish island Get 60 60 60 melle stats Get 90 90 90 melle stats Get 43 prayer Get 90 mage Get all NMZ quest stats (listed below) Complete all NMZ quests (listed below) Kill a corporeal beast Progress Rewards Total progress table Timescale FAQ Supporters If you like this thread click the like button below
    1 point
  15. Click here to go to the SDN page to add the script. Display: Games supported and their general rules: Note: This script is a realised script request with help from a RS veteran gambler, pauliokas123, Please refresh your script list before running this script!
    1 point
  16. Alright, so after reading the "My Ban Theory" thread, I decided to take the idea of a normal distribution to keyboard typing. What I have made is experimental and may not work as expected to. All I aim to do with this is help to educate those with typing correctly. How it works: Calculating based on words per minute, it sleeps a variable amount based on the value (assuming the average word has 6 characters) With the help of normal distributions, the mean is the mode and the median (which is also usually the midpoint), so we can calculate a normal distribution of sleeping using the mean. It types character per character It wraps the Script sleep function to pause the appropriate time frame (Version 1.1 and onwards) now makes typing errors based on the words per minute setting! Version 1.1 (newest; typos included): Version 1.0 (old; no typos included): Usage example: SmartKeyboard sk = new SmartKeyboard(this, 60); //60 words per minute if (sk.typeString("The quick brown fox jumped over the lazy dog", true, true)) { //Third parameter to true -> enables typos log("Typed the string and pressed enter!"); } if (sk.typeCharacter("g")) { log("Typed the character 'g'"); } if (sk.typeInteger(4)) { log("Typed the number 4!"); } sk.typoConstant = 10000; //Default 100000; lower = more likely to cause a typo; equation ((typoConstant / (words per minute * 10))+ rand.nextInt(6)) If there are any problems with this, let me know. Jagex may be smart, but we're smarter. Proof of typos: (set at 125wpm; original text "The quick brown fox jumped over the lazy dog the quick brown") Feel free to use the SmartKeyboard class however you want, but credit is always nice
    1 point
  17. 1 point
  18. Trial has been great, gonna buy if i dont get banned soon
    1 point
  19. I've never been banned while developing a script. My advice is just not to run an unfinished script for extended periods! apa
    1 point
  20. Can i have trial pls
    1 point
  21. blue dream. holographic universe. Quantumleaper. Chaosweaver Celestial Dream. I'll think of some more,
    1 point
  22. Hey, can I get a trial, please?
    1 point
  23. member number 210308- trial for this please
    1 point
  24. Amazing script! I just purchased this and have a 7 hour proggy and counting! Runs flawlessly on my mauler.
    1 point
  25. buenas noches esΓ© money over bitchess eh hombre
    1 point
  26. But why name an inanimate object?
    1 point
  27. 1 point
  28. Use your feet to spread your cheeks apart.
    1 point
  29. Me too I feel like a total dunce now.
    1 point
  30. wow, you are rich now!
    1 point
  31. 1 point
  32. This is bad ass man, My only account right now is a 1 def w/ 15 prayer so I won't be using it anytime soon unfortunately, but for someone like me who takes 5 tries at Jad this will help tremendously!
    1 point
  33. Yeah I goofed up sorry That's because it was originally reversed. I just fixed it. You bought the Tanner in the store, so the tanner you shall receive.
    1 point
  34. private void drawProfitH(Graphics2D g, int profit, float hours) { g.setColor(Color.PINK); g.drawString("Profit/h: " + (profit / hours), 10, 100); } np m8. I customized it to fit your preferences as well.
    1 point
  35. legend says he still has his virginity today...
    1 point
  36. You're using a free script which thousands of botters have access to. Jagex has already recorded all patterns for this script and the second anyone tries to use it and it does the same patterns = instant ban You're not using mirror client You're botting f2p, jagex watches f2p closely as well as newly created accounts You're botting them all on the same ip, no one plays 6 accounts on the same ip doing the same thing You're being cheap and trying to make money without investing any into premium/private scripts, proxies, mirror client. You'll end up using more electricity to keep your PC on than make money without investing any. Do not be cheap and invest, you end up making back loads after experimenting. Good luck
    1 point
Γ—
Γ—
  • Create New...