Everything posted by Botre
-
Community Vote - New OSBot Skin
Looks better than the current on skin!
-
Another random game dev screenshot
More like an engine at this point but yeah Such funs, much lels
-
Another random game dev screenshot
- Serious question: Traditionally do guys treat girls when they hang out(friends)
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- Corrupt-A-Wish!
I wish I could play this game all by myself. Granted but you have to suck my dick. Ok no problem. *sucks own dick*- Circular buffer / queue visualization
nom nom nom- Circular buffer / queue visualization
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; } } }- Debate: Which is more impressive $500 donor or Ex-Saff?
OSDs because they are smurt.- Policy for third party SPI
you can extend a class extending Script (I do so myself), no problem with that whatsoever ^^- object visible when it's not
It's possible I guess, but not build-in the API and not beginner's stuff either.- interact() returning true even though entity is not interacted with
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.- Background or reason for the attacks against Jagex
Money AND / OR E-Peen AND / OR Rage- My IRL name in google maps returned...
- Corp Bot Theory.
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.- Chelsea what the shit
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- Chelsea what the shit
I guess they stopped being good in 2009 .. (just kidding, I like the team actually, but really can't stand van Gaal :p)- Chelsea what the shit
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. ...- Chelsea what the shit
Better at not being champion, ok fine- Chelsea what the shit
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.- Chelsea what the shit
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. ...- Chelsea what the shit
wat r u doin Chelsea pls staph- Fun with quadtrees / collision
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)- Fun with quadtrees / collision
- Fun with quadtrees / collision
wew that was fun :x- yep
- Serious question: Traditionally do guys treat girls when they hang out(friends)