Everything posted by Dreamliner
-
Osbot On A Samsung Tablet?
If it has java and windows
-
Count to 50 before a staff post!
post #1337
-
Some banking methods
Then why the hell are you even posting? OT: Great methods. Mine look similar for my fast actions with banking/items
-
Help me decide for my future gaming pc!
How would the 8350 beat the 3770k in streaming with less processing power? The 8350 is only capable of ~90Gflops The 3770k is capable of ~120 Gflops. So no, the 8350 is not better at streaming (are you talking about watching 1080p movies??). The only thing it would potentially be better at is rendering using all 8 cores, and even that is a huge stretch. Intel has very strong single core performance. The cost associated with CPU's is how much power you can cram into one chip. That's why servers use multiple cheap CPU's. Hell, I'd run two fx9590's if I could. But I'm perfectly happy with my 6 core 4930k Also that video is hugely flawed. The GPU was bottlenecked the entire time. They should have used either a 7970 or 780
-
OSBot 2 Private BETA Information!
tl;dr this will always stay in beta. OSBot 1 is still in beta..
-
Help me decide for my future gaming pc!
You have ABSOLUTELY no idea what you're talking about.
-
[Guide] How to properly introduce OSBot 2
Step 1: Put a bug report system into OSBot 2. Step 2: Release OSBot 2 to the public. Step 3: Leave OSBot 1 usable until OSBot 2 is stable. Step 4: ???????? Step 5: Profit from something that would have been released 3 months ago if they hired more people to help write the client.
-
OSBot 2 Private BETA Information!
OSBot 2 Private ALPHA* Information! FTFY http://en.wikipedia.org/wiki/Software_release_life_cycle#Alpha
-
Help me decide for my future gaming pc!
I also have the i7-4930k with 7970's in crossfire, no problems at all
-
Help me decide for my future gaming pc!
AMD is cheap for a reason. But their graphics cards are pretty good for computational stuff.
- Toph NMZ | Best Combat XP In the Game!
-
IM SERIOUS
You remind me of the kids whose daddy bought them an Audi.
-
IM SERIOUS
What do you have that's so secretive that - a private message can't handle? So what you donated $100+, it's not like you're making decisions about the bot anyway.
-
download wont work
use a different browser
-
How can I get the actual code for some scripts?
So? they can't obf. the osbot calls
-
How can I get the actual code for some scripts?
download jd-gui open the jar and view the source.
-
Best combat scripts out atm?
Nope, I made it
-
Best combat scripts out atm?
- Chance of being banned if I...
what mode do you do this on?- V.I.P Give Away!
I SHOULD WIN BECAUSE I LIKE WINNING THINGS. I ALSO LIKE TURTLES.- Toph NMZ | Best Combat XP In the Game!
- Gmaul rusher help. (Gmaul problems)
You need to wait for your gmaul to hit the opponent once, then spam click the spac bar- Toph NMZ | Best Combat XP In the Game!
I have tested it extensively.. if 30m combat xp counts I'll give you the rundown - it wait for your animation if YOUR weapon - 1658 for whip I think. On that animation, it turns prayer OFF Then if does whatever else the script needs to do Then it calculates how much time left until your weapon hits again - 600ms (tick) sleeps the calculated time - Turns prayer on loops back to beginning The art of flashing, your bonus prayers need to be on BEFORE you attack. Once you attack you can turn them off. Flashing protect prayers, they have to be on BEFORE the monster animates, then you can turn them off. They only need to be on during the tick which calculates damage given/taken- Toph NMZ | Best Combat XP In the Game!
I'd suggest you add an option to flash piety/str prayers int x = 0; while (this.myPlayer().isUnderAttack() && this.client.getMyPlayer().getAnimation() != this.animation && x < 200) { sleep(25); x++; } long time = System.currentTimeMillis(); if (this.prayerTab.isPrayerOn(Prayer.PIETY)) { togglePiety(true); } /* . . . . */ if (this.client.getSkills().getCurrentLevel(Skill.PRAYER) > 0) { mouseToPrayer(); // sleep int sleep = (int) (this.delay - random(600, 700) - (System.currentTimeMillis() - time)); // prayer on if (sleep > 0) { sleep(sleep); if (!this.prayerTab.isPrayerOn(Prayer.PIETY)) { Player p = this.client.getMyPlayer(); if (p.getFacing() != null) { if (p.getFacing().isFacing(p)) { togglePiety(false); } } } } } private void togglePiety(boolean force) throws InterruptedException { // 271 55 this.openTab(Tab.PRAYER); Thread.sleep(50); Rectangle r = new Rectangle(553, 401, 30, 30); MouseDestination md = new RectangleDestination(r); Point p = this.client.getMousePosition(); boolean clicked = false; if (!(p.x >= r.x && p.x <= r.x + r.width && p.y >= r.y && p.y <= r.y + r.height)) { this.client.moveMouse(md, false); sleep(50); } else { this.client.clickMouse(false); clicked = true; } if (force && !clicked) { this.client.clickMouse(false); } }- What are the chances?
just be smart. bot in not very populated areas. I did my 99 range at caged ogres and had the bot hop every time someone logged in at the cage. - Chance of being banned if I...