Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Gf heart, kidneys, liver & hair.
  2. Stop perverting my pokemon memes!
  3. If you could make your signatures a little bit less... seizure inducing... that'd be great :x
  4. I lol'ed at this, then I checked the entry-level salaries for programmers / software engineers. Dem 0s and 1s shall make us bank
  5. 2500-3000€ (belgium) The average net salary being 2000, with only 10% making more than 3000.
  6. 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.
  7. Ah fresh blood. Pm me with questions any time! Gl ;)
  8. 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
  9. 75 str -> 5-10M 75 str -> 5-10M
  10. Gz, still looking forward to that aviansie script Did you make that paint or did you rip it from a game or something ? ^^
  11. @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();
  12. Botre

    Some Zen Scripts

    He asked for all of his "Lite" scripts to be removed earlier today I think.
  13. /** * 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; } }
  14. Nah. Still making mills while you are sleeping, studying and even eating popcorn. ~Cheater (richer, higher total level, truly no xp wasted) #umad
  15. CSS is for styling, there's no such thing as back-end CSS, try PHP. Time spent coding, quality and amount of code are more serious, objective, verifiable and overall professional values to measure the value of this kind of work. Your "not satisfied, not paying" policy won't attract any quality self-respecting designer/coder unless you couple it with an advance and/or some other kind of bonus(es). Also, the fact that you think that you can use CSS to code an admin panel plainly reflects that you yourself don't even know what you want. Just saying.
  16. Today i met my girlfriend at mcdonalds and touched tips with her dad. This was not a normal father, he was sick. He told his daughter, that unfortunately he was dying of boredom due to flaccid balls. What would her mother say if she knew that her tongue was brown? I hate a pair of brown unfirm
×
×
  • Create New...