Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ public enum BankLocation {
CRAFTING_GUILD(new WorldPoint(2936, 3281, 0), true),
DARKFROST(new WorldPoint(1527, 3292, 0), true),
DARKMEYER(new WorldPoint(3604, 3366, 0), true),
DEEPFIN_POINT(new WorldPoint(1935, 2755,0), true),
DEEPFIN_MINE_MID(new WorldPoint(2011, 9186,0), true),
DEEPFIN_MINE_EAST(new WorldPoint(2094, 9197,0), true),
DORGESH_KAAN_BANK(new WorldPoint(2702, 5350, 0), true),
DRAYNOR_VILLAGE(new WorldPoint(3093, 3245, 0), false),
DUEL_ARENA(new WorldPoint(3381, 3268, 0), true),
Expand Down Expand Up @@ -98,7 +101,8 @@ public enum BankLocation {
SHILO_VILLAGE(new WorldPoint(2852, 2954, 0), true),
SOPHANEM(new WorldPoint(2799, 5169, 0), true),
SULPHUR_MINE(new WorldPoint(1453, 3858, 0), true),
TAL_TEKLAN(new WorldPoint(1243, 3121, 0), true),
SUNBLEAK_ISLAND(new WorldPoint(2195, 2314, 0), true),
TAL_TEKLAN(new WorldPoint(1243, 3121, 0), true),
TREE_GNOME_STRONGHOLD_NIEVE(new WorldPoint(2445, 3424, 1), true),
TZHAAR(new WorldPoint(2446, 5178, 0), true),
VARLAMORE_EAST(new WorldPoint(1780, 3094, 0), true),
Expand Down Expand Up @@ -259,6 +263,18 @@ public boolean hasRequirements() {
case PRIFDDINAS_SOUTH:
// Requires Song of the elves to be completed
return Rs2Player.getQuestState(Quest.SONG_OF_THE_ELVES) == QuestState.FINISHED;
case SUNBLEAK_ISLAND:
// Requires sailing level 72
return Rs2Player.getSkillRequirement(Skill.SAILING, 72, false);
case DEEPFIN_POINT:
// Requires sailing level 67
return Rs2Player.getSkillRequirement(Skill.SAILING, 67, false);
case DEEPFIN_MINE_MID:
// Requires sailing level 67 + Bank to be made
return Rs2Player.getSkillRequirement(Skill.SAILING, 67, false);
case DEEPFIN_MINE_EAST:
// Requires sailing level 67 + Bank to be made
return Rs2Player.getSkillRequirement(Skill.SAILING, 67, false);
default:
return true;
}
Expand Down