Jump to content

Mr Asshole

Members
  • Posts

    1383
  • Joined

  • Last visited

  • Feedback

    95.2%

Everything posted by Mr Asshole

  1. Mr Asshole

    QDruids

    I thought you were leaving to competitor site? Lol. Guess it wasn't so successful as you and others thought it would be. I'm releasing a free aio druid bot soon too. If you're making this premium then good luck.
  2. Pm me your Skype if you need help with it. Thanks.
  3. Toph made a free one. Lol. Druids will be swamped. Won't even be worth it anymore. Lol
  4. You could always call the randomize path method once in onStart.
  5. That moment you realize you have no real life friends but online friends only.
  6. Pmed you. Looking forward to hearing from you.
  7. sex with a consenting 12 year old. lol Would you rather suck off your best mate or swallow some poop?
  8. Not sure what other path walker your talking about. This is easier as you can use cory's path grabber to grab the path array and then you can feed it as a parameter. The other path walkers use multi dimensional arrays which isn't practical. How is a multidimensional array not practical? Yours uses an array of Position objects. I'd say the multidimensional array is more practical in that it uses less memory because each "element" stores 2 ints rather than a Position object that is (slightly) larger than 2 ints.
  9. Not sure what other path walker your talking about. This is easier as you can use cory's path grabber to grab the path array and then you can feed it as a parameter. The other path walkers use multi dimensional arrays which isn't practical.
  10. import org.osbot.script.Script; import org.osbot.script.rs2.map.Position; /** * Created by Pain aka Exarticus * Credit me if you use * Walks path, randomizes path */ public class Walk { private Script script; public Walk(Script s){ this.script = s; } public Position[] randomizePath(Position [] path, int maxX, int maxY){ Position [] randomizedPath = new Position[path.length]; for (int i = 0; i < path.length; i++){ int x = path[i].getX(); int y = path[i].getY(); if (maxX > 0){ double d = Math.random() * 2 - 1.0; d *= maxX; x += (int)d; } if (maxY > 0){ double d = Math.random() * 2 -1.0; d *= maxY; y += (int)d; } randomizedPath[i] = new Position(x,y,path[i].getZ()); } return randomizedPath; } public Position getNextPosition(Position [] path){ int dist = 99; int closest = -1; for (int i = path.length - 1; i >= 0; i--){ Position pos = path[i]; int d = script.distance(pos); if (d < dist){ dist = d; closest = i; } } if (closest == -1)return null; int index = -1; for (int i = closest; i < path.length; i++) { if (script.distance(path[i]) <= 16) { index = i; } else { break; } } if (index == -1) { return null; } else { return path[index]; } } public void walkPath(Position[] path) throws InterruptedException { Position nextPosition = getNextPosition(path); if (nextPosition == null)script.log("Could not find path"); if (nextPosition != null && script.canReach(nextPosition)){ script.log("Walking to "+nextPosition.getX()+","+nextPosition.getY()); script.walkMiniMap(nextPosition); } while (script.distance(nextPosition) > 5 || script.client.getMyPlayer().isMoving()){ script.sleep(50); } } } How to use: walker.walkPath(walker.randomizePath(toBank,2,2)); Position[] toBank = new Position[]{new Position(2611,3101,0),new Position(2612,3112,0),new Position(2604,3115,0)}; public void onStart() { try { Walk walker = new Walk(this); startTime = System.currentTimeMillis(); } catch (Exception e) { log("EXCEPTION" + e.getStackTrace()[0]); } }
  11. Wasting your time tbh If you want to make this premium.
  12. Of course leecher. Everything should be free.
  13. Work on your free scripts and fletcher before you do another project. You money whore. Lol.
  14. Mr Asshole

    Trade API

    Stark is going to need this o.o
  15. Isn't this a asian game? How can we read what the game says o.o?
  16. Let's hope you don't run with the money again. Lol
  17. It's the end of the world. he lost his pip. Omg
  18. Book describes you well. Lol so pain claims looting is flawless, he even showed me his live bot and i saw it misclick just like my running bot, he claims im blind?obviously trolling me, the question is what do you define here and there tbh i watched the bot and it misclicks before looting like 40-50 percent of the time. he is so dillusional either that or trolling. he did call himself stupid so i figured he is trolling. How the hell does it misclick? If it misclicked it would of picked something other than the item being looted. I showed you it working. Message me when you buy some new glasses.you FOOL a misclick would be clicking and failing to get loot it doesnt need to get anything else.it didn't do that...AT LEAST I CAN READ AND COMPREHEND ENGLISH...You can't even write a complete sentence. Lol. Hell, I can't even read your sentences without wanting to face palm myself.You can't read the post saying it misclicks? Or you just cannot except that it misclicks.I choose to disassociate myself from people who can't write a correct, understandable bug report. choatic fin posted this. I've ran it for about 20 hours (the updated version) and it does work a lot better. Banking for me works fine and it doesn't over withdraw food anymore (lobsters). The trip counter bug through me off at first. I have seen it tele out from being pked many times so thats good.I still notice that it misclicks here and there but not as much as before. Great Job! Still can't understand? That's different then saying it misclicks 40-50 percent of the time.
  19. Book describes you well. Lol so pain claims looting is flawless, he even showed me his live bot and i saw it misclick just like my running bot, he claims im blind?obviously trolling me, the question is what do you define here and there tbh i watched the bot and it misclicks before looting like 40-50 percent of the time. he is so dillusional either that or trolling. he did call himself stupid so i figured he is trolling. How the hell does it misclick? If it misclicked it would of picked something other than the item being looted. I showed you it working. Message me when you buy some new glasses.you FOOL a misclick would be clicking and failing to get loot it doesnt need to get anything else.it didn't do that...AT LEAST I CAN READ AND COMPREHEND ENGLISH...You can't even write a complete sentence. Lol. Hell, I can't even read your sentences without wanting to face palm myself. You can't read the post saying it misclicks? Or you just cannot except that it misclicks.I choose to disassociate myself from people who can't write a correct, understandable bug report.
  20. Book describes you well. Lol so pain claims looting is flawless, he even showed me his live bot and i saw it misclick just like my running bot, he claims im blind?obviously trolling me, the question is what do you define here and there tbh i watched the bot and it misclicks before looting like 40-50 percent of the time. he is so dillusional either that or trolling. he did call himself stupid so i figured he is trolling. How the hell does it misclick? If it misclicked it would of picked something other than the item being looted. I showed you it working. Message me when you buy some new glasses. you FOOL a misclick would be clicking and failing to get loot it doesnt need to get anything else. it didn't do that... AT LEAST I CAN READ AND COMPREHEND ENGLISH... You can't even write a complete sentence. Lol. Hell, I can't even read your sentences without wanting to face palm myself.
×
×
  • Create New...