summaryrefslogtreecommitdiff
path: root/example/src/main/java/com/nemez/cmdMgrExample/example.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'example/src/main/java/com/nemez/cmdMgrExample/example.cmd')
-rw-r--r--example/src/main/java/com/nemez/cmdMgrExample/example.cmd36
1 files changed, 0 insertions, 36 deletions
diff --git a/example/src/main/java/com/nemez/cmdMgrExample/example.cmd b/example/src/main/java/com/nemez/cmdMgrExample/example.cmd
deleted file mode 100644
index da36e44..0000000
--- a/example/src/main/java/com/nemez/cmdMgrExample/example.cmd
+++ /dev/null
@@ -1,36 +0,0 @@
-
-command home {
- alias h;
- alias bleh;
- set [string:name] {
- [int:x] [int:y] [int:z] {
- run home_set_coords name x y z;
- perm home.set.xyz;
- help Sets a new home at coordinates XYZ;
- }
- run home_set name;
- perm home.set;
- help Sets a new home;
- type none;
- }
- del [optional:-a] [string:name] {
- run home_del name -a;
- help Deletes a home\n&cCannot be undone!;
- perm home.del;
- }
- list {
- help Shows all homes;
- run home_list;
- perm home.list;
- }
- [string:name] {
- perm home.tp;
- help Teleports to a home;
- run home_tp name;
- }
- yolo swag {
- perm yo.mamma;
- help Reks you;
- run noskope;
- }
-}