Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Resolved Webwalking outofbounds exception when creating path

Joined
Nov 18, 2013
Messages
126
Hi,

I'm trying to create a path to a tile using webwalking. When I attempt to create a path, this is the error I get.

Code:
java.lang.ArrayIndexOutOfBoundsException: 1
    at nul.iIiIIIiiIiII.short(hob:199)
    at nul.iIiIIIiiIiII.void(hob:174)
    at nul.iIIiiIiiIIIi.void(veb:82)
    at nul.iIiIIIiiIiII.void(hob:81)
    at nul.iIIIIIiiiiIi.void(whb:216)
    at nul.iIiIIIiiiIIi.void(edb:153)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(sya:138)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(sya:98)
    at com.arckos.bots.spiderspawner.main.webWalkTo(main.java:292)
    at com.arckos.bots.spiderspawner.main.onLoop(main.java:100)
    at com.runemate.game.api.script.framework.LoopingBot.run(tbb:180)
    at com.runemate.game.api.script.framework.AbstractBot.start(sab:208)
    at nul.iIIiIIiIIIii.run(zlb:28)


Here's my code
Code:
private void webWalkTo(Coordinate destination) {

    final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(destination);

    if (path != null) {

        path.step();
    }

}

I'm new to RuneMate, coming from a different botting site and haven't written bots in almost 2 years now. Any help is appreciated.
 
Joined
Dec 31, 2015
Messages
602
Hi,

I'm trying to create a path to a tile using webwalking. When I attempt to create a path, this is the error I get.

Code:
java.lang.ArrayIndexOutOfBoundsException: 1
    at nul.iIiIIIiiIiII.short(hob:199)
    at nul.iIiIIIiiIiII.void(hob:174)
    at nul.iIIiiIiiIIIi.void(veb:82)
    at nul.iIiIIIiiIiII.void(hob:81)
    at nul.iIIIIIiiiiIi.void(whb:216)
    at nul.iIiIIIiiiIIi.void(edb:153)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(sya:138)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(sya:98)
    at com.arckos.bots.spiderspawner.main.webWalkTo(main.java:292)
    at com.arckos.bots.spiderspawner.main.onLoop(main.java:100)
    at com.runemate.game.api.script.framework.LoopingBot.run(tbb:180)
    at com.runemate.game.api.script.framework.AbstractBot.start(sab:208)
    at nul.iIIiIIiIIIii.run(zlb:28)


Here's my code
Code:
private void webWalkTo(Coordinate destination) {

    final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(destination);

    if (path != null) {

        path.step();
    }

}

I'm new to RuneMate, coming from a different botting site and haven't written bots in almost 2 years now. Any help is appreciated.
Pretty sure this is due to a current client issue.
@Party
@Cloud
 
Top