Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/30/16 in Posts

  1. Without further ado, here it comes: Happy 3'rd OSBot anniversary everyone! Three years ago we started out venturing in the world of OSRS botting and now we are here. It has been a sincere blast and with the developments over the last months we are sure we will bring another year worth mentioning! To celebrate we wanted to give something back to you guys so we decided that we are starting with giving away 5 LIFETIME Sponsorships. After that, we will have another round of giveaways, because we can! Special thanks goes out to you, the community, the community staff members who have been with us and those who still are and the development team. Without you, OSBot would not have been here. @Maldesto you are a true hero for handling this community, @Alek you are a true hero for keeping our scripters cornered and @Zach is there anything you can not do?! @MGI you are an amazing programmer and an even nicer person and @Dex please continue messing with our forums haha. @Asuna maybe you can teach Dex? @Genii, @Khaleesi, @Epsilon and everyone aforementioned; keep up the good work, you are awesome! What do you need to do to win? Like our OSBot Facebook page, like our anniversary post, share that post and be one of 5 to get that beautiful rank as a gratitude for your time with us. To get to the page and post click the image below. When will we announce the winners? On May 15'th we will make an announcement on the Facebook page as well as here on the forums. The winners will be only announced by their OSBot usernames with privacy in mind. Happy botting, The entire OSBot staff
    31 points
  2. Time to let all my real life friends know I still play Runescape.
    8 points
  3. Not sure if I'm ready to let my friends know I'm on OSB and more importantly been on here since 2013 and ex-staff :p Cool concept tho, goodluck to all who enter this give away! Happy 3rd anniversary, OSB is love, OSB is life!
    7 points
  4. 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
    6 points
  5. Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. BUY NOW $9.99 NEW! Added Both Wyrm Courses! SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results
    3 points
  6. 3 points
  7. 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
  8. 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:
    2 points
  9. import org.osbot.rs07.api.Widgets; import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.ui.RS2Widget; import java.util.Optional; public class CachedWidget { private int rootID = -1, secondLevelID = -1, thirdLevelID = -1; private String[] widgetTexts; private Filter<RS2Widget> filter; public CachedWidget(final int rootID, final int secondLevelID){ this.rootID = rootID; this.secondLevelID = secondLevelID; } public CachedWidget(final int rootID, final int secondLevelID, final int thirdLevelID){ this.rootID = rootID; this.secondLevelID = secondLevelID; this.thirdLevelID = thirdLevelID; } public CachedWidget(final int rootID, final String... widgetTexts) { this.rootID = rootID; this.widgetTexts = widgetTexts; } public CachedWidget(final String... widgetTexts){ this.widgetTexts = widgetTexts; } public CachedWidget(final int rootID, final Filter<RS2Widget> filter) { this.rootID = rootID; this.filter = filter; } public CachedWidget(final Filter<RS2Widget> filter) { this.filter = filter; } public Optional<RS2Widget> getParent(final Widgets widgets) { return get(widgets).map(widget -> { if (widget.isSecondLevel()) { return widget; } return widgets.get(widget.getRootId(), widget.getSecondLevelId()); }); } public Optional<RS2Widget> get(final Widgets widgets){ if(rootID != -1 && secondLevelID != -1 && thirdLevelID != -1) { return Optional.ofNullable(widgets.get(rootID, secondLevelID, thirdLevelID)); } else if(rootID != -1 && secondLevelID != -1) { return getSecondLevelWidget(widgets); } else if (widgetTexts != null) { return getWidgetWithText(widgets); } else { return getWidgetUsingFilter(widgets); } } private Optional<RS2Widget> getSecondLevelWidget(final Widgets widgets){ RS2Widget rs2Widget = widgets.get(rootID, secondLevelID); if(rs2Widget != null && rs2Widget.isThirdLevel()){ thirdLevelID = rs2Widget.getThirdLevelId(); } return Optional.ofNullable(rs2Widget); } private Optional<RS2Widget> getWidgetWithText(final Widgets widgets){ RS2Widget rs2Widget; if (rootID != -1) { rs2Widget = widgets.getWidgetContainingText(rootID, widgetTexts); } else { rs2Widget = widgets.getWidgetContainingText(widgetTexts); } setWidgetIDs(rs2Widget); return Optional.ofNullable(rs2Widget); } private Optional<RS2Widget> getWidgetUsingFilter(final Widgets widgets) { RS2Widget rs2Widget; if (rootID != -1) { rs2Widget = widgets.singleFilter(rootID, filter); } else { rs2Widget = widgets.singleFilter(widgets.getAll(), filter); } setWidgetIDs(rs2Widget); return Optional.ofNullable(rs2Widget); } private void setWidgetIDs(final RS2Widget rs2Widget) { if (rs2Widget == null) { return; } rootID = rs2Widget.getRootId(); secondLevelID = rs2Widget.getSecondLevelId(); if (rs2Widget.isThirdLevel()) { thirdLevelID = rs2Widget.getThirdLevelId(); } } @Override public String toString() { return rootID + ", " + secondLevelID + ", " + thirdLevelID; } } Usage: private final CachedWidget exampleWidget = new CachedWidget("Blah"); public void someMethod() { exampleWidget.get(getWidgets()).ifPresent(widget -> widget.interact()); }
    2 points
  10. I'm new here, but I've been looking around to buy an OS main after mine was recently banned. I was looking at arcus gold and was curious if anyone had bought an account from them and feedback regarding it. As well, i would be interested in buying from one of you as long as you're trusted. Any feedback or to point me in the right direction would be much appreciated.
    2 points
  11. Pathing is handled by OSBot's webwalker which doesn't use predefined paths since february when they were improved and completely randomized. Dialogue spamming has 2 causes: the latest webwalking code fails to handle links properly in some cases resulting in looping through dialogues, or mirror mode dialogue hooks failing (they are unstable) which I have had a report on for over 2 months. All of them are implemented at API level and are not a local script issue. This answers the 2nd dialogue issue: http://osbot.org/forum/topic/94170-mirror-mode-dialogueswidgets/ There is nothing wrong with dialogues in this script as the dialogue code is entirely based on the Dialogues class in OSBot API. There has not been a ban report ever since beta launch in february.
    2 points
  12. I'm going to pm maxi half the people that shared made a Fb that they don't use lol. As said before liking is no problem it's the sharing. I'll look into it more see if we can figure out something
    2 points
  13. Can't you give us no Facebook users a chance/way to win? =) Happy 3 years anniversary =)
    2 points
  14. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
    1 point
  15. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all 3 boats - Attack portals, defend knight mode - Repair mode (No HP exp mode) - Potions support - Sets auto casting spell after dying - Use Special attack weapons - Only attack monsters mode (Good for low cb players) - Uses quick prayer (make sure to setup before starting) - Worldhopper - Points spender - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 589:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify -script 589): -script 589:TaskList1.4515breaks (With breaks) -script 589:TaskList1.4515breaks.discord1 (With breaks & discord) -script 589:TaskList1..discord1 (NO breaks & discord)
    1 point
  16. Do you have the latest version of Osbot downloaded? Try to make a bat file in notepad with the following argument: @echo off java -jar "OSBot 2.4.53.jar" pause Save it as "run.bat" and make sure it's in the same directory as your OSBot 2.4.53.jar file.
    1 point
  17. Maldesto69 is also way cooler.
    1 point
  18. It doesn't user the short-cut option for me even when enabled. It runs around and never uses it at the start
    1 point
  19. Got me verry fast sexy Cooking 90
    1 point
  20. This Script is totaly Perfect got me Range on SDMM and 07 without a Ban
    1 point
  21. Could I please have a trial for this? Also what are the banrates for f2p mining?
    1 point
  22. worth giving this script a shot id say everyone seems pretty happy with it =)
    1 point
  23. Could I get a trial please ?
    1 point
  24. Sharing does increase the chance of new members joining, since you're sharing it with your friends (average: 200+ people) however a lot of people don't want people to know they're playing RS, or atleast they don't want all their friends to know. I'm OK with saying I used to, or still play RS sometimes if it comes up in a conversation with someone, however I'm not ready to share I'm on OSB and for them to be able to check me on here to my ~550 friends I have on facebook. Hope you can figure something out
    1 point
  25. can i have trial please?
    1 point
  26. 1 point
  27. Bug report: As been mentioned the script is unable to walk up to bank from second level as it gets stuck trying to click the ladder. It walks down perfectly. The script only fights flesh crawlers if you leave it blank "to fight normally", you have to choose each option for it in order to fight everything.
    1 point
  28. 1 point
  29. If the other account isn't botting you should be fine
    1 point
  30. Hey would I be able to try this out? Thanks!
    1 point
  31. Next time try not posting the RSN!
    1 point
×
×
  • Create New...