Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Support.
  2. Not sure what you are asking for. Here's a simple timer class though: /** * * @author Bjorn Krols (Botre) * */ public final class SimpleTimer { private long st; public SimpleTimer() { start(); } /** * Starts the timer. */ public void start() { st = System.currentTimeMillis(); } /** * Restarts the timer. */ public void reset() { start(); } /** * @return The elapsed amount of seconds since the timer was started. */ public long getElapsedSeconds() { return (System.currentTimeMillis() - st) / 1000; } /** * @return The amount of n/s since the timer was started. */ public double getPerSecond(double n) { return n / getElapsedSeconds(); } /** * @return The amount of n/h since the timer was started. */ public int getPerHour(double n) { return (int) (getPerSecond(n) * 3600); } }
  3. 988
  4. You should learn to listen when smart, beautiful, strong men try to explain you stuff.
  5. Do you remember when you told me the GE was going to make herblore training easier and I told you the contrary? I sure do. You are part of the "they".
  6. 931
  7. 927
  8. 921
  9. I think you're looking for a signature, not a script
  10. 918
  11. Yeah this is so stupid
  12. Welcome to Javaland
  13. Basic pls
  14. Just keep in mind you're playing a big game, with a lot of players who are a lot smarter and informed than you, with your money. I'm not saying you shouldn't do it because I don't know how good of a player you are / could be and since it's a big game there are a lot of rewards to be shared, but be cautious. Know your place as a player in the game. A true investor is a psychologist, mathematician, sociologist, economist, data analyst, historian, etc... not a gambler, if it ever feels like you're gambling: quit immediatly, even if you're down.
  15. Source at http://s000.tinyupload.com/index.php?file_id=03395462414632762780 is clean. Nice script
  16. F2P + GE seems to be working out alright after all :p
  17. Hello sheriff
  18. 916 oli
  19. The most sexy title of 2015, minus the "@".
  20. You can't skip it anymore.
  21. 913
  22. They will block your IP after 5-10 accounts :p
×
×
  • Create New...