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. Looks better than the current on skin!
  2. More like an engine at this point but yeah Such funs, much lels
  3. Quit defining yourself as socially awkward / complex / shy / all that other bullshit, you're setting yourself up for failure. Social weaknesses tend to come from social inexperience: go practice and stop blaming that fear on bs self-imposed personality traits. You need to stop overthinking this. Just fucking tell her what's on your mind, it's not like you're facing a moral dilemma or anything: it's an old-fashioned, useless, sexist tradition. Just talk about it, if she makes a big deal out of it -> NEXT Easy peazy jeezy
  4. I wish I could play this game all by myself. Granted but you have to suck my dick. Ok no problem. *sucks own dick*
  5. Cookie pls package org.bjornkrols.botre.datastructures.queue; import java.util.Iterator; import java.util.NoSuchElementException; /** * Created by Bjorn on 25/05/2015. * Last edit: 25/05/2015. */ public class CircularArrayQueue<T> implements Queue<T>, Iterable<T> { private T[] queue; private int front, insert, size; public CircularArrayQueue(int capacity){ queue = (T[]) new Object[capacity]; } /** * Inserts the element at the rear of the queue. * If the queue is full, the oldest value will be removed and the the second oldest element will become the front element. */ @Override public void enqueue(T element) { queue[insert] = element; insert = (insert + 1) % queue.length; if (isFull()) { front = (front + 1) % queue.length; } else { size++; } } @Override public T dequeue() { if (size == 0) { throw new NoSuchElementException("Queue is empty."); } T element = queue[front]; queue[front] = null; front = (front + 1) % queue.length; size--; return element; } @Override public boolean isEmpty() { return size == 0; } public boolean isFull() { return size == queue.length; } @Override public int size() { return size; } @Override public Iterator<T> iterator() { return new QueueIterator(); } public class QueueIterator implements Iterator<T> { private int current = front; private int i; @Override public boolean hasNext() { return i < queue.length; } @Override public T next() { T value = queue[current]; current = (current + 1) % queue.length; i++; return value; } } }
  6. you can extend a class extending Script (I do so myself), no problem with that whatsoever ^^
  7. It's possible I guess, but not build-in the API and not beginner's stuff either.
  8. The boolean just reflects whether a mouse click was transmitted to the entity's (option's) click region. You might want to check whether you are in the area below or above the ladder (actual proof of whether the interaction was succesfull) instead of relying on that metho's boolean too much.
  9. Money AND / OR E-Peen AND / OR Rage
  10. Botre replied to booya's topic in Archive
    I know people who make around ~7$/h from corping legit (on one account) So even at 30$ monthly (which is OSBot's price ceiling) it would be underpriced as fuck. If a script can make you 3K$ PER MONTH PER ACCOUNT from private farming, you'd need to be really generous to go ahead sell it for 30$ monthly (OSBot's price ceiling). I'm 100% sure there's at least one guy botting corp and I'm 100% he's making really fat stacks.
  11. Both are amazing, but vg doesn't have the charisma. Not really athletically relevant I guess, but since you brought up style... :p But I have respect for both teams and managers
  12. I guess they stopped being good in 2009 .. (just kidding, I like the team actually, but really can't stand van Gaal :p)
  13. To bad you don't get points for fanciness and style. Perhaps you should look into homo sports where you do get points for stuff like that, like ballet or something. ...
  14. Better at not being champion, ok fine
  15. I know. I'm from Africa btw. No I'm not. What. Hi. Wew. I know. I'm from Africa btw. No I'm not. What. Hi. Wew.
  16. Americans don't know anything about sports because they're all fat and stupid. Get botrekt. PS: the singular of tick is tick, not ticks, meathead. ...
  17. wat r u doin Chelsea pls staph
  18. Testing results: 4K collision checks instead of 8M collision checks (constant 200+ fps at 60 ups, around 1K collidable objects present at the same time)
  19. wew that was fun :x
  20. yep

    Botre replied to Apaec's topic in Spam/Off Topic
    lelelel

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.