mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
parent
ad7bcd19d4
commit
f1c190028e
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
This will increase a player's allowed plots by the provided value
|
This will increase a player's allowed plots by the provided value
|
||||||
/plot debugexec runasync addperm <player> <amount>
|
/plot debugexec runasync addplots.js <player> <amount>
|
||||||
*/
|
*/
|
||||||
var uuid = UUIDHandler.getUUID('%s0', null);
|
var uuid = UUIDHandler.getUUID('%s0', null);
|
||||||
if (uuid === null) {
|
if (uuid === null) {
|
||||||
|
@ -1,32 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Need to script something quick with PlotSquared?
|
|
||||||
/plot debugexec runasync automerge.js <removeroads>
|
|
||||||
|
|
||||||
This is an example script that will auto merge all plots
|
This is an example script that will auto merge all plots
|
||||||
|
/plot debugexec runasync automerge.js <removeroads>
|
||||||
The following utility classes are usable:
|
|
||||||
- PlotSquared
|
|
||||||
- TaskManager
|
|
||||||
- TitleManager
|
|
||||||
- ConsolePlayer
|
|
||||||
- SchematicHandler
|
|
||||||
- ChunkManager
|
|
||||||
- BlockManager
|
|
||||||
- SetupUtils
|
|
||||||
- EventUtil
|
|
||||||
- UUIDHandler
|
|
||||||
- DBFunc
|
|
||||||
- HybridUtils
|
|
||||||
- IMP ( BukkitMain or SpongeMain)
|
|
||||||
- MainCommand
|
|
||||||
- MainUtil
|
|
||||||
- Settings
|
|
||||||
- StringMan
|
|
||||||
- MathMan
|
|
||||||
- C ( use C_ )
|
|
||||||
- Permissions ( use Permissions_ )
|
|
||||||
|
|
||||||
For more information see: https://github.com/IntellectualSites/PlotSquared/wiki/Scripting
|
|
||||||
*/
|
*/
|
||||||
var plots = PS.sortPlotsByTemp(PS.getPlots());
|
var plots = PS.sortPlotsByTemp(PS.getPlots());
|
||||||
PS.class.static.log("Attempting to auto merge " + plots.size() + " plots");
|
PS.class.static.log("Attempting to auto merge " + plots.size() + " plots");
|
||||||
|
@ -1,31 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Need to script something quick with PlotSquared?
|
Fixes border around plots
|
||||||
/plot debugexec runasync fixborder.js <id>
|
/plot debugexec runasync fixborder.js <Plot ID>
|
||||||
|
|
||||||
|
|
||||||
The following utility classes are usable:
|
|
||||||
- PS
|
|
||||||
- TaskManager
|
|
||||||
- TitleManager
|
|
||||||
- ConsolePlayer
|
|
||||||
- SchematicHandler
|
|
||||||
- ChunkManager
|
|
||||||
- BlockManager
|
|
||||||
- SetupUtils
|
|
||||||
- EventUtil
|
|
||||||
- UUIDHandler
|
|
||||||
- DBFunc
|
|
||||||
- HybridUtils
|
|
||||||
- IMP ( BukkitMain or SpongeMain)
|
|
||||||
- MainCommand
|
|
||||||
- MainUtil
|
|
||||||
- Settings
|
|
||||||
- StringMan
|
|
||||||
- MathMan
|
|
||||||
- C ( use C_ )
|
|
||||||
- Permissions ( use Permissions_ )
|
|
||||||
|
|
||||||
For more information see: https://github.com/IntellectualSites/PlotSquared/wiki/Scripting
|
|
||||||
*/
|
*/
|
||||||
var plots = PS.sortPlotsByTemp(PS.getPlots());
|
var plots = PS.sortPlotsByTemp(PS.getPlots());
|
||||||
PS.class.static.log("Attempting to fix border for " + plots.size() + " plots");
|
PS.class.static.log("Attempting to fix border for " + plots.size() + " plots");
|
||||||
|
Loading…
Reference in New Issue
Block a user