Jump to content

FearMe

Members
  • Posts

    652
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by FearMe

  1. how often are masturbate penis :~)?
  2. how often do you masturbate your penis
  3. how often do you masturbate your penis
  4. what gender are you
  5. It's + 19 + index * 15 actually.
  6. You could get the polygon of the tile and then use color picker, you have to make sure there's nothing in front of it though.
  7. That's checking it twice.. It works fine like this, there's nothing wrong with that lol.
  8. I did that because I want the character to run when it's being attacked so the monster can't keep up. It's not in the code I'm running right now and it's still doing the standing still..
  9. Yeah, it happens in the middle of the path, I always print out the state when I'm testing my script :P. I've had this issue before but I sorted it out.
  10. It's starting to really annoy me, I have to walk through an area where there's aggressive monsters and the walker sometimes just stands still, meaning I get to half health... I don't see where the problem is, sometimes it works perfectly fine but sometimes it stands still for no reason. public void walkPath(Position[] path, int startIndex, boolean reverse) throws InterruptedException { if (script.myPlayer().getPosition() .distance(path[reverse ? 0 : path.length - 1]) <= 3 || script.myPlayer().getPosition().distance(path[startIndex]) > 100) return; if (!reverse) { for (int i = startIndex; i < path.length; i++) { if (!walkTile(path[i], 3)) i--; } } else { for (int i = startIndex; i >= 0; i--) { if (!walkTile(path[i], 3)) i++; } } } public int getPathStartIndex(Position[] path, boolean reverse) { int closestIndex; int closest; if (!reverse) { closest = script.myPlayer().getPosition().distance(path[0]); closestIndex = 0; for (int i = 1; i < path.length; i++) { if (script.myPlayer().getPosition().distance(path[i]) <= closest) { closest = script.myPlayer().getPosition().distance(path[i]); closestIndex = i; } } } else { closest = script.myPlayer().getPosition() .distance(path[path.length - 1]); closestIndex = path.length - 1; for (int i = path.length - 1; i >= 0; i--) { if (script.myPlayer().getPosition().distance(path[i]) <= closest) { closest = script.myPlayer().getPosition().distance(path[i]); closestIndex = i; } } } return closestIndex; } public boolean walkTile(Position p, int margin) throws InterruptedException { if (script.myPlayer().getPosition().distance(p) <= margin) return true; else if (script.myPlayer().getPosition().distance(p) > margin) script.client.moveMouseTo( new MinimapTileDestination(script.bot, p), false, true, false); int failsafe = 0; while (failsafe < 10 && script.myPlayer().getPosition().distance(p) > margin) { if ((script.client.getRunEnergy() > MethodProvider.random(25, 40) || script.myPlayer().isUnderAttack()) && !script.isRunning()) { script.client.getInterface(548).getChild(93).interact(); script.sleep(MethodProvider.random(500, 700)); } script.sleep(100); failsafe++; if (script.myPlayer().isMoving()) failsafe = 0; } return script.myPlayer().getPosition().distance(p) <= margin; }
  11. "You may not use this Website if you are under 18 years of age." pls, doesnt say anything about consent
  12. http://osbot.org/tos.html 11. The Website may not be used by minors under the age of 18 years of age. You may not use this Website if you are under 18 years of age. Before being able to download OSBot software, you must confirm that you are over 18 years of age. You warrant that you will not give such confirmation unless you are over 18 years of age.
  13. How Can Mirrors Be Real If Our Eyes Aren't Real?
  14. :fearme: will be the new smiley, it will be my avatar yes/yes?
  15. Thats if No advertising counts too.
  16. People are also not forced to pay $10 a month, yet they still get better treatment than scripters even though they don't contribute to the community as a whole. inb4theykeepthewebsiterunning Also, what is the point in buying a script source instead of buying VIP? You pay for both, and you're gonna have to maintain it somehow.
  17. Also, there's already a percentage being cut out of our script sales when a VIP buys the script(which doesn't give us any money at all), and now you want to make them even MORE "important" than they already are? I'm seriously pissed about all this bullshit, because it makes no fucking sense. VIPs buy VIP so they can run more bots, which the scripters provide.
×
×
  • Create New...