Jump to content

Problem with fuzziness in local walker. Need to walk to very specific spots


Recommended Posts

Posted

I have the lines:

 

Position place1 = new Position(playerPos.getX() - 1, playerPos.getY() - 1, playerPos.getZ());
LocalWalker walker = script.getLocalWalker();
walker.walk(position)


Position place2 = new Position(playerPos.getX() + 1, playerPos.getY() + 1, playerPos.getZ());
walker.walk(position);


Position place3 = new Position(playerPos.getX() + 1, playerPos.getY() - 1, playerPos.getZ());
walker.walk(position);


Position place4 = new Position(playerPos.getX() - 1, playerPos.getY() + 1, playerPos.getZ());
walker.walk(position);


However, the player never walks to these exact locations. is there a way using the OS bot api to walk to these exact positions?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...