Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. Version 1.0.7 pushed to the SDN - Updated the names of several barrows items, as well as related loot and repair detection ______ Jagex had changed the names of most of the barrow items in a recent update; which was conflicting with several of the scripts features.
  2. There are already multiple routes that support using an altar on the way to the bank, in lumbridge or in your POH. The prayer thing is something that I considered quite a bit, and have gotten the suggestion before. Basically the initial reasoning for doing it like it is now is to spend as little time as possible inside the tomb, avoiding the drain. But since you guys are persistent, I suppose I can try implementing some last second prayer toggling. As for the talking thing; I'm not so sure that would be a good idea. Might even make it easier to detect that you're a bot; I have nothing to base that on, though :E. But I don't think this will be implemented Thanks for the suggestions I'd be open to add XP tracking; but where would you want it? If I do add it, it would probably show xp for all combat skills (even those not used) and the xp rates are going to be rather low :E. Not sure what happened with the torags body; I reckon I've had torag body show in the loot tracker before. Let me know if it occurs again, though I'm not sure what you mean Just to clarify here. Would you want the route to use the lumbridge bank before using the ring, or the canifis bank after using it?
  3. It'd have to be after my finals; so.. after christmas Most likely a misconfiguration in gear setup; try to enable debugging and see what type of output it gives when stopping If this does not help fix the issue, send me a PM and I can help you on Skype
  4. Once you've added the script (follow the link in the OP), it should show up on the scripts page that appears when you hit the 'run script' button on the client.
  5. FrostBug

    FrostHunter

    You can get a refund, but you have to post here, as I don't have the authority to do it myself
  6. Add me on skype and I'll assist. Probably an issue with script settings
  7. Please add me on skype (see my profile) It'd help me locate and fix the issue if I can ask a few questions
  8. Very impressive proggy ;o Sorry to hear you got banned, tho
  9. As far as I can tell there are still people using it
  10. You'd need to look at where the actual accessor grabs it from, and modify the source. Reflection would be the easier choice.
  11. Your primary class extending Script has MethodProvider access. Eg. you can call getSkills(), getBank() and so on. Or you can access their instances (skills, bank etc.) skills.hoverSkill(Skill.HITPOINTS); localWalker.walk(point)
  12. Seriously though. If you want your script be to be stable, always assume that any action has a chance to fail. As a result of this, doing multiple things successively without checking what the current situation is, is generally a bad idea. Example (pseudo): bank.open(); sleep bank.withdraw(); Assume that even after the call to bank.open(), the bank is still not open. An action can fail as a result of multiple factors. Most often being misclicks (caused by camera movements or whatnot), random event interrupt (Yes, they still interrupt your current action), lag or delays. For this reason, it's common practice to return from the main loop after every action, repeating the same action if it was not completed successfully in the previous loop.
  13. Oh wow, that is the most unstable code I have ever seen :E. I don't even know where to start 1. NEVER assume that an interaction or any other type of event will complete successfully.
  14. try using getTime() on the message object, and subtract from current time (System.currentTimeMillis()), if its been more than like.. 1000 ms, then ignore it?
  15. open CMD 1. Compile your source files into .class files "javac somefile.java" This will generate a file with the same base name, but .class extension. This is the compiled source. Next, to add them to a Jar archive, run this command: "java cf YourScriptName.jar mainclass.class otherclass.class thirdclass.class" Basically after the jar name you list all the compiled files seperated by spaces. This will create the Jarfile. Be sure to run the commands with full path, OR from the directory containing your files. "cd" is the command to change directory in CMD
  16. You can sleep when you're dead
  17. Pushed version 1.0.6 to the SDN - Now properly detects full-inventory messages in all equipment swap scenarios
  18. Netbeans / IntelliJ Stay away from BlueJ. Far away.
  19. You might say that he's no stranger to lovely deals
  20. O wow, I've seen a lot of interviews from that guy actually. He's an artist himself, so he must know what he's talking about Nicely done m7.
×
×
  • Create New...