Say if I were to use this in my script, I would have to declare this like so:
public class MyScript extends Script {
private int[][] path1 = new int[][] { { 3206, 3209 }, { 3215, 3211 }, { 3217, 3218 }, { 3225, 3218 },
{ 3235, 3220 }, { 3242, 3226 }, { 3252, 3226 }, { 3251, 3235 }, };
//
//
public void onStart() {
As a final int on top of my screen? Of course my own coordinates for the path, which I know how to get. And then I can later use it in my method which would be
//do the following
else {
//walk to bank
WalkAlongPath(path1, true);
Help would be greatly appreciated, I'm new to this. It's my first script hehe. I only need to be able to open a gate and walk.