Jump to content

fre024

Members
  • Posts

    68
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by fre024

  1. fre024

    findPath

    Can someone tell me what i am doing wrong? LinkedList<Position> path = LocalPathFinder.findPath(new Position(xxxx, xxxx, 0)); error: cannot make a static reference to the non-static method also how do i walk a path? Untill now i used my own method. Is there a pathwalking method in the API, because i cannot find it Ty
  2. I use an area that is 1 tile. I also tried walking to the specified position with the same result, 2 tiles away from endposition. Default setMinDistanceTreshold is set to 2 for every walking procedure right? I want to set this to 0.
  3. and how do i make it walk to that exact position? it always stops 2 tiles from the position it needs to be can i use:
  4. Hello all, i am trying to change the setMinDistanceThreshold but it keeps giving me errors, no matter what i try STATUS: SOLVED i use another method more accurate to the last tile. Event.WalkingEvent(AREA.getRandomPosition(0)).setMinDistanceTreshold(0); map.walk(AREA);
  5. I have the same issue with this client version.
  6. have you read this tutorial? http://osbot.org/forum/topic/48602-osbot2-event-node-driven-script-skeleto/
  7. i run my scripts with 500 ms wait in the onLoop
  8. very nice upgrade, looking forward to make scripts for this client.
  9. Cannot login to client again. They changed it back so only developers can use the client of osbot2?
  10. Would this not be better, because it won't give false positives? private boolean interactWith(String Name, String Interacion) throws InterruptedException{ RS2Object Next = null; Next = closestObjectForName(Name); if(Next != null){ return Next.interact(Interacion); } return false; }
×
×
  • Create New...