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.

Botre

Members
  • Joined

  • Last visited

Everything posted by Botre

  1. Gold ol' boredom :l
  2. Heads or tails? package org.bjornkrols.fun; import java.util.Random; /** * @author Bjorn Krols (Botre) * @version 0.0 * @since April 16, 2015 */ public class Coin { public static void main(String[] args) { Coin coin = new Coin(); coin.toss(); if (coin.isHeads() || coin.isTails()) System.out.println(":doge:"); } private static final Random RANDOM = new Random(); private boolean heads; public Coin() { toss(); } public void toss() { heads = RANDOM.nextBoolean(); } public boolean isHeads() { return heads; } public boolean isTails() { return !heads; } } I'm bored
  3. Visuals courtesy of Wikipedia :x
  4. Not super useful for scripting, but here you go. package org.bjornkrols.math; import java.util.BitSet; /** * @author Bjorn Krols (Botre) * @version 0.2 * @since April 16, 2015 */ public final class SieveOfEratosthenes { public static void main(String[] args) { SieveOfEratosthenes sieve = new SieveOfEratosthenes(100); System.out.println(sieve.isPrime(29)); } public BitSet sieve; public SieveOfEratosthenes(int n) { calculate(n); } private void calculate(int n) { sieve = new BitSet(n); // Assume all numbers are prime. for (int i = 2; i < sieve.size(); i++) sieve.set(i, true); // Find the square root of n. double sqrtn = Math.floor(Math.sqrt(n)); for (int i = 2; i < sqrtn; i++) if (sieve.get(i)) for (int j = i * i; j < n; j += i) sieve.set(j, false); } public boolean isPrime(int n) { return sieve.get(n); } } package org.bjornkrols.math; /** * @author Bjorn Krols (Botre) * @version 0.0 * @since April 16, 2015 */ public final class PrimalityTest { private PrimalityTest() { // This class should never be instantiated. // Do not delete or make accessible. } public static boolean test(long n) { // A whole number greater than one is called a prime number if its only positive divisors (factors) are one and itself. // All whole numbers between 1 and 3 are prime. if (n <= 3) return n > 1; // All multiples of 2 and 3 are not prime. if (n % 2 == 0 || n % 3 == 0) return false; // Find the square root of n. double sqrtn = Math.floor(Math.sqrt(n)); // All primes are of the form 6k ± 1 (with the exception of 2 and 3). for (int divisor = 5; divisor <= sqrtn; divisor += 6) if (n % divisor == 0 || n % (divisor + 2) == 0) return false; return true; } } 2 true 3 true 5 true 7 true 11 true 13 true 17 true 19 true 23 true 29 true 31 true 37 true 41 true 43 true 47 true 53 true 59 true 61 true 67 true 71 true 73 true 79 true 83 true 89 true 97 true
  5. Well played
  6. Botre posted a topic in Archive
    90 fletching 55 Ranged 30 Attack 50 Strength 1 defense 1 prayer (no bans / mutes) (no important quests)
  7. I'm pretty sure that's a tuba :p
  8. A bit bright, especially the white text on light blue. Other than that it looks neato.
  9. How's 80k/h better than chinning ? :x
  10. Botre replied to 2007's topic in Spam/Off Topic
    2432
  11. Enjoy amigo! (I'll be supervising the super mods, as per your request )
  12. 5M (starting bid)
  13. I have some very sexy features planned. ... and task scheduling sure is one of them (out of likes, but thank you for the kind words)
  14. Botre replied to Presumptuous's topic in Archive
    Very unlikely so don't worry. Give it some more time
  15. It's going to get you flagged. But then again, a super click intensive task will probably too. Let us know how it turns out ^^
  16. Try 50-100 mil.
  17. Botre replied to Presumptuous's topic in Archive
    If a script was updated by its writer then it can take a couple of hours for the update to be visible to its users. What kind of update are you waiting for ?
  18. Botre replied to Presumptuous's topic in Archive
    Are you talking about local scripts or SDN scripts? Have you tried the "refresh" button?
  19. Classic Fletcher by Botre. Description Classic Fletcher can make all bows and arrow shafts, it is capable of both cutting and stringing and can be used wherever you want. Features - Can cut all bows. - Can string all bows. - Can make arrow shafts. - Supports all banks (including chests). - Ability to change settings mid-session. - Can be started online & offline. Get it now >> Coming Soon! << Price: $7.99 Free trials are available for this product! Post on this thread or send me a PM, don't be shy! Tutorial >> Go to the "Tutorial" post inside this thread << (or just scroll down) FAQ >> Go to the "FAQ" post inside this thread << (or just scroll down) Media

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.