Everything posted by Dreamliner
-
found what smart does in his spare time
*use a derivative to measure the slope of the line tangent to the ass's natural polar curve ;)
-
A little fun with my car with data logging capabilities
2.8L V6 30v passat 5 speed manual fwd
-
multiple ints
int x = 30, y = 30, z = 30; mybad
-
How can i accurately gage "Items collected"?
#overkill
-
How to reduce spam 10x in 10 seconds
Nailed it.
-
How can i accurately gage "Items collected"?
public ItemWatcher watcher = null; public Thread wt = null; public void onStart() { this.watcher = new ItemWatcher(this); this.wt = new Thread(this.watcher); this.wt.start(); } public int onLoop() { System.out.println(this.watcher.getCollected()); return 600; } public void onExit() { this.watcher.kill(); } ItemWatcher.java public class ItemWatcher implements Runnable { private Script s; private int start_item = 0; private int item_now = 0; private int collected_items = 0; private int item = 1337; private boolean run = true; public ItemWatcher(Script s) { this.s = s; this.start_item = s.client.getInventory().getAmount(item); } public void run() { while (run) { this.items_now = s.client.getInventory().getAmount(item); if (items_now > start_item) { this.collected_items += (items_now - start_item); this.start_item = items_now; } Thread.sleep(600); } } public void kill() { this.run = false; } public int getCollected() { return collected_items; } } ignore any typos, it was done in the osbot reply
-
How to reduce spam 10x in 10 seconds
- mothers got loaded
Considering it's new content, it's probably optimized to use their new anti bot software.- @Raf.
- @Raf.
I think it's because I'm not 12- @Raf.
- @Raf.
Why does the entire site need to know? If they did, why did you post in spam?- @Raf.
This is a completely unnecessary thread. Why can't you pm him?- Mikasa's Road To Better Processor
Not a problem, I'm very familiar with that processor. The 4770k will have no trouble overclocking to the same limits as it. But the 4770k is faster anyway, so ~4.1GHz = 4.3GHz I upgraded from the 2600k to the 4930k not to long ago, and the 2 extra physical cores are 100% worth the extra money. I sold the 2600k for $250 after 2 years of use. I bought it new at $280 I bought the 4930k for $550 and plan to do the same when its time for the next upgrade!- Mikasa's Road To Better Processor
No, I'm talking about speeds of 4.8GHz+, which yiou can't really achieve anyway without phase state cooling, liquid nitrogen, or watercooling with insanely high pump rates and massive effective cooling area on radiators Also, which processor do you have? 4.3 is a pretty ambiguous number if I don't know what model it is. 4.3GHz on AMD architecture is about equal to 3GHz on intel's latest architecture (results may vary)- Mikasa's Road To Better Processor
3770k is better at overclocking compared to the 4770k, but if you're not overclocking it to extremes (under water, etc) then I'd go with the 4770k. It's about 10% faster than the 3770k and has a few added instructions that are extremely beneficial to the processors speed and functionality how else do you think computers are made?- I could be going to jail for [ 1 - 5 Years minimum ] - If Found Guilty -- Street Robbery x2 & Assault x2
tl;dr OP is nothing more than a teenage girl posting her tits on the internet begging for attention. pls move on- Ford Crown Vic
for 250 horsepower in ~2000, that number is actually pretty high. Actually the mileage is 17/25 from all the sources I see.- Ford Crown Vic
It's a v8, what were you expecting?- multiple ints
It's against convention to have more than one return per method. The reason of that, it to make debugging easier. You don't have your methods randomly exiting at different lines.- multiple ints
Because that's what the function returns.- multiple ints
int[] parentIDs = {1,2,3,4}; public boolean parentIsValid() { boolean result = false; for(int i : parentIDs){ if(client.getInterface(i).isValid() || client.getInterface(i.isVisible()){ result = true; break; } } return result; }- multiple ints
Welcome to the wonderful world of arrays and lists! Now every script you make will be filled with them- multiple ints
I disagree. Any SDN scripter should be the same caliber as an official scripter. The only difference is # of scripts one has edit: No I don't expect SDN scripter to know everything. Nor do I expect official scripter to know everything. Should both know at the very least the basics of java? Yes.- multiple ints
But you don't know what arrays and lists are used for? sketchy - mothers got loaded