summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/worldborder/WorldBorder.cmd
blob: f8f981dca3720d2a861d25d4c7bce2ffdaad35c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
command worldborder {
    alias wb;
    perm utils.worldborder;
    get [string:world] {
    	run getwb world;
    	help Gets the current info about the given world's worder.;
    }
	set [string:world] [int:cx] [int:cz] [int:r] {
		run setwb world cx cz r;
		help Sets the world border with the given center (cx,cz) and a given radius (r).;
	}
	remove [string:world] {
	    run remwb world;
	    help Removes the World Border from the given world.;
	}
}