{
coord = arena.getSpawnLoc();
return new Location(coord[0], coord[1], coord[2]);
}
L2ChaoticZone chaotic = ChaoticManager.getInstance().getChaotic(player);
if(chaotic != null)
{
coord = chaotic.getSpawnLoc();
return new Location(coord[0], coord[1], coord[2]);
}
L2EventZone event = EventZoneManager.getInstance().getEventZone(player);
if(event != null)
{