Everything posted by Dreamliner
- Breaking Bad
-
:::HOSTING BLACKJACK ON RUNESCAPE:::
Absolutely it does. He's running a game with 50/50 dealer/player odds.
-
DMT
I heard you have to boof it for double the effects.
-
I May have found a bug
lolol, the good ol tamper data trick. Got so many ebooks for free that way
-
The max amount of 07 GP you would trust the person above you with.
none, because you're all god-damned scammers
-
Custom pc
oh, ok, well give this a read http://www.hardwaresecrets.com/article/Everything-You-Need-to-Know-About-The-Motherboard-Voltage-Regulator-Circuit/616/4
-
Custom pc
overclocking == performance.. that's why people do it
-
Custom pc
http://www.newegg.com/Product/Product.aspx?Item=N82E16813131823 1. Power Phases - the more you have the more stable the overclock will be (and life of CPU kinda) 2. Memory speed Plus the Z77 chipset works fine with the E3 Ivy's. You wont be using any virtulization technology or anything so other server specific chipsets don't really matter.
-
Custom pc
Looks pretty good, but I personally would spend a little bit more on the motherboard
-
Best Gaming Laptop for the Price?
Gaming and Laptop don't go together. Gaming = heat. Laptops aren't good with heat.
-
Count to 50 before a staff post!
14
-
Count to 50 before a staff post!
11
- Mikasa this u bro?
-
Massive Script Source Code Dump (OLD CLIENTS)
Oh my god, idungeon was written in one file -.-
-
cloudflare acting up
That fixed it, however I still get it on the homepage.
-
cloudflare acting up
I get this anytime I try to send a message or read my messages. What happened?
-
Name Creation! Finally be cool!
i ned 1 dat shows n3rds how much i have secks with their moms!!!!
-
Count to 50 before a staff post!
16
-
Count to 50 before a staff post!
14
-
Count to 50 before a staff post!
24
-
Count to 50 before a staff post!
21
-
Count to 50 before a staff post!
28
-
So I have a spare PC
Maybe if you intend to pay more for electricity than buying the damn coins. ASIC's exist for a reason And I doubt he has a 7950 in it, cause that's the most profitable for scrypt coins
-
simple minimap walker
public void walkTowardPosition(Position p) throws InterruptedException { if (this.myPlayer().getPosition().distance(p) > 15) { int d = random(12, 16); double scale = (double) d / this.myPlayer().getPosition().distance(p); Position mypos = this.myPosition(); int dx = p.getX() - mypos.getX(), dy = p.getY() - mypos.getY(); int x = mypos.getX() + (int) (dx * scale), y = mypos.getY() + (int) (dy * scale); Position dest = new Position(x, y, mypos.getZ()); MouseDestination md = new MinimapTileDestination(this.bot, dest); if (!this.client.getDestination().equals(dest)) { this.client.moveMouseTo(md, false, true, false); } if (this.myPlayer().isMoving()) { int degrees = (int) Math.atan2(dy, dx); this.client.rotateCameraToAngle(degrees); } sleep(random(600, 1200)); } else { MouseDestination md = new MinimapTileDestination(this.bot, p); if (!this.client.getDestination().equals(p)) { this.client.moveMouseTo(md, false, true, false); } } }I found myself needing to check for objects while I was walking (performance reasons) so I created this.Basically it projects your position on a straight line and tries to traverse it in increments of 12-16 tile intervals (size of minimap) Works pretty flawlessly. Edit: it may be confusing, but this must be called a bunch of times to work. It basically clicks in the spot on the minimap that it calculates when it's called.
-
Is there a client log?
There should be a dump file somewhere in your java files or appdata, etc. Anytime java crashes it creates a hs_err_pid_####### file which contains the info for the dump. try running osbot with the parameter -XX:DumpPath=/path/here If you're trying to get post count, try to post more productive posts.