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.

Salty as fuck

Trade With Caution
  • Joined

  • Last visited

Everything posted by Salty as fuck

  1. http://www.khq.com/story/31368460/suspect-in-i-90-murder-near-ritzville-said-he-was-high-on-meth-and-thought-woman-was-a-witch
  2. why not save as illuminati.jpg?
  3. lol? you can't possibly be serious
  4. ace is gonna wreck your piggy bank for sure lol
  5. what're you willing to pay? lol
  6. why you always tryin to show off your script? my account was also banned for two days, still bot on it years later lol
  7. I develop scripts on my main and bot on separate accounts using the same IP. Bot farms have been farmed, but my main is unaffected. Goodluck though.
  8. looks like an anime/enb version of skyrim would consider
  9. I've rewatched it quite a few times throughout the years. Definitely approve of it.
  10. It's really not worth it. Just watch the newest Naruto movie and call it good. @GoldenGates Darker than Black is definitely worth watching.
  11. Gundam 00, Code Geass, Darker than black, Getbackers, 007 ghost, Afro samurai, The last avatar for sure, Legend of Korra, D. Gray-man
  12. New accounts have a drastically higher ban rate. I'd personally just suggest botting 3 hours a day. I started bottong on my main that I made as soon as OSRS released for over 10 hours a month ago and no bans. Account age has a lot to do with it. Also, babysit your bots as often as you can. Every script here is inevitably bound to get you banned if misused. Spinning flax has a very high ban rate.
  13. i'm not gay or anything, but i'd definitely sex up a cute tarp
  14. Salty as fuck replied to Zeykler's topic in Resolved
    Hey fam, I accidentally added a bunch of random letters after 'Remi', you wanna help me too?
  15. already works fine as is, but thanks for your opinion
  16. i'm beyond out of things to do other than toy with loudpacks http://osbot.org/forum/topic/83628-ardounge-chest-thiever/ people bitch about a lack of antiban, even tho it's practically placebo because you have to wait about 8 seconds for the chest items to respawn as well as clicking on it and disarming trap it is one game tick loop tho, and there really isn't a reason to check for animations ty tho @token, there are two chests near eachother, one doesn't work and one does making sure i'm positioned right beside the proper one also, there's no way to be in that position even if on a different height level, so it isn't necessary to check z
  17. thank you was going through the rs wiki for money making methods and figured i'd make something really quick to test the exp/hour and profit/hour lol tbh 60k gp/hour and 5,200 exp/hour isn't all that great lol definitely doesn't seem to be a well known spot though, so the ban rate is likely to be low
  18. >>>DOWNLOAD<<< Requires 28 thieving. 60k gp an hour. 5k exp an hour. Start here, beside the north chest. import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(name = "Chest Thief", author = "Reminiscence", version = 1.0, info = "Steals nature runes.", logo = "") public class chestThief extends Script { String state; long startTime; @Override public void onStart() { experienceTracker.start(Skill.THIEVING); state = "initializing"; startTime = System.currentTimeMillis(); } public void AntiBan() throws InterruptedException { switch (random(1, 50)) { case 1: camera.movePitch(100 + (random(1, 70))); break; case 2: camera.movePitch(100 + (random(1, 70))); break; case 3: tabs.open(Tab.SKILLS); mouse.getMouse().move(random(682, 730), random(304, 322)); sleep(random(200, 450)); break; case 4: tabs.open(Tab.ATTACK); break; case 5: tabs.open(Tab.QUEST); break; case 6: camera.movePitch(50 + random(1, 70)); break; case 7: camera.moveYaw(150 + (random(30, 70))); break; case 8: tabs.open(Tab.SKILLS); mouse.getMouse().move(random(682, 730), random(304, 322)); sleep(random(200, 450)); break; case 9: tabs.open(Tab.SKILLS); mouse.getMouse().move(random(682, 730), random(304, 322)); sleep(random(200, 450)); break; case 10: mouse.moveOutsideScreen(); sleep(random(5000, 10000)); break; } sleep(random(700, 1800)); tabs.open(Tab.INVENTORY); } @Override public void onExit() { log("exp gained: "+ experienceTracker.getGainedXP(Skill.THIEVING)); } @Override public int onLoop() throws InterruptedException { AntiBan(); if (players.myPlayer().getX() != 2672 || players.myPlayer().getY() != 3301){ state = "Walking to spot"; walking.webWalk(new Position(2672, 3301, 1), new Position(2672, 3301, 1)); } if (objects.closest("Chest") != null && !inventory.isFull()) { state = "checking for traps"; objects.closest("Chest").interact("Search for traps"); sleep(random(13000, 15500)); state = "Sleeping"; } return 600; } public String format(long time) { StringBuilder string = new StringBuilder(); long totalSeconds = time / 1000L; long totalMinutes = totalSeconds / 60L; long totalHours = totalMinutes / 60L; int seconds = (int)totalSeconds % 60; int minutes = (int)totalMinutes % 60; int hours = (int)totalHours % 24; if (hours > 0) { string.append(hours + "h "); } if (minutes > 0) { string.append(minutes + "m "); } string.append(seconds +"s"); return string.toString(); } @Override public void onPaint(Graphics2D g) { final Font font1 = new Font("Arial", 0, 12); final Color color1 = new Color(255, 255, 255, 255); g.setFont(font1); g.setColor(color1); g.drawString("State: " + state, 8, 260); g.drawString("EXP Gained: " + experienceTracker.getGainedXP(Skill.THIEVING), 8, 275); g.drawString("EXP/Hour: " + experienceTracker.getGainedXPPerHour(Skill.THIEVING), 8, 290); g.drawString("Levels gained: " + experienceTracker.getGainedLevels(Skill.THIEVING), 8, 305); g.drawString("EXP to lvl: " + skills.experienceToLevel(Skill.THIEVING) , 8, 320); g.drawString("Runtime: " + format((System.currentTimeMillis()-startTime)), 8, 335); } }
  19. They're the rules. If you don't like them, you can always follow in Stress's footsteps and get banned since you feel you're above them. There was literally nothing wrong with Noah, nor did he have it coming. He was a pretty chill guy.
  20. Thank god.. Actually, directly harassing members, even in the spam section is not allowed.
  21. Works just fine. Oh not that much.
  22. It was nice knowing you, Noah. Hope your job works out well for you.

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.