Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. If you class extends script. Be aware that we have a settings global field. So if you made an array of ints named settings rename it and you should not get an error
  2. Joseph

    ..

    , Did you see what I did there fook your periods
  3. Joseph

    Bank was made

    I feel you I would brag too. Pvm fuck the world :P
  4. You guys don't read client uplates. Alek updated the world hip to avoid those skill world's http://osbot.org/forum/topic/80609-development-build-osbot-23103-patches-pending-stable/#entry895770
  5. put a log between each line and see which line was last called. Anything under that is where the problem is coming from
  6. i was not really sure what to call it, but here the method i use for Divine utility. Method returns a position under your mouse. public Position findUnderMouse() { if (getMouse().isWithinCanvas()) { Area area = myPlayer().getArea(25); area.setPlane(getMap().getPlane()); for (Position pos: area.getPositions()) { if(pos.isVisible(getBot()) && pos.getPolygon(getBot()).contains(mouse.getPosition())) { return pos; } } } return null; }
  7. My OG name was Josédpay

  8. im interested check your pm
  9. 1. what mysteryy said. 2. what rocket said, you should cache it into their osbot > data > [your new folder]
  10. once you ask for a trial and the user give you access to it. You should refresh your script loader unless your opening up a new bot.
  11. Your script looks fine in general. The only thing is if you don't want to do so many skill calculations. You can use the experience tracker. It pretty much does all that except give you the start lvl nor the start exp.
  12. It's you area class make sure you set it up correctly. If you want get the area. Grab all its tiles. Then display the area on the screen. That's how I would do it. Or do a simple log check if you area within the area.
  13. You don't get it then -.-ItemContainer is a abstract class that have methods that other class extends. So rather then typing those same method inside each class again. they just simply extend ItemContainer. Now that we have enough classes extending ItemContainer. We could use oop rather than genetics. You just simply grab and feed an instance of the class. Then you can do whatever you want with it. Genetics is used more for our filters http://osbot.org/forum/topic/63619-oop-tutorial/
  14. Log the stack trace or the error log. I see you are loving the word npe. Are you sure it's a npe and not anything else
  15. Joseph

    noob

    I think world hopper used the new install world hop lol
  16. Ugly lolGet inventory(). Get item(string array).interact (action)
  17. All he needs to do is update the old area class and it should work again
  18. I'm calling it right now. It get banned after it hits yes or magic. Also are you saying my friends chop and drop is not a good script
  19. I could tell by the area you made. It gave you my format ;)Auto path collection give you a random distance. Displays it on the paint. With that being said it randomize when it collects a path. Also removing a tile all you do is right click the tile on the main screen.
  20. Apa was talking about divine utilities as the script that records paths. I'm going to update it soon Op for the failsafe I suggest making a fail safe timer. On the onloop you can throw in a simple method that just reset the timer to 0 whenever it animating and not fighting. Within that method you can add the if statement. If it passes the time frame end script. This doesn't not track your experience gain. But your players activity. Remember give the timer a decent amount of time. Cuz I know you have to walk to bank and back. Enjoy
  21. Go to the store and check it out.Ask around for trials so you can test them out and buy the one that make you happy
  22. Nope only a class can extend only one class. You'll have a script class and a sepreate jframe class
×
×
  • Create New...