2020-04-10 18:09:01 +02:00
|
|
|
/*
|
|
|
|
* _____ _ _ _____ _
|
|
|
|
* | __ \| | | | / ____| | |
|
|
|
|
* | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| |
|
|
|
|
* | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` |
|
|
|
|
* | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| |
|
|
|
|
* |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_|
|
|
|
|
* | |
|
|
|
|
* |_|
|
|
|
|
* PlotSquared plot management system for Minecraft
|
|
|
|
* Copyright (C) 2020 IntellectualSites
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-08-15 14:59:29 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-04-10 18:09:01 +02:00
|
|
|
*/
|
2019-01-12 20:56:11 +01:00
|
|
|
/*
|
|
|
|
* Script to find the furthest plot from origin in a world:
|
|
|
|
* - /plot debugexec runasync furthest.js <plotworld>
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (PS.hasPlotArea("%s0")) {
|
|
|
|
var plots = PS.getAllPlotsRaw().get("%s0").values().toArray();
|
|
|
|
var max = 0;
|
|
|
|
var maxplot;
|
|
|
|
for (var i in plots) {
|
|
|
|
var plot = plots[i];
|
2020-07-18 11:05:16 +02:00
|
|
|
if (plot.getX() > max) {
|
|
|
|
max = plot.getX();
|
2019-01-12 20:56:11 +01:00
|
|
|
maxplot = plot;
|
|
|
|
}
|
2020-07-18 11:05:16 +02:00
|
|
|
if (plot.getY() > max) {
|
|
|
|
max = plot.getY();
|
2019-01-12 20:56:11 +01:00
|
|
|
maxplot = plot;
|
|
|
|
}
|
2020-07-18 11:05:16 +02:00
|
|
|
if (-plot.getX() > max) {
|
|
|
|
max = -plot.getX();
|
2019-01-12 20:56:11 +01:00
|
|
|
maxplot = plot;
|
|
|
|
}
|
2020-07-18 11:05:16 +02:00
|
|
|
if (-plot.getY() > max) {
|
|
|
|
max = -plot.getY();
|
2019-01-12 20:56:11 +01:00
|
|
|
maxplot = plot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PS.class.static.log(plot);
|
2019-04-24 00:48:22 +02:00
|
|
|
} else {
|
2019-01-12 20:56:11 +01:00
|
|
|
PlotPlayer.sendMessage("Usage: /plot debugexec runasync furthest.js <plotworld>");
|
|
|
|
}
|