Much more logic in bots

This commit is contained in:
dginovker 2019-06-16 13:22:54 -04:00
parent 68da747944
commit 8c1dcc9f26
10 changed files with 363 additions and 190 deletions

View file

@ -28,6 +28,7 @@ public class PestControlHelper {
}
public static List<Integer> GATE_ENTRIES = Arrays.asList(14233, 14235);
public static List<Integer> PORTAL_ENTRIES = Arrays.asList(PCPortalNPC.portalIds);
public static final Location PestControlIslandLocation = Location.create(2659, 2649, 0);
@ -49,6 +50,10 @@ public class PestControlHelper {
return true;
return false;
}
public static PestControlSession getMyPestControlSession(Player p)
{
return p.getExtension(PestControlSession.class);
}
}