- Joined
- Apr 21, 2015
- Messages
- 389
- Thread Author
- #1
I can't seem to import anything in the location package. It worked fine until yesterday. Any suggestions?
Below is a class where I'm using it. I just created a template to show that I can't seem to import it.
I also tried importing com.runemate.game.api.hybrid.location.*; which fixed my area issue but broke coordinate.
Below is a class where I'm using it. I just created a template to show that I can't seem to import it.
I also tried importing com.runemate.game.api.hybrid.location.*; which fixed my area issue but broke coordinate.
Code:
package galaxyScripts.branches;
import com.runemate.game.api.script.framework.tree.BranchTask;
import com.runemate.game.api.script.framework.tree.TreeTask;
/**
* Created by on 1/29/2017.
*/
public class checkBankBranch extends BranchTask {
public TreeTask successTask() {
return null;
}
public TreeTask failureTask() {
return null;
}
public boolean validate() {
final com.runemate.game.api.hybrid.location.Area bank = new Area.Rectangular(new Coordinate(2952, 3312, 0), new Coordinate(3055, 3415, 0));
return false;
}
}