Jump to content

Swizzbeat

Members
  • Posts

    7986
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    100%

Everything posted by Swizzbeat

  1. Oh one more thing, it seems to sometimes lag quite a lot clicking a MiniMapTileDestination now while I'm walking. What I mean by this is it will hover over a place on the minimap and execute the click a second or two later making it overshoot destinations. If no code was changed let me know because then it's an issue on my side.
  2. Have you guys updated the canReach method for entities yet? It seems to have an issue with always returning false. I think it would be better if for the Entity argument method you guys checked for surrounding tiles instead of the tile it's currently on if the Entity is an instance of RS2Object (since you obviously can never reach an objects position, even though you can get close enough to interact with it). As said before on this thread, amazing job with the interactions. This. I just saw my bot try to withdraw an item and it would only open the menu, click, right click, click, etc.
  3. WOOT thank god for interaction fixes Now I can release all my scripts
  4. Of course they don't release everything, but most of it is sold off in chunks. The irony of them calling out the NSA for infringing privacy rights is that they themselves collect data about everything you do.
  5. They're a fortune 500 company. You don't get that big by doing things "legit".
  6. Please tell me you're joking. Someone as sexy as you cannot be this naive.
  7. http://www.pcworld.com/article/2360441/googles-chrome-email-encryption-extension-includes-jab-at-nsa.html The irony of a company who makes profit off of selling your personal details making fun of the NSA.
  8. Well if he actually has $300k in his bank account knowing how he acts he could start being a little bitch about it.
  9. Can't you get in trouble for site defacement now.
  10. Especially if he's getting paid that's smart on his end. At least it's not browser popups of forum thread every 10 minutes. Wow that gave me a good idea....
  11. why is it everytime i see a post from you my weiner gets hard
  12. idk i think its good
  13. http://www.youtube.com/watch?v=R_jU3FdnNoc such memories
  14. private boolean clickMiniMapPosition(Position position) throws InterruptedException { return mouse.click(new RectangleDestination(bot, new MiniMapTileDestination(bot, position).getBoundingBox())); } FYI the bounding box will return null and you will receive a NPE if you try to use this to walk to a tile not on the current minimap.
  15. Why would you ever want to walk to a tile that you cannot reach? If you're intent on doing this anyway, create a MiniMapTileDestination and click the bounding box.
  16. import org.osbot.rs07.api.WorldHopper; import org.osbot.rs07.script.MethodProvider; import org.osbot.rs07.script.Script; import java.lang.reflect.Field; /** * Created with IntelliJ IDEA * User: Anthony * Date: 6/8/2014 */ public class ModifiedWorldHopper extends WorldHopper { private Script sI; public ModifiedWorldHopper(Script sI) { this.sI = sI; } public void setModifiedWorldHopper() throws IllegalAccessException { for (Field f : MethodProvider.class.getDeclaredFields()) { if (f.getType() == WorldHopper.class) { f.setAccessible(true); f.set(instance of method provider, this); } } } @Override public void hop(int world) { //your world hopping code } } Not sure how to get an instance of the MethodProvider class, but if you are able to this should work with setting your own instance.
  17. private final static int[] XP Switch final and static.
  18. People got scammed? Not at all. BBB got big because the owners were already well known, could market it and had startup capital. A lot more goes into making those sites than you think (especially big ones) which is why there's only one big boy and shitloads of other small ones.
  19. Or can't you just do player/character.getInteracting()?
  20. lol I call bullshit unless it was completely client sided.
×
×
  • Create New...