Zor Posted May 16, 2020 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
Naked Posted May 16, 2020 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; }