Skip to content

Instantly share code, notes, and snippets.

@boy0001
Created May 17, 2018 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boy0001/9f38fc648d9a8101c9beb9d2148d669c to your computer and use it in GitHub Desktop.
Save boy0001/9f38fc648d9a8101c9beb9d2148d669c to your computer and use it in GitHub Desktop.
/*
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment