-
Posts
5883 -
Joined
-
Last visited
-
Days Won
18 -
Feedback
100%
Everything posted by Botre
-
I like to fuck shit up and botrek everyone.
-
Are you actually botting all your accounts on the same IP? Who did you buy your VPS from ? :p
-
such socker
-
private final Position[] path = new Position[] { new Position(3220, 3219, 0), new Position(3230, 3219, 0), new Position(3235, 3228, 0), new Position(3227, 3235, 0), new Position(3221, 3243, 0), new Position(3219, 3253, 0), new Position(3218, 3263, 0), new Position(3215, 3273, 0), new Position(3207, 3280, 0), new Position(3197, 3280, 0), new Position(3188, 3285, 0), new Position(3188, 3295, 0), new Position(3187, 3305, 0), new Position(3177, 3309, 0), new Position(3167, 3313, 0), new Position(3160, 3313, 0), new Position(3150, 3313, 0), new Position(3141, 3314, 0), new Position(3141, 3314, 0), new Position(3148, 3324, 0), new Position(3148, 3334, 0), new Position(3147, 3344, 0), new Position(3144, 3354, 0), new Position(3141, 3364, 0), new Position(3138, 3374, 0), new Position(3130, 3381, 0), new Position(3121, 3386, 0), new Position(3111, 3390, 0), new Position(3103, 3397, 0), new Position(3098, 3406, 0), new Position(3097, 3416, 0), new Position(3107, 3420, 0), new Position(3117, 3420, 0), new Position(3127, 3418, 0), new Position(3137, 3416, 0), new Position(3147, 3416, 0), new Position(3157, 3418, 0), new Position(3167, 3421, 0), new Position(3174, 3429, 0), new Position(3184, 3430, 0), new Position(3194, 3429, 0), new Position(3204, 3429, 0), new Position(3207, 3428, 0) };
-
Widgets have replaced interfaces
-
Mods on this forums think they are fucking police agents?
Botre replied to Quality Lad's topic in Community Discussion
inb4bye -
What exactly is it trying to do to osbot.jar? (nvm checked scripts myself :p)
-
Latest version of client. Attached to osrs client. [ERROR][bot #1][04/27 04:51:11 PM]: Error on random solver onLoop() : World Hopper java.lang.NullPointerException at org.osbot.rs07.api.Worlds.getAll(ek:102) at org.osbot.rs07.api.filter.FilterAPI.filter(so:152) at org.osbot.rs07.api.Worlds.getAll(ek:20) at org.osbot.rs07.api.Worlds$8.onLoop(ek:125) at org.osbot.rs07.event.RandomExecutor.run(df:728) at java.lang.Thread.run(Unknown Source) Code that resulted in the error: getWorlds().hopToP2PWorld();
-
If you liked Breaking Bad -> Better Call Saul If you liked Curb Your Enthusiasm & Friends -> Seinfeld & Veep Also if you like CYE -> Louie, although it's a bit less "happy" If you liked HIMYM -> The Big Bang Theory Eastbound & Down Parks & Recreation Prison Break & Desperate Housewives (give them a chance, perfect to watch with your gf/crush) Boardwalk Empire & House of Cards if you can handle the politics Brooklyn nine nine Lost (cliché, but the first seasons are really good imo) Orange is the New Black Silicon Valley The Walking Dead (got a bit dull bet then this last season crushed it imo!) True Detective (it's quite grim though) Edit: oh and Mad Men ofcourse!
-
(it's auto-generated )
-
Leeched from: http://stackoverflow.com/a/6409791 import java.util.NavigableMap; import java.util.Random; import java.util.TreeMap; /** * @author Bjorn Krols (Botre) * @version 0.0 * @since April 27, 2015 */ public class RandomCollection<Generic> { private final NavigableMap<Double, Generic> map; private final Random random; private double total = 0; public RandomCollection() { this(new Random()); } public RandomCollection(Random random) { this.random = random; map = new TreeMap<Double, Generic>(); } public void add(double weight, Generic result) { if (weight <= 0) return; total += weight; map.put(total, result); } public Generic get() { double value = random.nextDouble() * total; return map.ceilingEntry(value).getValue(); } } public static void main(String[] args) { RandomCollection<String> rc = new RandomCollection<String>(); rc.add(1, "1"); rc.add(1, "2"); System.out.println(rc.get()); }
-
Not sure if it's worth it but sure.
-
FrostBug
-
You don't make someone use an MM they don't feel like using against their will. There's no such thing as MM rape. Anyhow, I don't think this rules makes much sense but whatever.
-
No. Explain me why TWC are allowed to make trades of unlimited risk but not MM trades of unlimited risk?
-
I never put more than 5M on my mules. I have like 20 of them now :x It's a bit of a hassle but whenever I need a new testing account or botting account I can just use one of them, no need to do tutorial island/move mover supply money, etc...
-
Yes you got that right, it's a precautionary rank. "Trade with caution" is a warning. Don't dramatize this. No official stating this has EVER been made. Why would it be alright to let someone in TWC buy 100M but not MM a 10M transaction? If TWC'ers are allowed to continue to do business in the market, which they are, then MMing should be no exception because the risk of MMing someone in TWC or just trading him is 100% the same.
-
The rank stands for: "Trade with caution" not "Do not trade" If people don't wan't to trade/mm with caution then they should be allowed too. Their rank and tainted rep is usually enough of a penalty already. The really sketchy offenders get banned anyways.
-
script.interfaces is obsolete. What replaced it?
Botre replied to elliottdehn's topic in Scripting Help
getWidgets() -
Sigh. Weren't they going to add stacktraces for onStart() and onExit()? Inb4alektellsustowrapitinatrycatch
-
The time in your life when you just wanna say "Broham stop the lies"
Botre replied to RServiceGeeks's topic in Spam/Off Topic
Membership only costs 2-3k/h -
Some people like to babysit their bots I guess, also for goldfarmers, being able to monitor 16+ accounts on one screen at the same time might be useful. A notification as in system tray notification? I like that actually, having to watch game is actually really distracting (a bit less with the monitor, but still..) a specific event-triggered notification or a regular-time-interval notification containing a status update to reassure the user sounds like a cool idea actually. How about user-set goals ?