Right so i got it to stop kicking me the only issue i have now is i can't attack the pools for some reason in the new location but if i move the mob data back to the old place where there was no maps then i'm able to attack again which is really weird; this is what they're spawned with
case 250058://Kraken
TaskQueue.queue(new Task(5) {
@Override
public void execute() {
int[][] DATA = { { 493, 2275, 10034 }, { 493, 2275, 10038 }, { 493, 2284, 10034 }, { 493, 2284, 10038 }, { 496, 2278, 10035 } };
for (int i = 0; i < DATA.length; i++) {
Mob mob = new Mob(player, DATA[0], false, false, false, new Location(DATA[1], DATA[2], player.getZ()));
mob.setCanAttack(false);
player.face(mob);
}
stop();
}
@Override
public void onStop() {
player.whirlpoolsHit = 0;
player.send(new SendMessage("Welcome to Kraken's cave."));
}
});
return true;