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.

Kenn

Members
  • Joined

  • Last visited

Everything posted by Kenn

  1. Kenn posted a topic in Runescape
    I see most people should be smart enough now to not bot on their mains.... I'm wondering how on earth ya'll paying for these memberships with names as 'dfjasdhusda' and on a members world at catherby botting sharks.. Do you pay for the membership or what?
  2. if (!getInventory().contains("Lobster pot")) { if (!getBank().open()) { getBank().open(); if (getBank().contains("Lobster pot")) getBank().getItem("Lobster pot"); System.out.println("Taken a lobster pot out of the bank to fish with."); while (!getBank().isOpen()) { sleep(random(200, 300)); localWalker.walkPath(backFishing); } return 2000; } } I'm not sure why but this doesn't seem to work.. If my inv doesn't contain the item lobster pot, open bank and get the item out and then it should go fish... It opens the bank but just closes it and walks away.. ?
  3. Where abouts are you fishing? You haven't created a path way to get to the bank. Entity bank = objects.closest("Bank booth"); That will only pick up a bank thats within range of your camera angle
  4. Oh we have a scum. Leeds United FTWWW ;) Manchester City (Y)
  5. Script you would like: AIO Cooker Why you would like to try the script: I'd like to have a quick tester before i purchase to see if it works well How did you find out about this script: Forum/Store
  6. Best of luck with this script, looks pretty decent if you ask me man.
  7. Kenn replied to Apathy's topic in Gallery
    The top one is aaaaamazing!
  8. How does the bot know what food to take out of my bank? There is no option for me to select the food?
  9. I wouldn't recommend something too expensive. http://www.ebay.co.uk/itm/like/301082856644?adgroupid=13585920426&hlpht=true&hlpv=2&rlsatarget=pla-131843273826&adtype=pla&ff3=1&lpid=122&poi=&ul_noapp=true&limghlpsr=true&device=c&chn=ps&campaignid=207297426&crdt=0&ff12=67&ff11=ICEP3.0.0-L&ff14=122&viphx=1&ops=true&ff13=80 get something really padded.
  10. Kenn replied to Rhodry's topic in Gallery
    The last image really appealed to me, nice work man.
  11. 15, Turning 16 in 20 days or sum shit, Male. / UK
  12. Hello guys, i've recently bought the domain (Zamron.net) I have decided to sell it now because i no longer need it. I bought it from TrentaHost. You will get everything you need for the domain (domain names etc for your webhost) Offers?...
  13. These are amazing, great work.
  14. I'm going to start leveling up my slayer for this release aha, thank you man.
  15. Best of luck with this, looks pretty sweet. Good work.
  16. Kenn replied to Jack's topic in Others
    Why would you even need a proxy if you're botting?.... but nice release on this.
  17. Thanks, using this right now. EDIT: make this bank instead of dropping at al Kalarhid and this would be baws.
  18. Goodluck with this, Going to be good what it turns out like.
  19. Lol i obv do know where to start with i use Eclipse to code RSPS i aren't completely new to Java but this is all wierd to me i've never done much with Bots, Although some codes do look alot familiar but im pretty sure 07 codes are different from coding 317-742 servers. This is my code so far im working on some more like a all around woodcutt where you have a option to choose what you want to cut and such. Would anybody care to help? package Woodcutter; /* * Create by Kenn * Project Created 07/07/2013 * Base/Skeleton from OsBot.org */ import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; import org.osbot.script.rs2.model.Player; import org.osbot.script.rs2.skill.Skill; import org.osbot.script.rs2.skill.Skills; import org.osbot.script.rs2.ui.Bank; import org.osbot.script.rs2.ui.Inventory; import org.osbot.script.rs2.utility.Area; @ScriptManifest(author = "Kenn", info = "Chops all logs everwhere.", name = "Woodcutter", version = 0.2) public class Other extends Script { static Timer runTime; final String WILLOW_NAME = "Willow"; final String YEW_NAME = "Yew"; final String OAK_NAME = "Oak"; final Area BANK_AREA = new Area(3092, 3240, 3097, 3246); final Area WILLOW_AREA = new Area(3081, 3223, 3092, 3239); final Area YEW_AREA = new Area(); final Area OAK_AREA = new Area(); final int BANK_BOOTH_ID = 23961; int startExp; int startLvl; int logsChopped = 0; // code used at start public void onStart() { runTime = new Timer (0); startExp = client.getSkills().getExperience(Skill.WOODCUTTING); startLvl = client.getSkills().getLevel(Skill.WOODCUTTING); log("Draynor Willow Cutter has started."); } // code to be executted at the end public void onExit() { log("Thanks for choosing Draynor Willow Cutter."); } // code in loop public int onLoop() throws InterruptedException { Inventory inven = client.getInventory(); Player player = client.getMyPlayer(); Bank bank = client.getBank(); // Antiban if (random(50) == 0) { this.client.rotateCameraPitch(random(60, 360)); } if (!inven.isFull()) { // chop if(WILLOW_AREA.contains(player)){ Entity willow = closestObjectForName(WILLOW_NAME); if (willow != null) { if (willow.isVisible()) { if (!player.isAnimating()) { if (!player.isMoving()) { willow.interact("Chop down"); sleep(random(700, 800)); } } } else { client.moveCameraToEntity(willow); } } }else{ walk(WILLOW_AREA); } } else { // bank if (BANK_AREA.contains(player)) { Entity bankbooth = closestObject(BANK_BOOTH_ID); if (bank.isOpen()) { bank.depositAll(); } else { if (bankbooth != null) { if (bankbooth.isVisible()) { bankbooth.interact("Bank"); sleep(random(700, 800)); }else{ client.moveCameraToEntity(bankbooth); } } } } else { walk(BANK_AREA); } } return 50; } public void onMessage(String message){ if(message.contains("You get some willow logs.")){ logsChopped++; if(message.contains("You get some oak logs.")){ logsChopped++; } } } // paint public void onPaint(Graphics g) { Graphics2D gr = (Graphics2D)g; gr.setColor(Color.CYAN); gr.setFont(new Font("Arial",Font.BOLD,12)); Skills skills = client.getSkills(); gr.drawString("Logs chopped: " + logsChopped, 25, 50); gr.drawString("Logs chopped/hr: " + getPerHour(logsChopped), 25, 65); gr.drawString("Exp gained: " + (skills.getExperience(Skill.WOODCUTTING)-startExp), 25, 80); gr.drawString("Exp gained Per Hour: " + getPerHour(skills.getExperience(Skill.WOODCUTTING)-startExp), 25, 95); gr.drawString("Woodcutting Level: " + (skills.getLevel(Skill.WOODCUTTING) + " + (" +(client.getSkills().getLevel(Skill.WOODCUTTING) -startLvl) + ")"), 25, 110); } public static int getPerHour(int Value) { if (runTime != null && runTime.getElapsed() > 0){ return (int) (Value = (int) (36000000d / runTime.getElapsed())); } else { return 0; } } public static long getPerHour(long value) { if (runTime != null && runTime.getElapsed() > 0) { return (long) (value = (long) (36000000d / runTime.getElapsed())); } else { return 0; } } }
  20. Thanks, Im pretty sure we can find another way around it to make the bots work.
  21. Does anybody have something/program that i will be able to read .class files please.

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.