Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/29/13 in all areas

  1. Hello guys! I have won the game "Deadspace" thanks to @Code. It is worth about 8$ Since summer is almost over and I dont see me playing that game anyway : why wouldn't I just give it away!? I have a key which hasn't been used. All you have to do is : 1. Like this post 2. Choose a number between 1-30 and post it 3. Add a little text on why you want the game 4. Wait The contest will end next week ! I will use a random number generator and will check if you liked the post. If not you can not particpate. DISCLAIMER: YOU MAY CHOOSE A NUMBER THAT HAS BEEN TAKEN ALREADY. IF THAT NUMBER WON I WILL CONTACT ALL THE MEMBERS WHO PICKED THAT NUMBER AND WILL GENERATE AGAIN.
    13 points
  2. Shutting this down while we investigate a few things. It may take hours, but it's for the better good.
    7 points
  3. CURRENT STATUS: ONLINE Here are a few simple questions to ask yourself to determine whether the client is down or not: Is your internet working? If you are reading this then most likely it is working fine. Go here if you cannot tell if your internet is working. Has the client ever worked for you before? If your answer is no, try downloading the latest JDK from here If that doesn't work, try searching the forums. If you find nothing on the forums, go to chat and ask for some help. Have you downloaded the latest version of the Client? If you are unsure, try downloading it again! You can do that at the top of the community page by clicking "Download" Or going to http://osbot.org/ and scrolling down and click "Download" If you have answered yes to all of these, and the client is still not working, it is down. Please allow a few hours as the development team is working hard to fix the issues and get the client up and running again.
    3 points
  4. To Whom It May Concern: This is a letter about stuff. Sincerely, The OSBot Team
    3 points
  5. Now that we have our awesome Chatbox Assistants, there should be chatbox announcements. The announcements should be lines of text that never leave the screen explaining important things such as "The OSbot client is currently down. Please be patient as our development team is working hard to get it running again. Thank you." This would definitely be helpful for all of the chatbox users and assistants because currently when the client does happen to be outdated, there are 300 questions a minute on when the client will be back up. Post if you support.
    2 points
  6. I've already noticed the issues. I should have tested first lol.
    2 points
  7. Closing this topic. The thread was hidden from a wave of reports wanting it to be removed, not to mention fake URL's do cause panic attacks at times and will not be tolerated, I am currently unarchiving the spam rules and they will be updated shortly. No need to direct hateful comments towards the staff, and I will take your forum suggestion into consideration, baby blue and binkies are kind of my style Thanks.
    2 points
  8. Wrote it in like 20 min as I needed it to record a lot of paths. Source Download https://www.dropbox.com/s/umh4xdkjui3ave4/PathRecorder.jar
    1 point
  9. http://orteil.dashnet.org/cookieclicker/ just test it holy shit its great .
    1 point
  10. 1 point
  11. Doesnt interact with sandwich lady / genie (100% sure). Probabbly all others ( Rich Turpentine / strange plant / drunken dwarf)
    1 point
  12. A quick little tip to all those newcomers/leachers, when Osbot client says [OFFLINE] this means that the client is in fact offline, not online. I hope this helped, more tips and tricks coming from me soon.
    1 point
  13. 1 point
  14. xzibit: yo dawg we heard you like when your client is offline so we put your client offline so you can be offline while you are offline
    1 point
  15. this should be in real life discussion cause its real life jst saying but yeah....... miley cyrus is meh........
    1 point
  16. I know you want it, I know you want it, BLUUUURRREEEDDD Lines From shity to good
    1 point
  17. 1 point
  18. Girls gone wild Girls Gone Retarded
    1 point
  19. pick a number I already have the game on origin & xbox
    1 point
  20. Gl to everyone (Not entering btw :p )
    1 point
  21. 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!
    1 point
  22. Can someone give this guy a medal
    1 point
  23. 1 point
  24. I feel like the only reason I would feel uncomfortable with Osbot, would be if I didn't have access to chat with them whenever, and or they weren't ontop of things. Os is awesome, They get scammers banned pretty much instantly. I would trust any admin here with my account info. Just cause.
    1 point
×
×
  • Create New...