trainux Posted May 25, 2018 Share Posted May 25, 2018 (edited) Being in the Area: Area draynor_fish = new Area(3080, 3237, 3089, 3224); I indicate that go to the following address: ArrayList<Position> path = new ArrayList<Position>(); path.add(new Position(3087, 3232, 0)); path.add(new Position(3085, 3239, 0)); path.add(new Position(3085, 3247, 0)); path.add(new Position(3093, 3247, 0)); path.add(new Position(3092, 3243, 0)); In this way: getWalking().walkPath(getRutaFishToBank()); This throws me the following error: Quote [ERROR][Bot #1][05/25 05:42:16 PM]: Error executing event : org.osbot.rs07.event.WalkingEvent@51a6a39d java.lang.IllegalStateException: Could not identify minimap interface child! Please report to developers. at org.osbot.rs07.api.util.GraphicUtilities.iiIiiiiiIiiI(uf:432) at org.osbot.rs07.api.util.GraphicUtilities.getMinimapScreenCoordinate(uf:372) at org.osbot.rs07.api.map.Position.isOnMiniMap(kn:116) at org.osbot.rs07.event.WalkingEvent.iiIiiiiiIiiI(ui:34) at org.osbot.rs07.event.WalkingEvent.execute(ui:70) at org.osbot.rs07.event.EventExecutor$2.run(ch:252) at org.osbot.rs07.event.EventExecutor.execute(ch:213) at org.osbot.rs07.script.MethodProvider.execute(qn:356) at org.osbot.rs07.api.Walking.walkPath(dg:184) at Scripts.Bot.doTasks(Bot.java:640) at Scripts.Bot.onLoop(Bot.java:375) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(kl:223) at java.lang.Thread.run(Unknown Source) Why? Edited May 25, 2018 by trainux Quote Link to comment Share on other sites More sharing options...
Zappster Posted May 25, 2018 Share Posted May 25, 2018 (edited) Can you post the contents of this function? getRutaFishToBank() Note: http://sscce.org/ Edited May 25, 2018 by Zappster Quote Link to comment Share on other sites More sharing options...
trainux Posted May 25, 2018 Author Share Posted May 25, 2018 11 minutes ago, Zappster said: Can you post the contents of this function? getRutaFishToBank() Note: http://sscce.org/ public ArrayList<Position> getRutaFishToBank() { int caso = random(0,3); ArrayList<Position> path = new ArrayList<Position>(); switch (caso) { case 0: path.add(new Position(3087, 3232, 0)); path.add(new Position(3085, 3239, 0)); path.add(new Position(3085, 3247, 0)); path.add(new Position(3093, 3247, 0)); path.add(new Position(3092, 3243, 0)); break; case 1: path.add(new Position(3086, 3231, 0)); path.add(new Position(3083, 3239, 0)); path.add(new Position(3087, 3248, 0)); path.add(new Position(3092, 3246, 0)); path.add(new Position(3094, 3242, 0)); break; case 2: path.add(new Position(3086, 3232, 0)); path.add(new Position(3095, 3236, 0)); path.add(new Position(3100, 3239, 0)); path.add(new Position(3099, 3247, 0)); path.add(new Position(3093, 3247, 0)); path.add(new Position(3092, 3243, 0)); break; case 3: path.add(new Position(3085, 3232, 0)); path.add(new Position(3093, 3238, 0)); path.add(new Position(3093, 3242, 0)); break; default: break; } return path; } Quote Link to comment Share on other sites More sharing options...
trainux Posted May 26, 2018 Author Share Posted May 26, 2018 solution: Stop using re-sizable mode. How? Settings tab -> Fixed mode 1 Quote Link to comment Share on other sites More sharing options...