Skip 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.

Mikkoz

Members
  • Joined

  • Last visited

Everything posted by Mikkoz

  1. Mikkoz replied to Czar's topic in Thieving
    I have the same problem it keeps logging out after running out of food at master farmer when out of food (inventory, bank still has food) it will click the minimap to the bank then log out immediately
  2. Most likely you will be banned
  3. Mikkoz replied to Czar's topic in Thieving
    How can I use the rogue chest option???
  4. Don't give up!!! When my main acc was banned, I decided to fight back and I shall never stop!!!!
  5. Mikkoz replied to Czar's topic in Thieving
    Stall thieving in Ardougne kinda broken: https://youtu.be/CLQ73VPr9_k If I start the script on the side where there are no guards (silk stall) it still eventually moves to the wrong side where guards can see me.
  6. Mikkoz replied to Czar's topic in Thieving
    10/10 script! Cant wait for blackjacking (Ive got 43-64 now using this)
  7. I have botted 2 accounts to 50+, I don't think you will get banned
  8. - Mirror or regular client? Both - Running abyss or normal altars? Lava RoD - What is your setup? (Food, teleport method, obstacles used, pouches used, all you know the better) No potions, earth talisman, no pouches - Printscreen with the Osbot console enabled and script paint when getting stuck. No error in console, Status: Withdrawing pure essence It keeps trying to withdraw pure essence.
  9. alright ty
  10. It does withdraw the items and deposit if I open the bank manually
  11. - Mirror or regular client? Mirror - Running abyss or normal altars? Law, balloon - What is your setup? (Food, teleport method, obstacles used, pouches used, all you know the better) Doesn't work with any setup - Printscreen with the Osbot console enabled and script paint when getting stuck. It doesn't open the bank, or interact with the altar. please fix this asap i'm not getting anything in console and paint is just saying Opening bank... and Entering ruins EDIT: it also doesn't walk to the altar when i'm inside it. EDIT: it's working in stealth injection mode.
  12. Does it hop out of bot worlds???? I replied 2 days ago but you didn't answer
  13. Ive bought it, works nice. Does it hop out of bot worlds?
  14. Thank you very much! I added some null checks and it seems to be working now (uses about 10% CPU!)(talking about another script) However I'm still getting the FPS spike every 1 sec?
  15. Hmm, well here's one of them it cuts yew at Catherby and banks it. import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.RS2Object; 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; import java.awt.*; import java.text.DecimalFormat; import java.util.concurrent.TimeUnit; @ScriptManifest(name = "YewCutter", author = "Mikkoz", version = 1.0, info = "Catherby Yew Chopper", logo = "") public class MainClass extends Script { private enum State { CHOP, BANK } private static final Area YEW_AREA = new Area(2767, 3424, 2752, 3435); private static final Area BANK_AREA = new Area(2808, 3440, 2810, 3441); private long timeBegan; private int beginningXP; private int currentLevel; private int beginningLevel; private int itemsMade; private int costOfItem; private int beginningXp; private long timeTNL; 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; } final int[] XP_TABLE = { 0, 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 }; private State getState() { if (inventory.isFull()) return State.BANK; return State.CHOP; } public void AntiBan() throws InterruptedException { switch (random(1, 50)) { case 1: camera.getCamera().moveYaw(random(10, 50)); break; case 2: camera.getCamera().movePitch(random(10, 50)); break; case 3: getInventory().getTabs().open(Tab.SKILLS); getSkills().hoverSkill(Skill.MINING); sleep(random(2000, 4000)); break; case 4: mouse.getMouse().moveOutsideScreen(); sleep(random(5000, 12000)); break; case 5: RS2Object yewtree = objects.closest(YEW_AREA, "Rocks"); getCamera().toEntity(yewtree); break; case 6: getInventory().getTabs().open(Tab.FRIENDS); sleep(random(500, 2000)); break; case 7: getMouse().moveRandomly(); sleep(random(1000, 1500)); break; case 8: getMouse().moveRandomly(); sleep(random(2000, 2500)); break; case 9: camera.getCamera().movePitch(35 + random(1, 30)); break; case 10: camera.getCamera().moveYaw(50 + random(1, 125)); } sleep(random(500, 1000)); getInventory().getTabs().open(Tab.INVENTORY); } @Override public void onStart() { log("Welcome to Yew Cutter!"); timeBegan = System.currentTimeMillis(); beginningXP = skills.getExperience(Skill.WOODCUTTING); beginningLevel = skills.getStatic(Skill.WOODCUTTING); timeBegan = System.currentTimeMillis(); beginningXp = skills.getExperience(Skill.WOODCUTTING); timeTNL = 0; costOfItem = 437; } @Override public void onExit() { log("Thanks for using Yew Cutter!"); } @Override public int onLoop() throws InterruptedException { switch (getState()) { case CHOP: RS2Object yewtree = objects.closest(YEW_AREA, 7419); if (!yewtree.isVisible() && !yewtree.isOnScreen()) { walking.webWalk(YEW_AREA); } if (!myPlayer().isAnimating() && !myPlayer().isMoving()) { camera.getCamera().objects.closest("Yew"); sleep(random(500, 1000)); yewtree.interact("Chop down"); getMouse().moveRandomly(); AntiBan(); if (myPlayer().isMoving() && myPlayer().isAnimating()) { sleep(random(3000, 6000)); } } else { break; } break; case BANK: if (inventory.isFull()) { if (!myPosition().equals(BANK_AREA)) { walking.getLocalWalker().walk((random(2768, 2772)), (random(3429, 3434))); sleep(random(1000, 2000)); walking.webWalk(BANK_AREA); sleep(random(500, 1000)); } } camera.getCamera().objects.closest("Bank booth"); sleep(random(500, 1000)); objects.closest("Bank booth").interact("Bank"); sleep(random(1000, 2500)); if (bank.isOpen()) { bank.depositAllExcept("Dragon axe"); itemsMade += 27; bank.close(); sleep(random(500, 1000)); } if (!getInventory().isFull()) ; return random(250, 500); } return random(2000, 4000); } @Override public void onPaint(Graphics2D g) { Graphics2D gr = g; long timeRan = System.currentTimeMillis() - this.timeBegan; int currentXp = skills.getExperience(Skill.WOODCUTTING); int xpGained; int levelsGained = currentLevel - beginningLevel; int gpGained = itemsMade * costOfItem; int totalGpGained = gpGained / 1000; currentXp = skills.getExperience(Skill.WOODCUTTING); currentLevel = skills.getStatic(Skill.WOODCUTTING); xpGained = currentXp - beginningXp; gpGained = xpGained / 175 * costOfItem; int xpPerHour = (int) (xpGained / ((System.currentTimeMillis() - this.timeBegan) / 3600000.0D)); double nextLevelXp = XP_TABLE[currentLevel + 1]; double xpTillNextLevel = nextLevelXp - currentXp; if (xpGained >= 1) { timeTNL = (long) ((xpTillNextLevel / xpPerHour) * 3600000); } DecimalFormat df = new DecimalFormat("#"); g.drawString("Runtime: " + ft(timeRan), 330, 319); g.drawString("XP Gained: " + xpGained, 168, 319); g.drawString("Current LVL:" + currentLevel, 15, 300); g.drawString("Levels Gained: " + levelsGained, 15, 319); g.drawString("Profit Made: " + df.format(gpGained), 330, 300); g.drawString("Time to Level: " + ft(timeTNL), 168, 300); } } The lag is kind of like every 1 seconds my client freezes.
  16. Hello. I recently started making my own scripts due to usual bugs in other people's scripts. However, I have noticed that every time I run my scripts, my client starts lagging FPS wise. I'm not getting any errors in logger so what could cause this?
  17. Thank you! Nice work
  18. EXCELLENT!! REALLY EXCELLENT
  19. Handy little script Sometimes it gets stuck when its fishing at the most east fishing spot until I walk it towards the bank a bit. (banking problem)
  20. Mikkoz replied to Xerion's topic in Archive
    Please add bank support! Oh. Can you give an ETA of when it will be done?
  21. Mikkoz replied to Bear's topic in Archive
    Thanks developers for this awesome bot! I am forever thankful, I used to use a colour bot which didn't work always very well.

Account

Navigation

Search

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.