Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

Popular Content

Showing content with the highest reputation on 03/31/16 in all areas

  1. 13 points
    back at it again with the out-of-date cient
  2. ๐Ÿ‘‘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
  3. 3 points
    Only "autisim" @Pain
  4. Nice try, new guy!
  5. 3 points
    Finally made it back, hopefully you will see more updates from my end. My current setup (potato camera) because I couldn't fit my case in luggage:
  6. NEW: Released Chop & Firemake plugin Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!
  7. UPDATE: We had to cancel today due to severe delays in updating OSBot. We were unable to do the school because OSBot was not working! Scripter school will be at 3-4pm on Friday 1st April now! There will be a live stream today between 3pm and 6pm UK time. (GMT) Myself and Vilius (http://osbot.org/forum/user/161782-vilius/) will be doing a live stream, probably on twitch to teach new people how to make their own scripts. How cool is that. If you can already script we will do some more advanced stuff too. Keep this thead bookmarked, and also come on the chatbox between 3pm-6pm UK time (GMT) I will post the live stream link here and in the chat room of OSBot. Ask us anything on the stream. Finally be able to make scripts.
  8. 2 points
    damnnnn daniel
  9. 2 points
    lol xbox sucks lol xbox sucks
  10. 2 points
    Yeah, game sucks. Xbox One - Black Ops 3. End.
  11. 2 points
    http://osbot.org/forum/topic/64221-rules/ The staff does not and will not assist with any disputes regarding private script transactions. You made me read 25 minutes worth of information, yet you decided to leave out that you got banned with over 500M on one account, and you made over 1B from the script. Nothing will be done. Feel free to contact scripters and have them try to deob the jar and fix it for you.
  12. If you're having a problem with object interaction on mirror, it may be that you're hooking at the wrong time. Make sure you hook the mirror client BEFORE you log in. Otherwise it bugs out. @Khaleesi Thanks for keeping my work alive
  13. 2 points
    I have my Lawyers ready
  14. Well finally after reaching 40m thieving xp and being ranked #3 my account was finally banned! Script is amazing czar and I really do recommend it to anyone that wants to start swapping over gold!
  15. 1 point
    Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4,99 for lifetime use - Link to Sand Crabs script thread (better exp/h!) - Requirements: Camelot tabs / runes in main tab of bank Designated food in main tab of bank ~ 20-30+ combat level Features: CLI Support! (new!) Supports Ranged & Melee Attractive & fully customisable GUI Attractive & Informative paint Supports any food Custom cursor On-screen paint path and position debugging Supports [Str/Super Str/Combat/Super combat/Ranged/Attack/Super attack] Potions Collects ammo if using ranged Stops when out of [ammo/food/potions] or if something goes wrong Supports tabs / runes for banking Option to hop if bot detects cannon Global cannon detection Option to hop if there are more than X players Refreshes rock crab area when required Avoids market guards / hobgoblins (optional) Automatically loots caskets / clues / uncut diamonds Enables auto retaliate if you forgot to turn it on No slack time between combat Flawless path walking Advanced AntiBan (now built into client) Special attack support Screenshot button in paint GUI auto-save feature Dynamic signatures ...and more! How to start from CLI: You need a save file! Make sure you have previously run the script and saved a configuration through the startup interface (gui). Run with false parameters eg "abc" just so the script knows you don't want the gui loaded up and want to work with the save file! Example: java -jar "osbot 2.4.67.jar" -login apaec:password -bot username@[member=RuneScape].com:password:1234 -debug 5005 -script 421:abc Example GUI: Gallery: FAQ: Check out your own progress: http://ramyun.co.uk/rockcrab/YOUR_NAME_HERE.png Credits: @Dex for the amazing animated logo @Bobrocket for php & mysql enlightenment @Botre for inspiration @Baller for older gfx designs @liverare for the automated authing system
  16. Wanted to thieve the chest so i made this. Its not very efficient, it runs 12-16 seconds for a thieve from chest and you can min-max clicking at 8 seconds. All the scripts on the sdn dont support this chest so i threw this together real fast. import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.util.concurrent.TimeUnit; @ScriptManifest(name = "Ardougne Nature Chest", author = "Patrickold", version = 0.1, info = "Simple script to open the Nature Rune chest", logo = "") public class ArdyChest extends Script { private int natureRunes = 0; private int coins = 0; private long timeBegan; private long timeRan; private int beginningXP; private int currentXp; private int xpGained; private int currentLevel; private int beginningLevel; private int levelsGained; @Override public void onStart() { log("Script Starting."); natureRunes = (int) this.inventory.getAmount(561); coins = (int) this.inventory.getAmount(995); timeBegan = System.currentTimeMillis(); beginningXP = skills.getExperience(Skill.THIEVING); beginningLevel = skills.getStatic(Skill.THIEVING); lastChest = System.currentTimeMillis() - 5000; } @Override public void onExit() { log("Script Exited."); } private long lastChest = 0; @Override public int onLoop() throws InterruptedException { Entity chest = getObjects().closest("Chest"); sleep(random(100,200)); getCamera().moveYaw(random(10,150)); sleep(random(100,200)); if(chest.getId() == 11736 && chest.getX() == 2671 && chest.getY() == 3301 && lastChest <= System.currentTimeMillis() - 3000) { chest.interact("Search for traps"); getCamera().movePitch(random(100,200)); getCamera().moveYaw(random(10,150)); lastChest = System.currentTimeMillis(); } sleep(random(100,200)); getCamera().movePitch(random(100,200)); return(random(100,150)); } private String ft(long duration) { String res = ""; long days = TimeUnit.MILLISECONDS.toDays(duration); long hours = TimeUnit.MILLISECONDS.toHours(duration) - TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS.toDays(duration)); long minutes = TimeUnit.MILLISECONDS.toMinutes(duration) - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS .toHours(duration)); long seconds = TimeUnit.MILLISECONDS.toSeconds(duration) - TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS .toMinutes(duration)); if (days == 0) { res = (hours + ":" + minutes + ":" + seconds); } else { res = (days + ":" + hours + ":" + minutes + ":" + seconds); } return res; } @Override public void onPaint(Graphics2D g) { timeRan = System.currentTimeMillis() - this.timeBegan; currentXp = skills.getExperience(Skill.THIEVING); xpGained = currentXp - beginningXP; currentLevel = skills.getStatic(Skill.THIEVING); levelsGained = currentLevel - beginningLevel; super.onPaint(g); g.setColor(Color.GREEN); g.drawString("Ardougne Nature Chest :3", 5, 290); g.drawString("Time Ran: "+ft(timeRan), 5, 302); g.drawString("Nature Runes: "+(this.inventory.getAmount(561) - natureRunes), 5, 314); g.drawString("Coins: "+(this.inventory.getAmount(995) - coins), 5, 326); g.drawString("Xp Gained: " + xpGained, 5, 338); g.drawString("Thieving LVL: "+currentLevel+(levelsGained > 0 ? " (+"+levelsGained+")" : ""), 5, 350); } } Second time running it, first time was for about a hour then i had to leave. I have only tested it on the Mirror client, so. No idea how the regular client will function.
  17. Someone sent me 37.5 BTC and said pay me later More trusted than BOGLA
  18. Thanks, I went ahead and banned him.
  19. 1 point
    hi guys can someone tell me why osbot is down i was trying to watch a really really good gay porno but then my bot stopped working?? Cheerio, Mr. Rental
  20. Let me test please i really am intrested even wanna pay 2mil rs
  21. https://gyazo.com/bc9b5a0844f631e03edb2f3e6e74cc23 not so long ago i guess? https://gyazo.com/21b6d797d427979daea121f8cb9ba96b yes i remember veddy good :kappa:
  22. $350-$450 gl maybe is more btw
  23. Ran this for 3 weeks suicide botting and no ban yet.. What gives?
  24. 1 point
    No love for @Zach
  25. Sounds like a fun project, do you have to have those accounts or do you like provide them? Now let's discuss the pay
  26. Could i please get a agility trail? ID 99594
  27. 1 point
    Damn yours is sick.
  28. I would like a 24 hr trial of this please!
  29. Request Template: - Script name Khal RuneCrafter - Trial length: 24hr - Reason for trial: want to see if its for me, if it fulfills my needs i will purchase - Are you ging to give feedback on the script? Yes
  30. Hey Khaleesi, can i have a trial before i buy it please? Edit: Nevermind, just bought it :P
  31. 1 point
    Welcome back
  32. could i get a trial for your Perfect Mining please, I bought your motherload but even when it's going down to the spot where you can where there are no rocks in the way you have to mine, it still goes all the way around the tunnel to find a path that has a rock to mine and Idk but that doesn't something a human would do and people would notice that extremely over time 'why he's keep going around to mine the rock in the way when he can just go up to the bank 10 tiles away' yanno? Could you fix this please
  33. Hey, I dunno but the script isn't working with ranged... I'm at monitors. it : ---------- ready ---------- initials: perfectstronghold Chosen ammo [iron arrow]x[0] then gets stuck. the safe spotting that breaks it

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.