From bb0ae3ad8dd0c4f85ea33e5e112c6fa414218be5 Mon Sep 17 00:00:00 2001 From: Dan Ginovker Date: Sat, 22 Oct 2022 04:00:06 +0000 Subject: [PATCH] Fixed adventure bots getting stuck south west of GE --- .../rs09/game/ai/general/scriptrepository/Adventurer.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Server/src/main/kotlin/rs09/game/ai/general/scriptrepository/Adventurer.kt b/Server/src/main/kotlin/rs09/game/ai/general/scriptrepository/Adventurer.kt index 935caf877..d4b783b61 100644 --- a/Server/src/main/kotlin/rs09/game/ai/general/scriptrepository/Adventurer.kt +++ b/Server/src/main/kotlin/rs09/game/ai/general/scriptrepository/Adventurer.kt @@ -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