Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/17/16 in Posts

  1. 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
    4 points
  2. Got to try this 1 sec Edit: Edit 2: Got rejected.
    4 points
  3. you won't ever get a match.
    4 points
  4. Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
    3 points
  5. FEATURES Easy to use Banks or drops items based on your decision Information Displays Understandable Graphical user interface Most popular Locations Pseudo antiban Locations Draynor / Willows Grand Exchange / Yews Lumbridge Lake / Willows Rimmington / Willows Lumbridge / Trees Lumbridge / Oaks Varrock / Oaks Edgeville / Yews Catherby / Yews Sourcerer's Tower / Magics Seer's Village / Maple A Special Thanks I would like to say thanks to some people in the shoutbox for making this possible, Also Apaec for his progress bar (saved me time) Feel Like Donating? Feel free to donate to my bitcoin wallet: 18jFzi6t95xPsnX81h9hVw3rqG8NMKfDn3 Downloads/Source Download: https://www.dropbox.com/s/13p0ixzrmhbyhnv/OptimumChopper.jar?dl=1 Source: has been removed to protect anti-ban future Feel free to drop me a like if you play on using this would help out my reputation Screenshot
    3 points
  6. 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
  7. 2 points
  8. In answer to those questions: 1) The way mirror mode currently works is by using the connection you've made through the legitimate client to do it's thing. This means that mirror mode will (for the foreseeable future) not receive proxy support, as it is not OSBot that establishes the connection to Runescape, and thus can't modify that connection in any way. However, there are some unofficial ways to run mirror mode via a proxy. There are a couple of tutorials to be found on the forums. 2) Yes it is, @MGI is still working on improving the client where possible.
    2 points
  9. I'll post this in the snippet section a little later, but here's something I just whipped up which should cover everything you need for progress bars Class: import java.awt.Color; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.geom.Rectangle2D; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; public class ProgressBar { /** * @author © Apaec * @since 17 Jun 2016 * @file ProgressBar.java */ Script s; Graphics g; String name; Skill skill; boolean frame; int x, y, width, height; Color red = new Color(255, 0, 0, 150); Color green = new Color(0, 255, 0, 150); Font font; int[] XP = { 0, 83, 174, 276, 388, 512, 650, 801, 969, 1154, 1358, 1584, 1833, 2107, 2411, 2746, 3115, 3523, 3973, 4470, 5018, 5624, 6291, 7028, 7842, 8740, 9730, 10824, 12031, 13363, 14833, 16456, 18247, 20224, 22406, 24815, 27473, 30408, 33648, 37224, 41171, 45529, 50339, 55649, 61512, 67983, 75127, 83014, 91721, 101333, 111945, 123660, 136594, 150872, 166636, 184040, 203254, 224466, 247886, 273742, 302288, 333804, 368599, 407015, 449428, 496254, 547953, 605032, 668051, 737627, 814445, 899257, 992895, 1096278, 1210421, 1336443, 1475581, 1629200, 1798808, 1986068, 2192818, 2421087, 2673114, 2951373, 3258594, 3597792, 3972294, 4385776, 4842295, 5346332, 5902831, 6517253, 7195629, 7944614, 8771558, 9684577, 10692629, 11805606, 13034431, 200000000 }; public ProgressBar(Script script, Graphics graphics, String name, Skill skill, boolean frame, int transparency, Font font, int x, int y, int width, int height) { this.s = script; this.g = graphics; this.name = name; this.skill = skill; this.frame = frame; this.x = x; this.y = y; this.width = width; this.height = height; this.red = new Color(255, 0, 0, transparency); this.green = new Color(0, 255, 0, transparency); this.font = font; } public int getCurrentExperience() { return s.getSkills().getExperience(skill) - XP[s.getSkills().getStatic(skill) - 1]; } public int getTargetExperience() { return XP[s.getSkills().getStatic(skill)] - XP[s.getSkills().getStatic(skill) - 1]; } public int getRemainingExperience() { return XP[s.getSkills().getStatic(skill) + 1] - s.getSkills().getExperience(skill); } public int getPercentage(int current, int total) { return current * 100 / total; } public int getWidth(int percentage, int totalWidth) { return percentage * totalWidth / 100; } public void draw() { // Current percentage g.setColor(green); g.fillRect(x, y, getWidth(getPercentage(getCurrentExperience(),getTargetExperience()), width), height); // Remaining percentage g.setColor(red); g.fillRect(x + getWidth(getPercentage(getCurrentExperience(), getTargetExperience()), width), y, width - getWidth(getPercentage(getCurrentExperience(), getTargetExperience()), width), height); // Frame if (frame) { g.setColor(Color.BLACK); g.drawRect(x, y, width, height); } // Setting text font and colour g.setColor(Color.WHITE); g.setFont(font); // The text which we want to show on the progress bar String text = name + " (" + s.getSkills().getStatic(skill) + "): " + getPercentage(getCurrentExperience(), getTargetExperience()) + "%"; // Create a bounding box around the text FontMetrics metrics = g.getFontMetrics(font); Rectangle2D rect = metrics.getStringBounds(text, g); int textHeight = (int) (rect.getHeight()); int textWidth = (int) (rect.getWidth()); // Get the text x and y co-ordinates relative to the progress bar int xText = (width - textWidth) / 2; int yText = (height - textHeight) / 2 + metrics.getAscent(); // Draw text over progress bar g.drawString(text, x + xText, y + yText); } } Implementation (in onPaint class): ProgressBar bar = new ProgressBar(this, g, "Ranged", Skill.RANGED, true, 150, new Font("Gulim", 0, 14), 10, 200, 200, 25); bar.draw(); Examples: Hope that helps, ~apa Edit: I didn't see skills has experienceToLevel, so you can always tidy the code in that respect.
    2 points
  10. look at your baseXp
    2 points
  11. 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:
    1 point
  12. Without our community OSBot wouldn't have been where it is today, which is why we decided to host this event for all of you OSRS players and botters! The event is an interactive happening and will take place in Oldschool Runescape. As the title says, this will be a riddle event. Let's explain how it will work. First of all, when the event starts, I will post a riddle with the world where the event will take place on a locked thread so you can check the riddle whenever you want to. Secondly, the hard work is for you. You will have to solve the riddle and it will lead you to a specific location in Runescape. @Khaleesi will be my accomplice on this as he will be the one hiding. The first person to find him, receives a point. The exact procedure on how to win a round, will be explained later on. There will be a total of 5 riddles (don't bother searching for them on the internet because you won't find them, I made them all up myself). Make sure to have your teleport necessities, possibly some food and other supplies ready before the event starts! After you've found @Khaleesi, you have to complete this procedure in order to gain the point and win the round. The first thing you have to do is, find @Khaleesi. You then need to take a picture on which I can see both the answer/action when you've reached the correct location he'll be there somewhere and will have registered the rs name of the first person to tell him the correct answer or execute the correct action, you can take a picture using Gyazo/Puush/.... Forward the picture to me (@Dex) using the PM system. We will compare and if we deem the picture to be legit, you will be the winner of the round. Keep in mind that only the first person to give @Khaleesi the correct answer/action ingame will receive a point, after that he will be moving to the next location. Date: 03 July 2016 Time: 21:00 (9 pm) Timezone: GMT+1 Click here to see the time of the event on your location The world will be announced together with the first riddle. If you win a round, you will be awarded with a point. The prizes will be rewarded as followed: 1 point: 3 months of 2 points: 6 months of 3 points: Lifetime @Khaleesi will be giving away a script auth to everyone with at least one point! In addition to that, @Alek was so generous to donate one auth for kWarriors to the winner! In case of an ex-aequo we will be releasing a 6th riddle to determine the winner. Please note that if you already have lifetime VIP+ or you don't want any of these rewards, that they can either be donated to another user or you can trade it in for $20 store credit. This is how a riddle will look like. It will contain the information which will lead you to a specific location in Runescape. (this is just an example) Question: what is Martin Luther King's most known sentence? If we take this one as an example (the actual ones will be more difficult), the answer to this riddle is the essence mine in Varrock. The answer to the question is 'I have a dream'. You'll have to say the "I have a dream" when you reach @Khaleesi ingame and take a screenshot of it with your rs name still visible. Some people might think that there will be a mass ban when you participate in this event. I have also taken this into account upon creating the event. Because we do not have one specific location (e.g.: Warrior's Guild) it will be harder to even impossible for Jagex to bust us. OSBot cannot be held responsible for any bans/mutes during/after the event! We hope to see YOU at the event! ~The OSBot Team
    1 point
  13. i see what u did there
    1 point
  14. I liked the post and i know you said not to post about the trial. However, i'd like you to quote me when i do receive it so i know when i have ^_^.
    1 point
  15. I'm assuming your potted to get 42k xp an hour at 60 str?
    1 point
  16. It was goin to good 90 str n shit 0-1 for u weath... 1 lyke = 1 rip
    1 point
  17. He could have been up to 87 str without gaining a combat level. Should also include that Gmaul requires 50 atk and 50 str to be equipped. Also. Perhaps you mistook Ice burst for barrage. So his stats were probably something like this and he has higher than 10 hp because he has rushed quite some times.
    1 point
  18. He was level 42? Seems pretty impossible considering with 10hp, 91 mage and 50 att youre 48
    1 point
  19. run it for half a day from 55/69! Thanks mennn works fine.... ps. i hopped worlds myself and afkd being my one antiban;)
    1 point
  20. Cannon and Blowpipe at Caged Ogres.
    1 point
  21. inbetween 75-100m still deciding
    1 point
  22. Wanna play 21 questions? - Sure 1) Nudes?
    1 point
  23. Voucher code is sent to your email
    1 point
  24. 1 point
  25. can i have a trial please?
    1 point
  26. User safety banned to avoid any market activity. Will be lifted as soon as he's in full control again. Thanks for the report.
    1 point
  27. Gz on the release will use this to learn
    1 point
  28. Request Template: - Script name AIO Agility - trial length 12 Hours - Reason for trial: I cant find a decent agility script that works, very interested in this one. - Are you ging to give feedback on the script? YES
    1 point
  29. Dynamic gives you your current level, not experience
    1 point
  30. 1 point
  31. I've seen max capes go for $2500. At your current state, I think if you can provide enough information so that the seller can perform a successful recovery test, you can easily auction it for 1500m A/W
    1 point
  32. 224864 can I get a 24 hour trial
    1 point
  33. Yeah lifetime sponsor was a bit too much. And that's too bad man, maybe I'll look into doing it earlier next year so the people who are left out this and previous editions will have a chance to participate as well.
    1 point
  34. 1 point
  35. Hey there fam. Certainly get some Korean BBQ !
    1 point
  36. thanks for the trial. Lasted about 4 hours. https://gyazo.com/5db8d27109db066618b5473a39badf49
    1 point
  37. So i gather you enjoy your car breaking down every 30 minutes?
    1 point
×
×
  • Create New...