Skip to content

Commit

Permalink
Add Aldarin boat
Browse files Browse the repository at this point in the history
  • Loading branch information
FALSkills committed Oct 6, 2024
1 parent ee55133 commit b90e34f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,8 @@ public enum SpecialLocation {
QUETZAL_SUNSET_COAST(1548, 2995, 0),
QUETZAL_THE_TEOMAT(1437, 3171, 0),

ALDARIN_SHIP(1442, 2976, 0),
VARLAMORE_SHIP(1494, 2985, 0)
;

int x, y, z;
Expand Down Expand Up @@ -1363,6 +1365,10 @@ public static boolean handle(SpecialLocation specialLocation){
case QUETZAL_THE_TEOMAT:
return Quetzal.to(Quetzal.Location.THE_TEOMAT);

case VARLAMORE_SHIP:
case ALDARIN_SHIP:
return NPCInteraction.clickNpc(Filters.NPCs.nameEquals("Antonia"), "Travel")
&& WaitFor.condition(10000, () -> Player.getPosition().distanceTo(specialLocation.getRSTile()) < 10 ? WaitFor.Return.SUCCESS : WaitFor.Return.IGNORE) != null;
}

return false;
Expand Down

0 comments on commit b90e34f

Please sign in to comment.