Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update NPC IDs for RuneLite 1.11.2 #1985

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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 @@ -226,7 +226,7 @@ public void setupSteps()
moveToSlayer3 = new ObjectStep(this, ObjectID.STAIRCASE_2119, new WorldPoint(3415, 3541, 1),
"Climb the stairs or the Spikey chains in the Slayer tower to ascend to the higher level.", combatGear,
food);
abyssalDemon = new NpcStep(this, NpcID.ABYSSAL_DEMON_415, new WorldPoint(3420, 3569, 2),
abyssalDemon = new NpcStep(this, NpcID.ABYSSAL_DEMON, new WorldPoint(3420, 3569, 2),
"Kill an Abyssal demon.", combatGear, food);

moveToCanifisBank = new DetailedQuestStep(this, new WorldPoint(3511, 3480, 0),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ public void setupSteps()
((NpcStep) killRabbit).addAlternateNpcs(NpcID.BUNNY_3903);
enterFremmyDungeon = new ObjectStep(this, ObjectID.CAVE_ENTRANCE_2123, new WorldPoint(2798, 3615, 0),
"Enter the Fremennik Slayer Dungeon.", mirrorShield.equipped());
killBasilisk = new NpcStep(this, NpcID.BASILISK_417, new WorldPoint(2743, 10010, 0),
killBasilisk = new NpcStep(this, NpcID.BASILISK, new WorldPoint(2743, 10010, 0),
"Kill basilisks in the middle of the dungeon.", true, mirrorShield.equipped(),
new SkillRequirement(Skill.SLAYER,
40, true));
Expand Down
Loading