August 16, 20232 yr Position of the Object/NPC: 1911, 5209, 0 | 1912, 5209, 0 Position of where you will start: 1893, 5191, 0 Position of where you will end: 1912, 5223, 0 Name of NPC/Object: Object : Gate of War Name of NPC/Object action: Action : Open Dialogue options (if applicable): Stronghold of Security Dialogue Options Quests required (if applicable): N/A Items required (if applicable): N/A F2P or P2P: F2P Additional (if applicable): THIS ONLY HAPPENS IN THIS AREA. I've tested it on all other spots inside of SOC, and this is the only area it does not continue the dialogue in.
August 19, 20232 yr 4 hours ago, Patrick said: What is exactly the issue? Additional (if applicable): THIS ONLY HAPPENS IN THIS AREA. I've tested it on all other spots inside of SOC, and this is the only area it does not continue the dialogue in.
August 25, 20232 yr Author On 8/19/2023 at 9:32 AM, Patrick said: What is exactly the issue? Some of the doors are not supported for some reason. Web walking works for some, doesn't work for others. Spoiler import org.osbot.rs07.api.map.Area; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Zackaery", info = "", logo = "", name = "SOS Walking", version = 1) public class SOSWalking extends Script { Area startArea = new Area(1890, 5194, 1897, 5188); Area endArea = new Area(1901, 5229, 1916, 5211); @Override public int onLoop() throws InterruptedException { if (!startArea.contains(myPlayer()) && !endArea.contains(myPlayer())) { getWalking().webWalk(startArea.getRandomPosition()); } else if (startArea.contains(myPlayer())) { getWalking().webWalk(endArea.getRandomPosition()); } return random(300, 600); } }
Create an account or sign in to comment