Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. T

    Question How can I determine if a tile is walkable?

    How can I determine if a tile is walkable? So that you can walk on the tile. The tile might be reachable but not walkable.
  2. T

    Implemented Add Area.equals

    Ofc there is a work around, but its kinda annoying. I was just posting a suggestion to make this easier.
  3. T

    Implemented Add Area.equals

    Those are true because class Integer overrides the equals method: public boolean equals(Object obj) { if (obj instanceof Integer) { return value == ((Integer)obj).intValue(); } return false; }
  4. T

    Implemented Add Area.equals

    I meant this: public static final List<Area.Rectangular> nodes = Arrays.asList( new Area.Rectangular(new Coordinate(4678, 3439, 0), new Coordinate(1678, 3537, 0)) ); println(nodes.contains(new Area(new Coordinate(4678, 3439, 0), new Coordinate(1678, 3537, 0))))...
  5. T

    Implemented Add Area.equals

    If you dont overrride it you cant use it like arraylist.contains(area) returns false
  6. T

    Implemented Add Area.equals

    it isnt implemented?
  7. T

    Implemented Add Area.equals

    Suggestion: add equals method for Area class You have toString but no equals?
  8. T

    Resolved GameObjects.getLoaded() range

    In what range will I get the objects if I use GameObjects.getLoaded()? like 100x100?
  9. T

    Question [OSRS] Camera movement

    Could you post a code snippet? Or is it too big?
  10. T

    Question [OSRS] Camera movement

    Does the bot in OSRS use keys or mousewheel to rotate the camera?
  11. T

    Question Path through obstacles

    @SlashnHax Coordinate: 3279, 3185, 0
  12. T

    Question Path through obstacles

    I'm trying to walk to a certain point. But on the route contains one door. Is there something to automatically open the door? private void walkToFurnace() { Path path = Traversal.getDefaultWeb().getPathBuilder().buildTo(Random.nextElement(Constants.FURNACE_AREA)); if (path != null) {...
  13. T

    Request Human like interaction

    I don't mean extreme spam, maybe +2-7 clicks max? You are doing it subconsciously
Top