Everything posted by Botre
-
fighting algorithm
It keeps disappointing you how exactly ?
-
QnA refreshments
It is a the redheaded lady's house and the cookies are date rape drugged, amirite?
-
huehuehuehuehuehuehuehuehuehue
Still will get banned
-
huehuehuehuehuehuehuehuehuehue
Inb4 your main gets banned for this
-
Show off your bookmarks!
I know what the icons stand for hence why I removed the text :p Also I can access them anytime without needing to open a new page/tab. But to each his own What do you use then? ... bugmarks ? *badumtsssss*
- Show off your bookmarks!
-
Show off your bookmarks!
Make sure you don't inadvertently advertise other communities or pron! PS: I know aol sucks, I'm slowly moving everything over to google :x
-
Before cycle (Steroids)
Gf heart, kidneys, liver & hair.
- Oops, I...
-
Dbuffed's actual black version
Stop perverting my pokemon memes!
-
Decode signature
If you could make your signatures a little bit less... seizure inducing... that'd be great :x
-
Dbuffed's actual black version
- With which monthly salary do you consider yourself earning good money.
I lol'ed at this, then I checked the entry-level salaries for programmers / software engineers. Dem 0s and 1s shall make us bank- With which monthly salary do you consider yourself earning good money.
2500-3000€ (belgium) The average net salary being 2000, with only 10% making more than 3000.- Genial Idea.
A few scripts already access the inventory in a customized pattern or random order ^^ Not sure how it affects detection but it doesn't hurt.- MuffinMiner! [Powerminer] [F2P & P2P Locations]
Ah fresh blood. Pm me with questions any time! Gl ;)- Who has a PS4?
Could have bought a divine PC rig with all that money you spent on those macbooks and that PS4. OT: I don't have a PS4- Its been a while and ive seen a few of these so I guess ill post one too
You joined like 1 month ago :x- InventoryMonitor snippet
- 75 Str Mauler - PC Please
75 str -> 5-10M 75 str -> 5-10M- OmniMen is now on the SDN!
Gz, still looking forward to that aviansie script Did you make that paint or did you rip it from a game or something ? ^^- It has been a year
- InventoryMonitor snippet
@Woody, here's a little example (written without an IDE, "fletchedBows" is a global variable holding the total amount of fletched bows). in onStart(): new InventoryMonitor(this) { @override public int onLoop() { fletchedBows += getDifference("Oak longbow"); return 100; } }.start();- Some Zen Scripts
He asked for all of his "Lite" scripts to be removed earlier today I think.- InventoryMonitor snippet
/** * Created by Bjorn on 20/06/2015. */ public abstract class InventoryMonitor extends Thread { private final BotreScript script; /** * Previous and current copies of the inventory instance. */ private final Map<String, Integer> previous, current; public InventoryMonitor(final BotreScript script) { this.script = script; previous = new TreeMap<>(); current = new TreeMap<>(); } @Override public void run() { // Run thread while script is running. while (script.isRunning()) { Inventory inventory; if (script.isOnline() && (inventory = script.getInventory()) != null) { // Clear previous cache. previous.clear(); // Copy mappings of the current cache to the previous cache. previous.putAll(current); // Clear current cache. current.clear(); // Rebuild current cache. for (Item item : inventory.getItems()) { if (item != null ) { String name = item.getName(); if (name != null && !current.containsKey(name)) current.put(name, (int) inventory.getAmount(name)); } } } try { // Call onLoop and sleep for its return value. Thread.sleep(onLoop()); } catch (InterruptedException e) { e.printStackTrace(); } } } public abstract int onLoop(); public int getDifference(String name) { if (current.containsKey(name)) return current.get(name) - (previous.containsKey(name) ? previous.get(name) : 0); else if (previous.containsKey(name)) return 0 - previous.get(name); else return 0; } } - With which monthly salary do you consider yourself earning good money.