Skip to content
This repository has been archived by the owner on Oct 18, 2021. It is now read-only.

Setting all signs

NotMyFault edited this page Feb 16, 2020 · 9 revisions
/*
This script will fix all signs in the world.
*/
var plots = PS.sortPlotsByTemp(PS.getPlots());
for (var i = 0; i < plots.size(); i++) {
    var plot = plots.get(i);
    if (plot.isBasePlot()) {
        plot.setSign();
        PS.class.static.log('&cSetting sign for: ' + plot);
    }
    java.lang.Thread.sleep(10);
}
Clone this wiki locally