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.

Fay

Members
  • Joined

  • Last visited

Everything posted by Fay

  1. Get a second opinion first.
  2. Couple hours a day. I look through the scripting issues/questions topics and if there is nothing new I get off and check later. I also look through for new guides and new goals. Nothing to exciting on my favorite parts of the forum.
  3. Fay replied to Aart1's topic in Archive
    I suggest you save money, 20-50 a month and eventually get a new computer.
  4. bringing suggestions not solutions.
  5. for(String loot : GUILoot){ loot.replace("[","").replace("]",""); }
  6. Fay replied to Jordy's topic in Runescape
    Any update?
  7. If you have enough people doing it (without the private ip part) yeah it could be effective but honestly there are better ways. I would appreciate the sub-forum of "Hacking/General" or whatever but I don't want to deal with the community that comes with it..
  8. To expand on this, you define an Area and then search that area for the object. To my point, I don't understand why you would need this functionality because you would never need to bank for anything at experiments in the first place lol because food lasts forever.
  9. I can see it now. Script Kiddy: "I'm going to DOS you!!" *opens up cmd ping <private IP> -t*
  10. Fay replied to Sillyman's topic in Runescape
  11. Fay replied to RoomScape's topic in Resolved
    Different time zones?
  12. Fay replied to Kittens's topic in Spam/Off Topic
    >That last time I had a straight thought? He'd probably be in your dreams tonight.
  13. Fay replied to mrfabulous7's topic in Scripting Help
  14. If you don't want quests at all just do gdk.
  15. Yeah there is but you didn't ask for that, you just asked to fix the script .
  16. Lol, my iPhone has been ran over by a car no damage. People on my team at work have dropped their s4's complete spider-cracked screen.
  17. Let me guess it would turn the camera to the entity but not actually use the rod on the spot? This should fix it. Read my signature for my TOS lol. final String FISHINGSPOT_NAME = "Fishing spot"; final int rod = 11323; public int onLoop() throws InterruptedException { Player player = client.getMyPlayer(); Inventory inv = client.getInventory(); if (!client.getInventory().isFull()) { // If inventory is not full then fish Entity fishSpot = closestNPCForName(FISHINGSPOT_NAME); if (fishSpot != null) { if (fishSpot.isVisible()) { if (!player.isAnimating()) { inv.interactWithId(rod, "Use-rod"); selectOption(fishSpot, fishSpot.getMouseDestination(), "Use-rod"); sleep(200 + random(400)); } } else { client.moveCameraToEntity(fishSpot); } } } else { // If inventory is full then drop all except feathers and rod inv.dropAllExcept(314,rod); } return 50; }
  18. Fay replied to whips's topic in Archive
    It is often better to use that mixed with vinegar or that with water. Just so it is not raw, the vinegar helps cleanse the scratches if any.
  19. Fay replied to whips's topic in Archive
    >.> have you gone swimming lately? If so it is probably swimmers ear. Else go mix vinegar and h2o2 50/50 and dip it into your ear. You will hear it crackle and sizzle. Eventually it will stop and you turn your head and rub the outside of the ear. The liquid will come out and you should feel better. DO NOT FINGER YOUR EAR. How do I know? I get swimmers ear almost every month. Another thing, do not stick anything into your ear besides a q-tip. The problem with q-tips are that people stick them like all the way in to the inner ear canal.. Do not do this, just swab the outer canal.
  20. Lol, I'd believe it. But then again you didn't release it (the source I mean).
  21. Could probably be done better but I don't think there is a built-in function to find it nor did I see any PC bots utilizing it. (Yes this was originally made for automatic world hopping in PC.) The Code for mode() was found here: http://deveshsharma.info/2013/07/16/find-most-common-element-in-a-list-in-java/ ^ because I didn't want to make it. import java.awt.Graphics; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.ui.RS2InterfaceChild; import org.osbot.script.rs2.ui.Tab; private static int mode(List < Integer > list) { Map < Integer, Integer > map = new HashMap < Integer, Integer > (); for (int i = 0; i < list.size(); i++) { Integer frequency = map.get(list.get(i)); if (frequency == null) { map.put(list.get(i), 1); } else { map.put(list.get(i), frequency + 1); } } int mostCommonKey = -1; int maxValue = -1; for (Map.Entry < Integer, Integer > entry: map.entrySet()) { if (entry.getValue() > maxValue) { mostCommonKey = entry.getKey(); maxValue = entry.getValue(); } } return mostCommonKey; } public int chatWorld() throws InterruptedException { openTab(Tab.CLANCHAT); List < Integer > chatWorlds = new ArrayList < Integer > (); int hopWorld = -1; RS2InterfaceChild chatbox = client.getInterface(589).getChild(5); RS2InterfaceChild[] people = chatbox.getChildren(); for (RS2InterfaceChild world: people) { if (world.getMessage().contains("World ")) { chatWorlds.add(Integer.parseInt(world.getMessage().replace("World ", ""))); } } hopWorld = mode(chatWorlds); return hopWorld; }
  22. Replying to this thread because I may have found a solution that would work for this.
  23. Fay replied to Daviyow's topic in Scripting Help
    This might set you on track a little? Threw this together not even sure what it outputs as I am at work and cant run the client because we block the auth port. import org.osbot.script.rs2.ui.HitSplat; public void isPoisoned() throws InterruptedException { HitSplat[] hits = this.myPlayer().getHitSplats(); for(HitSplat hit : hits){ log(hit.toString()); } }
  24. EWWWWWW formatted the P drive as FAT? You won't be able to hold any hi-def videos for sure. Also it is best to have a two step authentication. One password and one keyfile. The government can force you to put in the password/they can crack it but they cannot crack a keyfile.

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.