if(chaotic != null)
{
coord = chaotic.getSpawnLoc();
return new Location(coord[0], coord[1], coord[2]);
}
L2EventZone event = EventZoneManager.getInstance().getEventZone(player);
if(event != null)
{
coord = event.getSpawnLoc();
return new Location(coord[0], coord[1], coord[2]);
}
L2KamalokaZone kama = KamalokaZoneManager.getInstance().getKamaZone(player);
if(kama != null)
{