Jump to content

Tom

Scripter III
  • Posts

    5332
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by Tom

  1. You are never actually executing bank.open(); Also, the sleeps in the USE case aren't needed anymore, remove them. Also reduce the sleep time in the walk to bank
  2. You need check if they can animate, so if(canAnimate()){ use bucket on tap etc }
  3. I was hoping to see some beautiful blonde hair! Right!!?!
  4. All of the text should have a disable options because I don't need no Mirror client shit popping up over my paints
  5. Because you are sleeping for 7 or so seconds, and after that 7 seconds of sleeping, it will try to interact again unless you add some conditions. What I would suggest is called an animation timer, ill post the snippet. long lastAnimation = 0; public void updateTimes() { if (inventory.isItemSelected()) { inventory.deselectItem(); } if (myPlayer().isAnimating()) { lastAnimation = System.currentTimeMillis(); } } public boolean canAnimate() { return System.currentTimeMillis() > (lastAnimation + 2000); } Then you want to have another Case state being animate, preferably the first state so it gets checked first which just checks if the player is animating, and runs updateTimes() if he is. if(myPlayer().isAnimating() && !myPlayer().isMoving()){ updateTimes(); } Also, you should add a break; at the end of your Case:TAKE state.
  6. When you say you added the beta walking class, what are its limitations at the moment, is it the actual web walker?
  7. It was just one of the first things I noticed that could potentially cause problems, I myself didn't know bank.open used a conditional sleep, I thought it was just the interaction then continues.
  8. Because you aren't checking if the bank is actually open yet. You're just telling it to open the bank, then it will immediately execute the code after that. Put a condition sleep in after bank.open() new ConditionalSleep(5000){ @Override public boolean condition() { return bank.isOpen(); } }.sleep
  9. Tom

    ufc 190

    yes detective
  10. Isn't it bad to have static variables? Like static getters and stuff I understand, but static variables just sounds like a bad idea
  11. FYI just because they said 00:30 GMT, or "24 hours from now" doesn't mean they have a timer setup to unban you, they always say it to me and i have to wait an extra hour or so
  12. Tom

    elohell

    Add me, name is "Pornstar"
  13. Hey i've just quoted you so that you get a notification. I like what you've done here, and was about to implement it myself but I came across a few issues, and was looking for some suggestions. As it stands, I pass the entire script into each class, including the gui, I then use the instance to pass values from the GUI back into the main instance so that it can be properly used by other classes. What I have come across is, how I should be accessing this data using the setup you have suggested, should I just pass it all into the DefaultAPI class you have used as an example, and access my extra data from there instead? (Stuff like if the script should bank, what fish to catch, what logs to chop, etc). Thanks, sorry if its poorly worded
  14. Some botters are like 12 and ask there parents to buy them stuff, and if anyone is like me when i was 12, asking for $10 was asking for the belt ya know.
  15. yeah when i can be bothered
  16. You have time to make this thread, but not to reply to my PM's. Get to the fucking chatbox, now.
  17. Tom

    elohell

    Well fuck you might actually be good then
  18. Tom

    elohell

    You on OCE asuna?
  19. Alright, what you can try is using the windows 10 media creation tool: http://www.microsoft.com/en-gb/software-download/windows10 And instead of pressing Upgrade this PC, you create an install for a media device such as a usb (you don't actually need the usb). You will want to save it as an ISO, this comes further into the process, you can't miss it. Once its downloaded the ISO, you can just extract it, and run the setup that is in the new folder it created
×
×
  • Create New...