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.

ukhoppa

Members
  • Joined

  • Last visited

Everything posted by ukhoppa

  1. ukhoppa posted a topic in Price Check
    Price check on this account please https://imgur.com/a/3qJQzuv TIA
  2. ukhoppa posted a topic in Snippets
    Bully any stray dog, because we should! void StrayDog() throws InterruptedException { NPC dog = getNpcs().closest("Stray dog"); if (dog != null) { if (dog.isInteracting(myPlayer())) { sleep(random(400, 800)); if(dog.interact("Shoo-away")) { log("[Dog] Shood dog"); } } } }
  3. Heres an animated outline text i made for paint. It kinda looks like it looses focus. int red,green,blue; void hoppsanimatedoutline(Graphics2D gfx, String text,int x, int y) { if (red > 250){red = 10;}else{red = red + 3;} if (green > 250){green = 10;}else{green = green + 5;} if (blue > 250){blue = 10;}else{blue = blue + 1;} gfx.setColor(new Color(red, 0, 0)); gfx.drawString(text, x - random(1,2), y); gfx.setColor(new Color(green, 0, 0)); gfx.drawString(text, x + random(1,2), y); gfx.setColor(new Color(blue, red, 0)); gfx.drawString(text, x , y - random(1,2)); gfx.setColor(new Color(red, blue, 0)); gfx.drawString(text, x , y + random(1,2)); gfx.setColor(Color.WHITE); gfx.drawString(text, x , y); } public void onPaint(Graphics2D gfx) { hoppsanimatedoutline(gfx,"Big Hopps MultiBot Animated text",10, 40); };
  4. ukhoppa posted a topic in Graphics
    Heres an outline text i made for paint. void hoppsoutline(Graphics2D gfx, String text,int x, int y,Color colout, Color coltxt) { gfx.setColor(colout); gfx.drawString(text, x - 1, y); gfx.drawString(text, x + 1, y); gfx.drawString(text, x , y - 1); gfx.drawString(text, x , y + 1); gfx.setColor(coltxt); gfx.drawString(text, x , y); } public void onPaint(Graphics2D gfx) { hoppsoutline(gfx, "Auto Walker" , 10, 60, Color.RED, Color.WHITE); } https://imgur.com/a/v15V6Y4

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.