Jump to content

Dreamliner

Trade With Caution
  • Posts

    1642
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by Dreamliner

  1. No need to set it to 0 every time you move. Once you start moving, you won't stop unless you get interrupted or something (causing the while loop to fail anyway). Considering how many times this portion of the code is run O(n^2), this should be taught in the tutorial to at least have code efficiency running through their minds while coding Also, if if kicks you out of the loop, a normal player would click again anyway. I've never once in my RS play time not try to click again after 2 seconds of lag
  2. while (failsafe < 10 && myPlayer().getPosition().distance(p) > 2) { sleep(200); if (!myPlayer().isMoving()) failsafe++; }No need to set it to 0 every time you move. Once you start moving, you won't stop unless you get interupted or something (causing the while loop to fail anyway).Considering how many times this portion of the code is run O(n^2), this should be taught in the tutorial to at least have code efficiency running through their minds while coding
  3. AMD GeForce Tesla K-eleventybillion
  4. haha nice photoshops, but for some reason every time i start it up it's at 1000
  5. First week of January is over. What's going on? Where's the communication?
  6. I had it running for a total of about 6 hours yesterday - I don't keep it on long - mostly an hour at a time or so. Didn't screencap my 2 hour one yesterday.
  7. Yesterday I rewrote my banking function and am now achieving ~1600 bars made per hour or 85k mage xp an hour!
  8. If they refund me in store credit, that's what I'm doing.
  9. I don't want store credit! I want the money that was in my bank account!
  10. I cancelled VIP 2 months ago and I am still getting charged by it!!!! Thanks to you guys, my account overdrew. So now I've paid 9.99 + $30 FOR YOUR MISTAKE This happened last month too, and raflesia told me that it was fixed, yet I am still getting charged. Either refund my $10 + $30 over draw fee or I am calling my bank and reporting fraud.
  11. Seems like the bot is full of Threads - hope it works out well
  12. meh, sign me up. But you're not sexy.
  13. setName(string) is a setter and getter. It is actually good practice to use those. Eclipse adds them that way when you select add getters and setters for a method As said before, I usually abbreviate classes and then add a number or something memorable if I have more than one. writing db instead of documentbuilder1 5 times is way easier. Plus in my code, you can clearly see what the variable name comes from. db is obviously an abberviation of DocumentBuilder. It's not bad coding, it's actually good coding. And I was planning on putting an initializing thing inside of it then I realized I didn't have to. All methods - especially in c++ require constructors and destructors for adequate memory management. and if you know how to code, you should be well versed to follow what the variables mean. It seems to me that you jumped to the bottom of the code instead of reading all of it and confused yourself.
  14. I have no users. I released my source out of the kindness of my heart.Care to give me pointers how to make it better?Look at the system properties. There are few differences in how the path to the file looks between the different OS This would be useful http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html Not that, inefficiencies. What do you mean by serialize and deserialize objects? You can save the User object you have created to disk in the exact state it is in and then deserialize it later on and it will be the same as when you serialized it. Interesting - I looked into it. Am I able to store it in readable form? From what I see, it gets saved as a bytestream and I use the xml data for other applications as well.
  15. Thank you Maxi, this is the kind of customer interaction that we need on the forums. Keep up the good work.
  16. no, this is a problem with maxi's break taker which has been going on for the past 2 months. either disable the break taker or manually log in before starting a script. The error is due to your player is null until you log it. It checks it before it's initialized. Yet another wonderful thing that hasn't been fixed and i've been complaining about for the past few months. whoopie
  17. I have no users. I released my source out of the kindness of my heart.Care to give me pointers how to make it better?Look at the system properties. There are few differences in how the path to the file looks between the different OS This would be useful http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html Not that, inefficiencies. What do you mean by serialize and deserialize objects?
×
×
  • Create New...