Zor Posted May 16, 2020 Share Posted May 16, 2020 (edited) I looked at the api and could not find a way to use the games necklace if anyone has any recommendations id appreciate it Edited May 16, 2020 by Zor Quote Link to comment Share on other sites More sharing options...
Naked Posted May 16, 2020 Share Posted May 16, 2020 WebWalkEvent can use teleports if attached to a PathPreferenceProfile WebWalkEvent walkEvent = new WebWalkEvent(STAFF_POS); walkEvent.setPathPreferenceProfile(getPPF()); execute(walkEvent); private PathPreferenceProfile getPPF(){ PathPreferenceProfile profile = new PathPreferenceProfile(); profile.checkInventoryForItems(true); profile.checkEquipmentForItems(true); profile.setAllowTeleports(true); return profile; } Quote Link to comment Share on other sites More sharing options...