Everything posted by Dreamliner
-
First Thing That Comes to Mind.
genitals
-
Market Mod
Introducing OSBot, now with more corruption than the US government!
-
Where are you at (Academics)
I did terrible in highschool, but I got into a top tier engineering school. I'm currently a senior in mechanical.
-
To everyone who hated on me, talked shit, and flamed me. IN YO FACE!
This is completely unnecessary.
-
Music thread
That was an insightful post
-
Hacked again, lol sad.
A factory reset replaces and reloads all OS files starting fresh. Which is why you need the disc to do it.
-
Hacked again, lol sad.
It is well known that it is possible for a script to retrieve information.
-
this is legit game.
Game.Earn(10000000000000) lel
-
BETA v1.7.37/38
- this is legit game.
This is awesome.- Returning a rectangle from the mouse cords
You mean 20 and 20- Type the Users Name above you with Elbows
suyp;edrfd fgikrfl i win- Music thread
Rules of the thread: you must listen to the music the post above you posts. Then you get to post something you like.- 50 or 60 attack?
- 20m OSGP for $40.00 bitcoins
I wish you luck, they've been on an upward trend for about 2 weeks- Reading Script Settings/Presets
You should replace for (int i = 0; i < LineLimt; i++) { lines.add(i, br.readLine().toString()); } with String line = null; int i = 0; while ((line = br.readLine()) != null) { lines.add(i++,line); } This eliminates having to know how long the file is!- Paint Data Updater
Hello OSBot. Recently, I've been working with paints and noticed that with paints that require large calculations and things of that nature, the paint actually lags the bot. The solution is to use a thread which updates the data periodically. For instance, say you want to display range xp: One might calculate how much range xp is gained per paint update. BAD. public void onPaint(Graphics g) { drawString("Range XP Gained: " + this.client.getSkills().getExperience(Skill.RANGED) - this.INITIAL_RANGE_XP,0,0); }You can see that it calculates this EVERY time paint is called. I believe it is based on the current FPS.The correct way to do it is using a thread. Here is your onLoop() - public void onLoop() { if (this.start == false) { this.paintUpdater = new PaintUpdater(this.client, this); this.paintThread = new Thread(this.paintUpdater); this.paintThread.start(); this.start = true; } return 1000; } Here is your thread class - public class PaintUpdater implements Runnable { public Client client; public Script script; public int INITIAL_RANGE_XP; public int range_xp_gained; public boolean run = true; public PaintUpdater(Client c, Script s) { this.client = c; this.script = s; this.INITIAL_RANGE_XP = c.getSkills().getExperience(Skill.RANGED); } public void run() { while (this.run) { try { update(); Thread.sleep(200); } catch (InterruptedException e) { } } } public void update() { this.range_xp_gained = this.client.getSkills().getExperience(Skill.RANGED) - this.INITIAL_RANGE_XP; } public int getRangeXPGained() { return this.range_xp_gained; } public void stop() { this.run = false; } } and here is your paint - public void onPaint(Graphics g) { drawString("Range XP Gained: " + this.paintUpdater.getRangeXPGained(),0,0); } The rest is up to you to make it work how you please!- Dreamliner's Trading Assistant
It's not going to be until I get an answer if I can put it on the SDN.- Dreamliner's Trading Assistant
Yes it does.- WARNING: August 23, 2013
I hope it was an enjoyable read- WARNING: August 23, 2013
Great, you don't sell gold. Lets bring up another point: Do you bot? I'm sure you do. If there was no integrity in this game well.. You wouldn't be playing, huh? If your skills meant nothing? Yeah you see my point. I may be a username on a message board, but I'm still a real life interaction with you. By posting like a jackass on the forums, I can tell you're going no where in life. When you don't sit down and think about things, you make rash decisions (Which im sure you make a ton of). So I'm just going to sit here and laugh at the thought of you talking to a potential employer with no critical thinking skills. Enjoy your life. Hopefully I won't have to support you through my taxes. Love, Dreamliner- WARNING: August 23, 2013
If theres no integrity, who buys your gold. If there's no bot busting your competition for gold selling goes up. You need to bone up on your critical thinking skills. I feel sorry for you.- WARNING: August 23, 2013
my bots hop worlds when anyone is near. I think I'm in the clear- A quick word of caution
Scripts can't be edited unless you redownload them bro. He is talking about since when he checked. As in your can't be totally sure about his post.- A quick word of caution
No, it is for the RS account you are logged in with. It states it in the API - this is legit game.