Fixed adventure bots getting stuck south west of GE

This commit is contained in:
Dan Ginovker 2022-10-22 04:00:06 +00:00 committed by Ryan
parent ac0ba2ece9
commit bb0ae3ad8d

View file

@ -593,6 +593,11 @@ class Adventurer(val style: CombatStyle): Script() {
// Walk into Draynor Bank
it.scriptAPI.walkTo(Location(3093, 3243, 0))
},
// West of GE, stuck in the corner south of the outlaw place
ZoneBorders(3140, 3468, 3140, 3468) to { it: Adventurer ->
// Walk to Barbarian village
it.scriptAPI.walkArray(arrayOf(Location.create(3135, 3516, 0), Location.create(3103, 3489, 0), Location.create(3082, 3423, 0)))
},
)
val dialogue: JSONObject