So it is a simple question but, maybe due to my inexperience in Java, but I can't figure out how to get the price of an item.
The documentation says there is a getPrice function in the GrandExchange.Item class.
So I have this code:
int lobsterPrice = GrandExchange.Item.getPrice();
But I'm not...
So I have some code that looks like this:
Coordinate playerLocation = getLocal().getPosition();
System.out.println(playerLocation);
System.out.println(stepArray[i]);
RegionPath currentPath = build(playerLocation, stepArray[i]);
System.out.println(currentPath);
currentPath.step();
(stepArray is...